Interface CfnAccessPolicyPropsMixin.AccessPolicyIdentityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPolicyPropsMixin.AccessPolicyIdentityProperty.Jsii$Proxy
- Enclosing class:
CfnAccessPolicyPropsMixin
@Stability(Stable)
public static interface CfnAccessPolicyPropsMixin.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.cfnpropertymixins.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessPolicyPropsMixin.AccessPolicyIdentityPropertystatic final classAn implementation forCfnAccessPolicyPropsMixin.AccessPolicyIdentityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIamRole
An IAM role identity.Returns union: either
IResolvableorCfnAccessPolicyPropsMixin.IamRoleProperty- See Also:
-
getIamUser
An IAM user identity.Returns union: either
IResolvableorCfnAccessPolicyPropsMixin.IamUserProperty- See Also:
-
getUser
An IAM Identity Center user identity.Returns union: either
IResolvableorCfnAccessPolicyPropsMixin.UserProperty- See Also:
-
builder
-