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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPolicy.EntityIdentifierProperty
static final class
An implementation forCfnPolicy.EntityIdentifierProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntityId
The identifier of an entity."entityId":" *identifier* "
- See Also:
-
getEntityType
The type of an entity.Example:
"entityType":" *typeName* "
- See Also:
-
builder
-