interface S3SourceVariables
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.S3SourceVariables |
Java | software.amazon.awscdk.services.codepipeline.actions.S3SourceVariables |
Python | aws_cdk.aws_codepipeline_actions.S3SourceVariables |
TypeScript (source) | @aws-cdk/aws-codepipeline-actions » S3SourceVariables |
The CodePipeline variables emitted by the S3 source Action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as codepipeline_actions from '@aws-cdk/aws-codepipeline-actions';
const s3SourceVariables: codepipeline_actions.S3SourceVariables = {
eTag: 'eTag',
versionId: 'versionId',
};
Properties
Name | Type | Description |
---|---|---|
e | string | The e-tag of the S3 version of the object that triggered the build. |
version | string | The identifier of the S3 version of the object that triggered the build. |
eTag
Type:
string
The e-tag of the S3 version of the object that triggered the build.
versionId
Type:
string
The identifier of the S3 version of the object that triggered the build.