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();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPolicy.AccessPolicyIdentityPropertystatic final classAn implementation forCfnAccessPolicy.AccessPolicyIdentityProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getIamRoleAn IAM role identity.
- 
getIamUserAn IAM user identity.
- 
getUserThe IAM Identity Center user to which this access policy maps.
- 
builder
 
-