S3SourceVariables
- class aws_cdk.aws_codepipeline_actions.S3SourceVariables(*, e_tag, version_id)
Bases:
object
The CodePipeline variables emitted by the S3 source Action.
- Parameters:
e_tag (
str
) – The e-tag of the S3 version of the object that triggered the build.version_id (
str
) – The identifier of the S3 version of the object that triggered the build.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_codepipeline_actions as codepipeline_actions s3_source_variables = codepipeline_actions.S3SourceVariables( e_tag="eTag", version_id="versionId" )
Attributes
- e_tag
The e-tag of the S3 version of the object that triggered the build.
- version_id
The identifier of the S3 version of the object that triggered the build.