public static interface CfnPipeline.ArtifactStoreMapProperty
There must be an artifact store for the pipeline Region and for each cross-region action in the pipeline.
You must include either
artifactStore
orartifactStores
in 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 software.amazon.awscdk.services.codepipeline.*; ArtifactStoreMapProperty artifactStoreMapProperty = ArtifactStoreMapProperty.builder() .artifactStore(ArtifactStoreProperty.builder() .location("location") .type("type") // the properties below are optional .encryptionKey(EncryptionKeyProperty.builder() .id("id") .type("type") .build()) .build()) .region("region") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPipeline.ArtifactStoreMapProperty.Builder
A builder for
CfnPipeline.ArtifactStoreMapProperty |
static class |
CfnPipeline.ArtifactStoreMapProperty.Jsii$Proxy
An implementation for
CfnPipeline.ArtifactStoreMapProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPipeline.ArtifactStoreMapProperty.Builder |
builder() |
java.lang.Object |
getArtifactStore()
Represents information about the S3 bucket where artifacts are stored for the pipeline.
|
java.lang.String |
getRegion()
The action declaration's AWS Region, such as us-east-1.
|
java.lang.Object getArtifactStore()
You must include either
artifactStore
orartifactStores
in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must useartifactStores
.
java.lang.String getRegion()
static CfnPipeline.ArtifactStoreMapProperty.Builder builder()