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".
299 300 301 302 303 304 |
# File 'gems/aws-sdk-dynamodbstreams/lib/aws-sdk-dynamodbstreams/types.rb', line 299 class Identity < Struct.new( :principal_id, :type) SENSITIVE = [] include Aws::Structure end |