Interface CfnPolicy.EntityIdentifierProperty

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

@Stability(Stable) public static interface CfnPolicy.EntityIdentifierProperty extends software.amazon.jsii.JsiiSerializable
Contains the identifier of an entity in a policy, including its ID and type.

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.verifiedpermissions.*;
 EntityIdentifierProperty entityIdentifierProperty = EntityIdentifierProperty.builder()
         .entityId("entityId")
         .entityType("entityType")
         .build();
 

See Also: