Skip to content

Put Action Revision

codepipeline_put_action_revision R Documentation

Provides information to CodePipeline about new revisions to a source

Description

Provides information to CodePipeline about new revisions to a source.

Usage

codepipeline_put_action_revision(pipelineName, stageName, actionName,
  actionRevision)

Arguments

pipelineName

[required] The name of the pipeline that starts processing the revision to the source.

stageName

[required] The name of the stage that contains the action that acts on the revision.

actionName

[required] The name of the action that processes the revision.

actionRevision

[required] Represents information about the version (or revision) of an action.

Value

A list with the following syntax:

list(
  newRevision = TRUE|FALSE,
  pipelineExecutionId = "string"
)

Request syntax

svc$put_action_revision(
  pipelineName = "string",
  stageName = "string",
  actionName = "string",
  actionRevision = list(
    revisionId = "string",
    revisionChangeId = "string",
    created = as.POSIXct(
      "2015-01-01"
    )
  )
)