interface PolicyProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IAM.PolicyProps |
Java | software.amazon.awscdk.services.iam.PolicyProps |
Python | aws_cdk.aws_iam.PolicyProps |
TypeScript (source) | @aws-cdk/aws-iam » PolicyProps |
Properties for defining an IAM inline policy document.
Example
declare const postAuthFn: lambda.Function;
const userpool = new cognito.UserPool(this, 'myuserpool', {
lambdaTriggers: {
postAuthentication: postAuthFn,
},
});
// provide permissions to describe the user pool scoped to the ARN the user pool
postAuthFn.role?.attachInlinePolicy(new iam.Policy(this, 'userpool-policy', {
statements: [new iam.PolicyStatement({
actions: ['cognito-idp:DescribeUserPool'],
resources: [userpool.userPoolArn],
})],
}));
Properties
Name | Type | Description |
---|---|---|
document? | Policy | Initial PolicyDocument to use for this Policy. |
force? | boolean | Force creation of an AWS::IAM::Policy . |
groups? | IGroup [] | Groups to attach this policy to. |
policy | string | The name of the policy. |
roles? | IRole [] | Roles to attach this policy to. |
statements? | Policy [] | Initial set of permissions to add to this policy document. |
users? | IUser [] | Users to attach this policy to. |
document?
Type:
Policy
(optional, default: An empty policy.)
Initial PolicyDocument to use for this Policy.
If omited, any
PolicyStatement
provided in the statements
property will be applied
against the empty default PolicyDocument
.
force?
Type:
boolean
(optional, default: false)
Force creation of an AWS::IAM::Policy
.
Unless set to true
, this Policy
construct will not materialize to an
AWS::IAM::Policy
CloudFormation resource in case it would have no effect
(for example, if it remains unattached to an IAM identity or if it has no
statements). This is generally desired behavior, since it prevents
creating invalid--and hence undeployable--CloudFormation templates.
In cases where you know the policy must be created and it is actually
an error if no statements have been added to it, you can set this to true
.
groups?
Type:
IGroup
[]
(optional, default: No groups.)
Groups to attach this policy to.
You can also use attachToGroup(group)
to attach this policy to a group.
policyName?
Type:
string
(optional, default: Uses the logical ID of the policy resource, which is ensured
to be unique within the stack.)
The name of the policy.
If you specify multiple policies for an entity, specify unique names. For example, if you specify a list of policies for an IAM role, each policy must have a unique name.
roles?
Type:
IRole
[]
(optional, default: No roles.)
Roles to attach this policy to.
You can also use attachToRole(role)
to attach this policy to a role.
statements?
Type:
Policy
[]
(optional, default: No statements.)
Initial set of permissions to add to this policy document.
You can also use addStatements(...statement)
to add permissions later.
users?
Type:
IUser
[]
(optional, default: No users.)
Users to attach this policy to.
You can also use attachToUser(user)
to attach this policy to a user.