Class: Aws::CodePipeline::Types::LatestInPipelineExecutionFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::LatestInPipelineExecutionFilter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The field that specifies to filter on the latest execution in the pipeline.
<note markdown=“1”> Filtering on the latest execution is available for executions run on or after February 08, 2024.
</note>
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pipeline_execution_id ⇒ String
The execution ID for the latest execution in the pipeline.
-
#start_time_range ⇒ String
The start time to filter on for the latest execution in the pipeline.
Instance Attribute Details
#pipeline_execution_id ⇒ String
The execution ID for the latest execution in the pipeline.
2839 2840 2841 2842 2843 2844 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2839 class LatestInPipelineExecutionFilter < Struct.new( :pipeline_execution_id, :start_time_range) SENSITIVE = [] include Aws::Structure end |
#start_time_range ⇒ String
The start time to filter on for the latest execution in the pipeline. Valid options:
-
All
-
Latest
2839 2840 2841 2842 2843 2844 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 2839 class LatestInPipelineExecutionFilter < Struct.new( :pipeline_execution_id, :start_time_range) SENSITIVE = [] include Aws::Structure end |