Skip to content

Commit

Permalink
fix(codepipeline): mark crossRegionReplicationBuckets and crossRegion…
Browse files Browse the repository at this point in the history
…Support as experimental. (#3226)

BREAKING CHANGE: codepipeline.Pipeline.crossRegionReplicationBuckets is now experimental
* codepipeline.Pipeline.crossRegionSupport is now experimental
* codepipeline.CrossRegionSupport is now experimental
  • Loading branch information
skinny85 authored Jul 8, 2019
1 parent feac997 commit f8256e7
Showing 1 changed file with 5 additions and 0 deletions.
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

0 comments on commit f8256e7

Please sign in to comment.