Class: Aws::OpenSearchServerless::Types::BatchGetCollectionRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-opensearchserverless/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idsArray<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

Returns:

  • (Array<String>)


150
151
152
153
154
155
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 150

class BatchGetCollectionRequest < Struct.new(
  :ids,
  :names)
  SENSITIVE = []
  include Aws::Structure
end

#namesArray<String>

A list of collection names. You can’t provide names and IDs in the same request.

Returns:

  • (Array<String>)


150
151
152
153
154
155
# File 'lib/aws-sdk-opensearchserverless/types.rb', line 150

class BatchGetCollectionRequest < Struct.new(
  :ids,
  :names)
  SENSITIVE = []
  include Aws::Structure
end