Interface CrossRegionSupport
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CrossRegionSupport.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:37.931Z")
@Stability(Stable)
public interface CrossRegionSupport
extends software.amazon.jsii.JsiiSerializable
An interface representing resources generated in order to support the cross-region capabilities of CodePipeline.
You get instances of this interface from the
property.
invalid @link
Pipeline#crossRegionSupport
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.*; import software.amazon.awscdk.services.s3.*; import software.amazon.awscdk.core.*; Bucket bucket; Stack stack; CrossRegionSupport crossRegionSupport = CrossRegionSupport.builder() .replicationBucket(bucket) .stack(stack) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCrossRegionSupport
static final class
An implementation forCrossRegionSupport
-
Method Summary
Modifier and TypeMethodDescriptionstatic CrossRegionSupport.Builder
builder()
The replication Bucket used by CodePipeline to operate in this region.getStack()
The Stack that has been created to house the replication Bucket required for this region.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReplicationBucket
The replication Bucket used by CodePipeline to operate in this region.Belongs to
invalid @link
stack
-
getStack
The Stack that has been created to house the replication Bucket required for this region. -
builder
- Returns:
- a
CrossRegionSupport.Builder
ofCrossRegionSupport
-