Class: Aws::CodePipeline::Types::ActionRevision
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::ActionRevision
- Defined in:
- gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb
Overview
Note:
When making an API call, you may pass ActionRevision data as a hash:
{
revision_id: "Revision", # required
revision_change_id: "RevisionChangeIdentifier", # required
created: Time.now, # required
}
Represents information about the version (or revision) of an action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created ⇒ Time
The date and time when the most recent version of the action was created, in timestamp format.
-
#revision_change_id ⇒ String
The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
-
#revision_id ⇒ String
The system-generated unique ID that identifies the revision number of the action.
Instance Attribute Details
#created ⇒ Time
The date and time when the most recent version of the action was created, in timestamp format.
644 645 646 647 648 649 650 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 644 class ActionRevision < Struct.new( :revision_id, :revision_change_id, :created) SENSITIVE = [] include Aws::Structure end |
#revision_change_id ⇒ String
The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).
644 645 646 647 648 649 650 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 644 class ActionRevision < Struct.new( :revision_id, :revision_change_id, :created) SENSITIVE = [] include Aws::Structure end |
#revision_id ⇒ String
The system-generated unique ID that identifies the revision number of the action.
644 645 646 647 648 649 650 |
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 644 class ActionRevision < Struct.new( :revision_id, :revision_change_id, :created) SENSITIVE = [] include Aws::Structure end |