Class: Aws::CleanRoomsML::Types::TrainedModelArtifactMaxSize
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::TrainedModelArtifactMaxSize
- 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
-
#unit ⇒ String
The unit of measurement for the maximum artifact size.
-
#value ⇒ Float
The numerical value for the maximum artifact size limit.
Instance Attribute Details
#unit ⇒ String
The unit of measurement for the maximum artifact size. Valid values include common storage units such as bytes, kilobytes, megabytes, gigabytes, and terabytes.
5249 5250 5251 5252 5253 5254 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5249 class TrainedModelArtifactMaxSize < Struct.new( :unit, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The numerical value for the maximum artifact size limit. This value is interpreted according to the specified unit.
5249 5250 5251 5252 5253 5254 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5249 class TrainedModelArtifactMaxSize < Struct.new( :unit, :value) SENSITIVE = [] include Aws::Structure end |