Skip to content

Commit f8256e7

Browse files
authored
fix(codepipeline): mark crossRegionReplicationBuckets and crossRegionSupport as experimental. (#3226)
BREAKING CHANGE: codepipeline.Pipeline.crossRegionReplicationBuckets is now experimental * codepipeline.Pipeline.crossRegionSupport is now experimental * codepipeline.CrossRegionSupport is now experimental
1 parent feac997 commit f8256e7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/@aws-cdk/aws-codepipeline/lib/pipeline.ts

+5
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ export interface PipelineProps {
8888
* the construct will automatically create a Stack containing an S3 Bucket in that region.
8989
*
9090
* @default - None.
91+
* @experimental
9192
*/
9293
readonly crossRegionReplicationBuckets?: { [region: string]: s3.IBucket };
9394

@@ -292,6 +293,8 @@ export class Pipeline extends PipelineBase {
292293
/**
293294
* Returns all of the {@link CrossRegionSupportStack}s that were generated automatically
294295
* when dealing with Actions that reside in a different region than the Pipeline itself.
296+
*
297+
* @experimental
295298
*/
296299
public get crossRegionSupport(): { [region: string]: CrossRegionSupport } {
297300
const ret: { [region: string]: CrossRegionSupport } = {};
@@ -617,6 +620,8 @@ export class Pipeline extends PipelineBase {
617620
* An interface representing resources generated in order to support
618621
* the cross-region capabilities of CodePipeline.
619622
* You get instances of this interface from the {@link Pipeline#crossRegionSupport} property.
623+
*
624+
* @experimental
620625
*/
621626
export interface CrossRegionSupport {
622627
/**

0 commit comments

Comments
 (0)