interface S3Location
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelineActionExecutionStateChange.S3Location |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelineActionExecutionStateChange_S3Location |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelineActionExecutionStateChange.S3Location |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelineActionExecutionStateChange.S3Location |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelineActionExecutionStateChange ยป S3Location |
Type definition for S3Location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codepipeline_events } from '@aws-cdk/mixins-preview/aws-codepipeline';
const s3Location: codepipeline_events.CodePipelineActionExecutionStateChange.S3Location = {
bucket: ['bucket'],
key: ['key'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string[] | bucket property. |
| key? | string[] | key property. |
bucket?
Type:
string[]
(optional, default: Do not filter on this field)
bucket property.
Specify an array of string values to match this event if the actual value of bucket is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
key?
Type:
string[]
(optional, default: Do not filter on this field)
key property.
Specify an array of string values to match this event if the actual value of key is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript