Class: Aws::CodeCatalyst::Types::StartWorkflowRunRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::StartWorkflowRunRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecatalyst/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A user-specified idempotency token.
-
#project_name ⇒ String
The name of the project in the space.
-
#space_name ⇒ String
The name of the space.
-
#workflow_id ⇒ String
The system-generated unique ID of the workflow.
Instance Attribute Details
#client_token ⇒ String
A user-specified idempotency token. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, the subsequent retries return the result from the original successful request and have no additional effect.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
2536 2537 2538 2539 2540 2541 2542 2543 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 2536 class StartWorkflowRunRequest < Struct.new( :space_name, :project_name, :workflow_id, :client_token) SENSITIVE = [] include Aws::Structure end |
#project_name ⇒ String
The name of the project in the space.
2536 2537 2538 2539 2540 2541 2542 2543 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 2536 class StartWorkflowRunRequest < Struct.new( :space_name, :project_name, :workflow_id, :client_token) SENSITIVE = [] include Aws::Structure end |
#space_name ⇒ String
The name of the space.
2536 2537 2538 2539 2540 2541 2542 2543 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 2536 class StartWorkflowRunRequest < Struct.new( :space_name, :project_name, :workflow_id, :client_token) SENSITIVE = [] include Aws::Structure end |
#workflow_id ⇒ String
The system-generated unique ID of the workflow. To retrieve a list of workflow IDs, use ListWorkflows.
2536 2537 2538 2539 2540 2541 2542 2543 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 2536 class StartWorkflowRunRequest < Struct.new( :space_name, :project_name, :workflow_id, :client_token) SENSITIVE = [] include Aws::Structure end |