class LazyRole (construct)
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IAM.LazyRole |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiam#LazyRole |
Java | software.amazon.awscdk.services.iam.LazyRole |
Python | aws_cdk.aws_iam.LazyRole |
TypeScript (source) | aws-cdk-lib » aws_iam » LazyRole |
Implements
IConstruct
, IDependable
, IResource
, IRole
, IGrantable
, IPrincipal
, IIdentity
An IAM role that only gets attached to the construct tree once it gets used, not before.
This construct can be used to simplify logic in other constructs which need to create a role but only if certain configurations occur (such as when AutoScaling is configured). The role can be configured in one place, but if it never gets used it doesn't get instantiated and will not be synthesized or deployed.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
import { aws_iam as iam } from 'aws-cdk-lib';
declare const managedPolicy: iam.ManagedPolicy;
declare const policyDocument: iam.PolicyDocument;
declare const principal: iam.IPrincipal;
const lazyRole = new iam.LazyRole(this, 'MyLazyRole', {
assumedBy: principal,
// the properties below are optional
description: 'description',
externalIds: ['externalIds'],
inlinePolicies: {
inlinePoliciesKey: policyDocument,
},
managedPolicies: [managedPolicy],
maxSessionDuration: cdk.Duration.minutes(30),
path: 'path',
permissionsBoundary: managedPolicy,
roleName: 'roleName',
});
Initializer
new LazyRole(scope: Construct, id: string, props: LazyRoleProps)
Parameters
- scope
Construct
- id
string
- props
Lazy
Role Props
Construct Props
Name | Type | Description |
---|---|---|
assumed | IPrincipal | The IAM principal (i.e. new ServicePrincipal('sns.amazonaws.com') ) which can assume this role. |
description? | string | A description of the role. |
external | string[] | List of IDs that the role assumer needs to provide one of when assuming this role. |
inline | { [string]: Policy } | A list of named policies to inline into this role. |
managed | IManaged [] | A list of managed policies associated with this role. |
max | Duration | The maximum session duration that you want to set for the specified role. |
path? | string | The path associated with this role. |
permissions | IManaged | AWS supports permissions boundaries for IAM entities (users or roles). |
role | string | A name for the IAM role. |
assumedBy
Type:
IPrincipal
The IAM principal (i.e. new ServicePrincipal('sns.amazonaws.com')
) which can assume this role.
You can later modify the assume role policy document by accessing it via
the assumeRolePolicy
property.
description?
Type:
string
(optional, default: No description.)
A description of the role.
It can be up to 1000 characters long.
externalIds?
Type:
string[]
(optional, default: No external ID required)
List of IDs that the role assumer needs to provide one of when assuming this role.
If the configured and provided external IDs do not match, the AssumeRole operation will fail.
inlinePolicies?
Type:
{ [string]:
Policy
}
(optional, default: No policy is inlined in the Role resource.)
A list of named policies to inline into this role.
These policies will be
created with the role, whereas those added by addToPolicy
are added
using a separate CloudFormation resource (allowing a way around circular
dependencies that could otherwise be introduced).
managedPolicies?
Type:
IManaged
[]
(optional, default: No managed policies.)
A list of managed policies associated with this role.
You can add managed policies later using
addManagedPolicy(ManagedPolicy.fromAwsManagedPolicyName(policyName))
.
maxSessionDuration?
Type:
Duration
(optional, default: Duration.hours(1))
The maximum session duration that you want to set for the specified role.
This setting can have a value from 1 hour (3600sec) to 12 (43200sec) hours.
Anyone who assumes the role from the AWS CLI or API can use the DurationSeconds API parameter or the duration-seconds CLI parameter to request a longer session. The MaxSessionDuration setting determines the maximum duration that can be requested using the DurationSeconds parameter.
If users don't specify a value for the DurationSeconds parameter, their security credentials are valid for one hour by default. This applies when you use the AssumeRole* API operations or the assume-role* CLI operations but does not apply when you use those operations to create a console URL.
path?
Type:
string
(optional, default: /)
The path associated with this role.
For information about IAM paths, see Friendly Names and Paths in IAM User Guide.
permissionsBoundary?
Type:
IManaged
(optional, default: No permissions boundary.)
AWS supports permissions boundaries for IAM entities (users or roles).
A permissions boundary is an advanced feature for using a managed policy to set the maximum permissions that an identity-based policy can grant to an IAM entity. An entity's permissions boundary allows it to perform only the actions that are allowed by both its identity-based policies and its permissions boundaries.
roleName?
Type:
string
(optional, default: AWS CloudFormation generates a unique physical ID and uses that ID
for the role name.)
A name for the IAM role.
For valid values, see the RoleName parameter for the CreateRole action in the IAM API Reference.
IMPORTANT: If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
If you specify a name, you must specify the CAPABILITY_NAMED_IAM value to acknowledge your template's capabilities. For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.
Properties
Name | Type | Description |
---|---|---|
assume | string | When this Principal is used in an AssumeRole policy, the action to use. |
env | Resource | The environment this resource belongs to. |
grant | IPrincipal | The principal to grant permissions to. |
node | Node | The tree node. |
policy | Principal | Return the policy fragment that identifies this principal in a Policy. |
role | string | Returns the ARN of this role. |
role | string | Returns the stable and unique string identifying the role (i.e. AIDAJQABLZS4A3QDU576Q). |
role | string | Returns the name of this role. |
stack | Stack | The stack in which this resource is defined. |
principal | string | The AWS account ID of this principal. |
assumeRoleAction
Type:
string
When this Principal is used in an AssumeRole policy, the action to use.
env
Type:
Resource
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
grantPrincipal
Type:
IPrincipal
The principal to grant permissions to.
node
Type:
Node
The tree node.
policyFragment
Type:
Principal
Return the policy fragment that identifies this principal in a Policy.
roleArn
Type:
string
Returns the ARN of this role.
roleId
Type:
string
Returns the stable and unique string identifying the role (i.e. AIDAJQABLZS4A3QDU576Q).
roleName
Type:
string
Returns the name of this role.
stack
Type:
Stack
The stack in which this resource is defined.
principalAccount?
Type:
string
(optional)
The AWS account ID of this principal.
Can be undefined when the account is not known (for example, for service principals). Can be a Token - in that case, it's assumed to be AWS::AccountId.
Methods
Name | Description |
---|---|
add | Attaches a managed policy to this role. |
add | Add to the policy of this principal. |
add | Adds a permission to the role's default policy document. |
apply | Apply the given removal policy to this resource. |
attach | Attaches a policy to this role. |
grant(identity, ...actions) | Grant the actions defined in actions to the identity Principal on this resource. |
grant | Grant permissions to the given principal to assume this role. |
grant | Grant permissions to the given principal to pass this role. |
to | Returns a string representation of this construct. |
ManagedPolicy(policy)
addpublic addManagedPolicy(policy: IManagedPolicy): void
Parameters
- policy
IManaged
— The managed policy to attach.Policy
Attaches a managed policy to this role.
ToPolicy(statement)
addpublic addToPolicy(statement: PolicyStatement): boolean
Parameters
- statement
Policy
Statement
Returns
boolean
Add to the policy of this principal.
ToPrincipalPolicy(statement)
addpublic addToPrincipalPolicy(statement: PolicyStatement): AddToPrincipalPolicyResult
Parameters
- statement
Policy
— The permission statement to add to the policy document.Statement
Returns
Adds a permission to the role's default policy document.
If there is no default policy attached to this role, it will be created.
RemovalPolicy(policy)
applypublic applyRemovalPolicy(policy: RemovalPolicy): void
Parameters
- policy
Removal
Policy
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (RemovalPolicy.DESTROY
), or left in your AWS
account for data recovery and cleanup later (RemovalPolicy.RETAIN
).
InlinePolicy(policy)
attachpublic attachInlinePolicy(policy: Policy): void
Parameters
- policy
Policy
— The policy to attach.
Attaches a policy to this role.
grant(identity, ...actions)
public grant(identity: IPrincipal, ...actions: string[]): Grant
Parameters
- identity
IPrincipal
- actions
string
Returns
Grant the actions defined in actions to the identity Principal on this resource.
AssumeRole(identity)
grantpublic grantAssumeRole(identity: IPrincipal): Grant
Parameters
- identity
IPrincipal
Returns
Grant permissions to the given principal to assume this role.
PassRole(identity)
grantpublic grantPassRole(identity: IPrincipal): Grant
Parameters
- identity
IPrincipal
Returns
Grant permissions to the given principal to pass this role.
String()
topublic toString(): string
Returns
string
Returns a string representation of this construct.