aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
2 lines (1 loc) • 437 B
JavaScript
;Object.defineProperty(exports,"__esModule",{value:!0}),exports.ExampleConstruct=void 0;const constructs_1=require("constructs"),iam=require("../lib");class ExampleConstruct extends constructs_1.Construct{constructor(scope,id){super(scope,id);const role=new iam.Role(this,"MyRole",{assumedBy:new iam.AccountPrincipal("123456789012"),externalIds:["SUPPLY-ME"]});Array.isArray(role)}}exports.ExampleConstruct=ExampleConstruct;