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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codepipeline/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)


4287
4288
4289
4290
4291
4292
4293
4294
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4287

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)


4287
4288
4289
4290
4291
4292
4293
4294
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4287

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:



4287
4288
4289
4290
4291
4292
4293
4294
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4287

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:



4287
4288
4289
4290
4291
4292
4293
4294
# File 'gems/aws-sdk-codepipeline/lib/aws-sdk-codepipeline/types.rb', line 4287

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