File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed
packages/@aws-cdk/aws-s3-deployment/lib Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,6 @@ import { kebab as toKebabCase } from 'case';
12
12
import { Construct } from 'constructs' ;
13
13
import { ISource , SourceConfig } from './source' ;
14
14
15
- // keep this import separate from other imports to reduce chance for merge conflicts with v2-main
16
- // eslint-disable-next-line no-duplicate-imports, import/order
17
- import { Token } from '@aws-cdk/core' ;
18
-
19
15
// keep this import separate from other imports to reduce chance for merge conflicts with v2-main
20
16
// eslint-disable-next-line no-duplicate-imports, import/order
21
17
import { Construct as CoreConstruct } from '@aws-cdk/core' ;
@@ -426,7 +422,7 @@ export class BucketDeployment extends CoreConstruct {
426
422
*/
427
423
public get deployedBucket ( ) : s3 . IBucket {
428
424
this . requestDestinationArn = true ;
429
- this . _deployedBucket = this . _deployedBucket ?? s3 . Bucket . fromBucketArn ( this , 'DestinationBucket' , Token . asString ( this . cr . getAtt ( 'DestinationBucketArn' ) ) ) ;
425
+ this . _deployedBucket = this . _deployedBucket ?? s3 . Bucket . fromBucketArn ( this , 'DestinationBucket' , cdk . Token . asString ( this . cr . getAtt ( 'DestinationBucketArn' ) ) ) ;
430
426
return this . _deployedBucket ;
431
427
}
432
428
You can’t perform that action at this time.
0 commit comments