Skip to content

Commit

Permalink
Updated CDK example spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug-AWS committed Jun 19, 2019
1 parent 8588200 commit 7dde130
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions typescript/example_code/cdk/hello-cdk-stack2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ export class HelloCdkStack extends cdk.Stack {
constructor(scope: cdk.App, id: string, props?: cdk.StackProps) {
super(scope, id, props);

// Don't change the formatting of this section
// snippet-start:[cdk.typescript.hello-cdk-stack.version2_bucket]
new s3.Bucket(this, 'MyFirstBucket', {
versioned: true,
encryption: s3.BucketEncryption.KmsManaged
});
new s3.Bucket(this, 'MyFirstBucket', {
versioned: true,
encryption: s3.BucketEncryption.KmsManaged
});
// snippet-end:[cdk.typescript.hello-cdk-stack.version2_bucket]
}
}
Expand Down

0 comments on commit 7dde130

Please sign in to comment.