Interface CfnPolicyGrant.UserPolicyGrantPrincipalProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPolicyGrant.UserPolicyGrantPrincipalProperty.Jsii$Proxy
Enclosing class:
CfnPolicyGrant

@Stability(Stable) public static interface CfnPolicyGrant.UserPolicyGrantPrincipalProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.datazone.*;
 Object allUsersGrantFilter;
 UserPolicyGrantPrincipalProperty userPolicyGrantPrincipalProperty = UserPolicyGrantPrincipalProperty.builder()
         .allUsersGrantFilter(allUsersGrantFilter)
         .userIdentifier("userIdentifier")
         .build();
 

See Also: