Class: Aws::OpenSearchService::Types::CapabilityBaseResponseConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb

Overview

Note:

CapabilityBaseResponseConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CapabilityBaseResponseConfig corresponding to the set member.

The base configuration returned for a registered capability.

Direct Known Subclasses

AiConfig, Unknown

Defined Under Namespace

Classes: AiConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ai_configTypes::AIConfig

Configuration settings for AI-powered capabilities.

Returns:

  • (Types::AIConfig)


1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1199

class CapabilityBaseResponseConfig < Struct.new(
  :ai_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AiConfig < CapabilityBaseResponseConfig; end
  class Unknown < CapabilityBaseResponseConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1199
1200
1201
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1199

def unknown
  @unknown
end