interface CrossRegionSupport
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodePipeline.CrossRegionSupport |
Java | software.amazon.awscdk.services.codepipeline.CrossRegionSupport |
Python | aws_cdk.aws_codepipeline.CrossRegionSupport |
TypeScript (source) | @aws-cdk/aws-codepipeline » CrossRegionSupport |
An interface representing resources generated in order to support the cross-region capabilities of CodePipeline.
You get instances of this interface from the {@link Pipeline#crossRegionSupport} property.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as codepipeline from '@aws-cdk/aws-codepipeline';
import * as s3 from '@aws-cdk/aws-s3';
import * as cdk from '@aws-cdk/core';
declare const bucket: s3.Bucket;
declare const stack: cdk.Stack;
const crossRegionSupport: codepipeline.CrossRegionSupport = {
replicationBucket: bucket,
stack: stack,
};
Properties
Name | Type | Description |
---|---|---|
replication | IBucket | The replication Bucket used by CodePipeline to operate in this region. |
stack | Stack | The Stack that has been created to house the replication Bucket required for this region. |
replicationBucket
Type:
IBucket
The replication Bucket used by CodePipeline to operate in this region.
Belongs to {@link stack}.
stack
Type:
Stack
The Stack that has been created to house the replication Bucket required for this region.