Class: Aws::CleanRoomsML::Types::TrainedModelArtifactMaxSize

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

Overview

Specifies the maximum size limit for trained model artifacts. This configuration helps control storage costs and ensures that trained models don't exceed specified size constraints. The size limit applies to the total size of all artifacts produced by the training job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unitString

The unit of measurement for the maximum artifact size. Valid values include common storage units such as bytes, kilobytes, megabytes, gigabytes, and terabytes.

Returns:

  • (String)


5302
5303
5304
5305
5306
5307
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5302

class TrainedModelArtifactMaxSize < Struct.new(
  :unit,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

The numerical value for the maximum artifact size limit. This value is interpreted according to the specified unit.

Returns:

  • (Float)


5302
5303
5304
5305
5306
5307
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5302

class TrainedModelArtifactMaxSize < Struct.new(
  :unit,
  :value)
  SENSITIVE = []
  include Aws::Structure
end