Class: Aws::FraudDetector::Types::Entity
- Inherits:
-
Struct
- Object
- Struct
- Aws::FraudDetector::Types::Entity
- Defined in:
- gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb
Overview
Note:
When making an API call, you may pass Entity data as a hash:
{
entity_type: "string", # required
entity_id: "identifier", # required
}
The entity details.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entity_id ⇒ String
The entity ID.
-
#entity_type ⇒ String
The entity type.
Instance Attribute Details
#entity_id ⇒ String
The entity ID. If you do not know the entityId
, you can pass
unknown
, which is areserved string literal.
1128 1129 1130 1131 1132 1133 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 1128 class Entity < Struct.new( :entity_type, :entity_id) SENSITIVE = [] include Aws::Structure end |