Class: Aws::OpenSearchService::Types::CapabilityExtendedResponseConfig

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

Overview

Note:

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

The extended configuration returned for a registered capability, including additional details beyond the base configuration.

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)


1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1221

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

  class AiConfig < CapabilityExtendedResponseConfig; end
  class Unknown < CapabilityExtendedResponseConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1221
1222
1223
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 1221

def unknown
  @unknown
end