Class: Aws::OpenSearchServerless::Types::DeleteCollectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::DeleteCollectionRequest
- Defined in:
- gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive identifier to ensure idempotency of the request.
-
#id ⇒ String
The unique identifier of the collection.
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive identifier to ensure idempotency of the request.
A suitable default value is auto-generated. You should normally not need to pass this option.
1031 1032 1033 1034 1035 1036 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 1031 class DeleteCollectionRequest < Struct.new( :id, :client_token) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique identifier of the collection. For example,
1iu5usc406kd. The ID is part of the collection endpoint. You can
also retrieve it using the ListCollections API.
1031 1032 1033 1034 1035 1036 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 1031 class DeleteCollectionRequest < Struct.new( :id, :client_token) SENSITIVE = [] include Aws::Structure end |