public FargateExecutionRole()

in cdk/src/Todo/Modules/FargateExecutionRole.cs [13:28]


        public FargateExecutionRole(Construct scope, string id): base(scope, id)
        {
           this.scope = scope;
           this.id = id;

            this.Role =  GetRole(
                this, id+"-role",
                new string[]{}, 
                new string[]{
                    Constants.CODE_TASK_DEFINITION_EXECUTION_SERVICE
                }, 
                Constants.CODE_TASK_DEFINITION_EXECUTION_ROLE_POLICY_NAME, 
                Utilities.ServiceBuilder.GetTaskDefinitionExecutionRoleActions(),
                "*"
            );
        }