interface CrossRegionSupport
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CodePipeline.CrossRegionSupport |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipeline#CrossRegionSupport |
![]() | software.amazon.awscdk.services.codepipeline.CrossRegionSupport |
![]() | aws_cdk.aws_codepipeline.CrossRegionSupport |
![]() | aws-cdk-lib » 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 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 cdk from 'aws-cdk-lib';
import { aws_codepipeline as codepipeline } from 'aws-cdk-lib';
import { aws_s3 as s3 } from 'aws-cdk-lib';
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 stack
.
stack
Type:
Stack
The Stack that has been created to house the replication Bucket required for this region.