You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodePipeline::Types::PutActionRevisionInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PutActionRevisionInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  pipeline_name: "PipelineName", # required
  stage_name: "StageName", # required
  action_name: "ActionName", # required
  action_revision: { # required
    revision_id: "Revision", # required
    revision_change_id: "RevisionChangeIdentifier", # required
    created: Time.now, # required
  },
}

Represents the input of a PutActionRevision action.

Instance Attribute Summary collapse

Instance Attribute Details

#action_nameString

The name of the action that processes the revision.

Returns:

  • (String)

    The name of the action that processes the revision.

#action_revisionTypes::ActionRevision

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

Returns:

#pipeline_nameString

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

Returns:

  • (String)

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

#stage_nameString

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

Returns:

  • (String)

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