Class: Aws::CloudTrail::Types::PartitionKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudTrail::Types::PartitionKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
Overview
Contains information about a partition key for an event data store.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the partition key.
-
#type ⇒ String
The data type of the partition key.
Instance Attribute Details
#name ⇒ String
The name of the partition key.
4099 4100 4101 4102 4103 4104 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4099 class PartitionKey < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the partition key. For example, ‘bigint` or `string`.
4099 4100 4101 4102 4103 4104 |
# File 'lib/aws-sdk-cloudtrail/types.rb', line 4099 class PartitionKey < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |