Class: Aws::VerifiedPermissions::Types::EntityIdentifier
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::EntityIdentifier
- Defined in:
- gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb
Overview
Contains the identifier of an entity, including its ID and type.
This data type is used as a request parameter for IsAuthorized operation, and as a response parameter for the CreatePolicy, GetPolicy, and UpdatePolicy operations.
Example: {"entityId":"string","entityType":"string"}
Constant Summary collapse
- SENSITIVE =
[:entity_type, :entity_id]
Instance Attribute Summary collapse
-
#entity_id ⇒ String
The identifier of an entity.
-
#entity_type ⇒ String
The type of an entity.
Instance Attribute Details
#entity_id ⇒ String
The identifier of an entity.
"entityId":"identifier"
1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 1579 class EntityIdentifier < Struct.new( :entity_type, :entity_id) SENSITIVE = [:entity_type, :entity_id] include Aws::Structure end |
#entity_type ⇒ String
The type of an entity.
Example: "entityType":"typeName"
1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 1579 class EntityIdentifier < Struct.new( :entity_type, :entity_id) SENSITIVE = [:entity_type, :entity_id] include Aws::Structure end |