Show / Hide Table of Contents

Interface ICrossRegionSupport

An interface representing resources generated in order to support the cross-region capabilities of CodePipeline.

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public interface ICrossRegionSupport
Syntax (vb)
Public Interface ICrossRegionSupport
Remarks

You get instances of this interface from the {@link Pipeline#crossRegionSupport} property.

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline;
using Amazon.CDK.AWS.S3;
using Amazon.CDK;

Bucket bucket;
Stack stack;
var crossRegionSupport = new CrossRegionSupport {
    ReplicationBucket = bucket,
    Stack = stack
};

Synopsis

Properties

ReplicationBucket

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

Stack

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

Properties

ReplicationBucket

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

IBucket ReplicationBucket { get; }
Property Value

IBucket

Remarks

Belongs to {@link stack}.

Stack

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

Stack Stack { get; }
Property Value

Stack

Back to top Generated by DocFX