interface InputArtifacts
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Events.CodePipelineActionExecutionStateChange.InputArtifacts |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/events#CodePipelineActionExecutionStateChange_InputArtifacts |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.events.CodePipelineActionExecutionStateChange.InputArtifacts |
Python | aws_cdk.mixins_preview.aws_codepipeline.events.CodePipelineActionExecutionStateChange.InputArtifacts |
TypeScript | @aws-cdk/mixins-preview ยป aws_codepipeline ยป events ยป CodePipelineActionExecutionStateChange ยป InputArtifacts |
Type definition for InputArtifacts.
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 inputArtifacts: codepipeline_events.CodePipelineActionExecutionStateChange.InputArtifacts = {
name: ['name'],
s3Location: {
bucket: ['bucket'],
key: ['key'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string[] | name property. |
| s3 | S3 | s3location property. |
name?
Type:
string[]
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
s3Location?
Type:
S3
(optional, default: Do not filter on this field)
s3location property.
Specify an array of string values to match this event if the actual value of s3location 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