Interface DefaultRoleWithPolicyArgs

Role and policy attachments with default setup unless explicitly skipped or an existing role ARN provided.

interface DefaultRoleWithPolicyArgs {
    args?: RoleWithPolicyArgs;
    roleArn?: any;
    skip?: boolean;
}

Properties

Properties

Args to use when creating the role and policies. Can't be specified if roleArn is used.

roleArn?: any

ARN of existing role to use instead of creating a new role. Cannot be used in combination with args or opts.

skip?: boolean

Skips creation of the role if set to true.

Generated using TypeDoc