Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(codepipeline): mark crossRegionReplicationBuckets and crossRegionSupport as experimental #3226

Merged
merged 1 commit into from
Jul 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export interface PipelineProps {
* the construct will automatically create a Stack containing an S3 Bucket in that region.
*
* @default - None.
* @experimental
*/
readonly crossRegionReplicationBuckets?: { [region: string]: s3.IBucket };

Expand Down Expand Up @@ -292,6 +293,8 @@ export class Pipeline extends PipelineBase {
/**
* Returns all of the {@link CrossRegionSupportStack}s that were generated automatically
* when dealing with Actions that reside in a different region than the Pipeline itself.
*
* @experimental
*/
public get crossRegionSupport(): { [region: string]: CrossRegionSupport } {
const ret: { [region: string]: CrossRegionSupport } = {};
Expand Down Expand Up @@ -617,6 +620,8 @@ export class Pipeline extends PipelineBase {
* 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.
*
* @experimental
*/
export interface CrossRegionSupport {
/**
Expand Down