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
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.
1512 1513 1514 1515 1516 1517 |
# File 'gems/aws-sdk-frauddetector/lib/aws-sdk-frauddetector/types.rb', line 1512 class Entity < Struct.new( :entity_type, :entity_id) SENSITIVE = [] include Aws::Structure end |