Class: Aws::Glue::Types::PartitionIndex
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::PartitionIndex
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass PartitionIndex data as a hash:
{
keys: ["NameString"], # required
index_name: "NameString", # required
}
A structure for a partition index.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#index_name ⇒ String
The name of the partition index.
-
#keys ⇒ Array<String>
The keys for the partition index.
Instance Attribute Details
#index_name ⇒ String
The name of the partition index.
11952 11953 11954 11955 11956 11957 |
# File 'lib/aws-sdk-glue/types.rb', line 11952 class PartitionIndex < Struct.new( :keys, :index_name) SENSITIVE = [] include Aws::Structure end |
#keys ⇒ Array<String>
The keys for the partition index.
11952 11953 11954 11955 11956 11957 |
# File 'lib/aws-sdk-glue/types.rb', line 11952 class PartitionIndex < Struct.new( :keys, :index_name) SENSITIVE = [] include Aws::Structure end |