interface ArtifactStoreMapProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnPipelinePropsMixin.ArtifactStoreMapProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnPipelinePropsMixin_ArtifactStoreMapProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnPipelinePropsMixin.ArtifactStoreMapProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnPipelinePropsMixin.ArtifactStoreMapProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » CfnPipelinePropsMixin » ArtifactStoreMapProperty |
A mapping of artifactStore objects and their corresponding AWS Regions.
There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline.
You must include either
artifactStoreorartifactStoresin your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must useartifactStores.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codepipeline_mixins } from '@aws-cdk/mixins-preview/aws-codepipeline';
const artifactStoreMapProperty: codepipeline_mixins.CfnPipelinePropsMixin.ArtifactStoreMapProperty = {
artifactStore: {
encryptionKey: {
id: 'id',
type: 'type',
},
location: 'location',
type: 'type',
},
region: 'region',
};
Properties
| Name | Type | Description |
|---|---|---|
| artifact | IResolvable | Artifact | Represents information about the S3 bucket where artifacts are stored for the pipeline. |
| region? | string | The action declaration's AWS Region, such as us-east-1. |
artifactStore?
Type:
IResolvable | Artifact
(optional)
Represents information about the S3 bucket where artifacts are stored for the pipeline.
You must include either
artifactStoreorartifactStoresin your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must useartifactStores.
region?
Type:
string
(optional)
The action declaration's AWS Region, such as us-east-1.

.NET
Go
Java
Python
TypeScript