Class: Aws::CodePipeline::Types::SourceRevisionOverride

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb

Overview

A list that allows you to specify, or override, the source revision for a pipeline execution that's being started. A source revision is the version with all the changes to your application code, or source artifact, for the pipeline execution.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#action_nameString

The name of the action where the override will be applied.

Returns:

  • (String)


4118
4119
4120
4121
4122
4123
4124
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4118

class SourceRevisionOverride < Struct.new(
  :action_name,
  :revision_type,
  :revision_value)
  SENSITIVE = []
  include Aws::Structure
end

#revision_typeString

The type of source revision, based on the source provider. For example, the revision type for the CodeCommit action provider is the commit ID.

Returns:

  • (String)


4118
4119
4120
4121
4122
4123
4124
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4118

class SourceRevisionOverride < Struct.new(
  :action_name,
  :revision_type,
  :revision_value)
  SENSITIVE = []
  include Aws::Structure
end

#revision_valueString

The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.

Returns:

  • (String)


4118
4119
4120
4121
4122
4123
4124
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4118

class SourceRevisionOverride < Struct.new(
  :action_name,
  :revision_type,
  :revision_value)
  SENSITIVE = []
  include Aws::Structure
end