Class: Aws::DynamoDBStreams::Types::Identity
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDBStreams::Types::Identity
- Defined in:
- gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb
Overview
Contains details about the type of identity that made the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#principal_id ⇒ String
A unique identifier for the entity that made the call.
-
#type ⇒ String
The type of the identity.
Instance Attribute Details
#principal_id ⇒ String
A unique identifier for the entity that made the call. For Time To Live, the principalId is "dynamodb.amazonaws.com".
293 294 295 296 297 298 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 293 class Identity < Struct.new( :principal_id, :type) SENSITIVE = [] include Aws::Structure end |