Class: Aws::CleanRoomsML::Types::ResourceConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRoomsML::Types::ResourceConfig
- Defined in:
- gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb
Overview
Information about the EC2 resources that are used to train the model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#instance_count ⇒ Integer
The number of resources that are used to train the model.
-
#instance_type ⇒ String
The instance type that is used to train the model.
-
#volume_size_in_gb ⇒ Integer
The volume size of the instance that is used to train the model.
Instance Attribute Details
#instance_count ⇒ Integer
The number of resources that are used to train the model.
5148 5149 5150 5151 5152 5153 5154 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5148 class ResourceConfig < Struct.new( :instance_count, :instance_type, :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |
#instance_type ⇒ String
The instance type that is used to train the model.
5148 5149 5150 5151 5152 5153 5154 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5148 class ResourceConfig < Struct.new( :instance_count, :instance_type, :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |
#volume_size_in_gb ⇒ Integer
The volume size of the instance that is used to train the model. Please see EC2 volume limit for volume size limitations on different instance types.
5148 5149 5150 5151 5152 5153 5154 |
# File 'gems/aws-sdk-cleanroomsml/lib/aws-sdk-cleanroomsml/types.rb', line 5148 class ResourceConfig < Struct.new( :instance_count, :instance_type, :volume_size_in_gb) SENSITIVE = [] include Aws::Structure end |