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, RftConfig, Unknown

Defined Under Namespace

Classes: DistillationConfig, RftConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#distillation_configTypes::DistillationConfig

The Distillation configuration for the custom model.



4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4002

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

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

#rft_configTypes::RFTConfig

Configuration settings for reinforcement fine-tuning (RFT) model customization, including grader configuration and hyperparameters.

Returns:



4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4002

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4002
4003
4004
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4002

def unknown
  @unknown
end