interface UserPolicyGrantPrincipalProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnPolicyGrantPropsMixin.UserPolicyGrantPrincipalProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnPolicyGrantPropsMixin_UserPolicyGrantPrincipalProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnPolicyGrantPropsMixin.UserPolicyGrantPrincipalProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnPolicyGrantPropsMixin.UserPolicyGrantPrincipalProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » CfnPolicyGrantPropsMixin » 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/cfn-property-mixins';
declare const allUsersGrantFilter: any;
const userPolicyGrantPrincipalProperty: datazone.CfnPolicyGrantPropsMixin.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