CrossRegionSupport

class aws_cdk.aws_codepipeline.CrossRegionSupport(*, replication_bucket, stack)

Bases: object

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.

Parameters:
  • replication_bucket (IBucket) – The replication Bucket used by CodePipeline to operate in this region. Belongs to stack.

  • stack (Stack) – The Stack that has been created to house the replication Bucket required for this region.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk as cdk
from aws_cdk import aws_codepipeline as codepipeline
from aws_cdk import aws_s3 as s3

# bucket: s3.Bucket
# stack: cdk.Stack

cross_region_support = codepipeline.CrossRegionSupport(
    replication_bucket=bucket,
    stack=stack
)

Attributes

replication_bucket

The replication Bucket used by CodePipeline to operate in this region.

Belongs to stack.

stack

The Stack that has been created to house the replication Bucket required for this region.