Class: Aws::CodePipeline::Types::PipelineMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::PipelineMetadata
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
Information about a pipeline.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created ⇒ Time
The date and time the pipeline was created, in timestamp format.
-
#pipeline_arn ⇒ String
The Amazon Resource Name (ARN) of the pipeline.
-
#polling_disabled_at ⇒ Time
The date and time that polling for source changes (periodic checks) was stopped for the pipeline, in timestamp format.
-
#updated ⇒ Time
The date and time the pipeline was last updated, in timestamp format.
Instance Attribute Details
#created ⇒ Time
The date and time the pipeline was created, in timestamp format.
3587 3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3587 class PipelineMetadata < Struct.new( :pipeline_arn, :created, :updated, :polling_disabled_at) SENSITIVE = [] include Aws::Structure end |
#pipeline_arn ⇒ String
The Amazon Resource Name (ARN) of the pipeline.
3587 3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3587 class PipelineMetadata < Struct.new( :pipeline_arn, :created, :updated, :polling_disabled_at) SENSITIVE = [] include Aws::Structure end |
#polling_disabled_at ⇒ Time
The date and time that polling for source changes (periodic checks) was stopped for the pipeline, in timestamp format. You can migrate (update) a polling pipeline to use event-based change detection. For example, for a pipeline with a CodeCommit source, we recommend you migrate (update) your pipeline to use CloudWatch Events. To learn more, see [Migrate polling pipelines to use event-based change detection] in the CodePipeline User Guide.
[1]: docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html
3587 3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3587 class PipelineMetadata < Struct.new( :pipeline_arn, :created, :updated, :polling_disabled_at) SENSITIVE = [] include Aws::Structure end |
#updated ⇒ Time
The date and time the pipeline was last updated, in timestamp format.
3587 3588 3589 3590 3591 3592 3593 3594 |
# File 'lib/aws-sdk-codepipeline/types.rb', line 3587 class PipelineMetadata < Struct.new( :pipeline_arn, :created, :updated, :polling_disabled_at) SENSITIVE = [] include Aws::Structure end |