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 {@link Pipeline#crossRegionSupport} property.
- Parameters
- 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.aws_codepipeline as codepipeline import aws_cdk.aws_s3 as s3 import aws_cdk.core as cdk # bucket: s3.Bucket # stack: cdk.Stack cross_region_support = codepipeline.CrossRegionSupport( replication_bucket=bucket, stack=stack )
Attributes