Class: Aws::OpenSearchServerless::Types::CreateIndexRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::CreateIndexRequest
- Defined in:
- gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier of the collection in which to create the index.
-
#index_name ⇒ String
The name of the index to create.
-
#index_schema ⇒ Hash, ...
The JSON schema definition for the index, including field mappings and settings.
Instance Attribute Details
#id ⇒ String
The unique identifier of the collection in which to create the index.
676 677 678 679 680 681 682 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 676 class CreateIndexRequest < Struct.new( :id, :index_name, :index_schema) SENSITIVE = [] include Aws::Structure end |
#index_name ⇒ String
The name of the index to create. Index names must be lowercase and can't begin with underscores (_) or hyphens (-).
676 677 678 679 680 681 682 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 676 class CreateIndexRequest < Struct.new( :id, :index_name, :index_schema) SENSITIVE = [] include Aws::Structure end |
#index_schema ⇒ Hash, ...
The JSON schema definition for the index, including field mappings and settings.
676 677 678 679 680 681 682 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 676 class CreateIndexRequest < Struct.new( :id, :index_name, :index_schema) SENSITIVE = [] include Aws::Structure end |