interface UserPolicyGrantPrincipalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnPolicyGrant.UserPolicyGrantPrincipalProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnPolicyGrant_UserPolicyGrantPrincipalProperty |
Java | software.amazon.awscdk.services.datazone.CfnPolicyGrant.UserPolicyGrantPrincipalProperty |
Python | aws_cdk.aws_datazone.CfnPolicyGrant.UserPolicyGrantPrincipalProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnPolicyGrant » UserPolicyGrantPrincipalProperty |
The user policy grant principal.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
declare const allUsersGrantFilter: any;
const userPolicyGrantPrincipalProperty: datazone.CfnPolicyGrant.UserPolicyGrantPrincipalProperty = {
allUsersGrantFilter: allUsersGrantFilter,
userIdentifier: 'userIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| all | any | The all users grant filter of the user policy grant principal. |
| user | string | The user ID of the user policy grant principal. |
allUsersGrantFilter?
Type:
any
(optional)
The all users grant filter of the user policy grant principal.
userIdentifier?
Type:
string
(optional)
The user ID of the user policy grant principal.

.NET
Go
Java
Python
TypeScript