Interface CfnAccessPolicy.AccessPolicyIdentityProperty

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

@Stability(Stable) public static interface CfnAccessPolicy.AccessPolicyIdentityProperty extends software.amazon.jsii.JsiiSerializable
The identity (IAM Identity Center user, IAM Identity Center group, or IAM user) to which this access policy applies.

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.iotsitewise.*;
 AccessPolicyIdentityProperty accessPolicyIdentityProperty = AccessPolicyIdentityProperty.builder()
         .iamRole(IamRoleProperty.builder()
                 .arn("arn")
                 .build())
         .iamUser(IamUserProperty.builder()
                 .arn("arn")
                 .build())
         .user(UserProperty.builder()
                 .id("id")
                 .build())
         .build();
 

See Also: