Class: Aws::OpenSearchServerless::Types::BatchGetCollectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::BatchGetCollectionRequest
- Defined in:
- gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ids ⇒ Array<String>
A list of collection IDs.
-
#names ⇒ Array<String>
A list of collection names.
Instance Attribute Details
#ids ⇒ Array<String>
A list of collection IDs. You can't provide names and IDs in the same request. The ID is part of the collection endpoint. You can also retrieve it using the ListCollections API.
186 187 188 189 190 191 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 186 class BatchGetCollectionRequest < Struct.new( :ids, :names) SENSITIVE = [] include Aws::Structure end |
#names ⇒ Array<String>
A list of collection names. You can't provide names and IDs in the same request.
186 187 188 189 190 191 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 186 class BatchGetCollectionRequest < Struct.new( :ids, :names) SENSITIVE = [] include Aws::Structure end |