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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchserverless/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.

Returns:

  • (Array<String>)


150
151
152
153
154
155
# File 'gems/aws-sdk-opensearchserverless/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 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 150

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