From 9b8a41adc7da25970e67af21e0706a37bfd28bba Mon Sep 17 00:00:00 2001 From: Adam Ruka Date: Mon, 8 Jul 2019 08:44:21 -0700 Subject: [PATCH] fix(codepipeline): mark crossRegionReplicationBuckets and crossRegionSupport as experimental. BREAKING CHANGE: codepipeline.Pipeline.crossRegionReplicationBuckets is now experimental * codepipeline.Pipeline.crossRegionSupport is now experimental * codepipeline.CrossRegionSupport is now experimental --- packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts b/packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts index cbc3e524f27de..c1169e722e91d 100644 --- a/packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts +++ b/packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts @@ -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 }; @@ -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 } = {}; @@ -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 { /**