Class: Aws::CodePipeline::Types::StartPipelineExecutionInput

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

Overview

Represents the input of a ‘StartPipelineExecution` action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

The system-generated unique ID used to identify a unique execution request.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


5169
5170
5171
5172
5173
5174
5175
5176
# File 'lib/aws-sdk-codepipeline/types.rb', line 5169

class StartPipelineExecutionInput < Struct.new(
  :name,
  :variables,
  :client_request_token,
  :source_revisions)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the pipeline to start.

Returns:

  • (String)


5169
5170
5171
5172
5173
5174
5175
5176
# File 'lib/aws-sdk-codepipeline/types.rb', line 5169

class StartPipelineExecutionInput < Struct.new(
  :name,
  :variables,
  :client_request_token,
  :source_revisions)
  SENSITIVE = []
  include Aws::Structure
end

#source_revisionsArray<Types::SourceRevisionOverride>

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.

Returns:



5169
5170
5171
5172
5173
5174
5175
5176
# File 'lib/aws-sdk-codepipeline/types.rb', line 5169

class StartPipelineExecutionInput < Struct.new(
  :name,
  :variables,
  :client_request_token,
  :source_revisions)
  SENSITIVE = []
  include Aws::Structure
end

#variablesArray<Types::PipelineVariable>

A list that overrides pipeline variables for a pipeline execution that’s being started. Variable names must match ‘[A-Za-z0-9@-_]+`, and the values can be anything except an empty string.

Returns:



5169
5170
5171
5172
5173
5174
5175
5176
# File 'lib/aws-sdk-codepipeline/types.rb', line 5169

class StartPipelineExecutionInput < Struct.new(
  :name,
  :variables,
  :client_request_token,
  :source_revisions)
  SENSITIVE = []
  include Aws::Structure
end