Class: Aws::DynamoDBStreams::Types::Identity

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#principal_idString

A unique identifier for the entity that made the call. For Time To Live, the principalId is "dynamodb.amazonaws.com".

Returns:

  • (String)


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

#typeString

The type of the identity. For Time To Live, the type is "Service".

Returns:

  • (String)


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