Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::Bedrock::Types::CustomizationConfig

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

Overview

Note:

CustomizationConfig is a union - when making an API calls you must set exactly one of the members.

Note:

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

A model customization configuration

Direct Known Subclasses

DistillationConfig, Unknown

Defined Under Namespace

Classes: DistillationConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#distillation_configTypes::DistillationConfig

The distillation configuration for the custom model.


1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1166

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

  class DistillationConfig < CustomizationConfig; end
  class Unknown < CustomizationConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown


1166
1167
1168
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 1166

def unknown
  @unknown
end