Class: Aws::OpenSearchServerless::Types::BatchGetCollectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::BatchGetCollectionRequest
- Includes:
- Structure
- Defined in:
- 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.
[1]: docs.aws.amazon.com/opensearch-service/latest/ServerlessAPIReference/API_ListCollections.html
186 187 188 189 190 191 |
# File '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 'lib/aws-sdk-opensearchserverless/types.rb', line 186 class BatchGetCollectionRequest < Struct.new( :ids, :names) SENSITIVE = [] include Aws::Structure end |