Interface CfnPipeline.ArtifactStoreProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.ArtifactStoreProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.ArtifactStoreProperty extends software.amazon.jsii.JsiiSerializable
The S3 bucket where artifacts for the pipeline are stored.

You must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores .

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.*;
 ArtifactStoreProperty artifactStoreProperty = ArtifactStoreProperty.builder()
         .location("location")
         .type("type")
         // the properties below are optional
         .encryptionKey(EncryptionKeyProperty.builder()
                 .id("id")
                 .type("type")
                 .build())
         .build();
 

See Also: