Class: Aws::Lightsail::Types::InstanceHardware
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::InstanceHardware
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Describes the hardware for the instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cpu_count ⇒ Integer
The number of vCPUs the instance has.
-
#disks ⇒ Array<Types::Disk>
The disks attached to the instance.
-
#ram_size_in_gb ⇒ Float
The amount of RAM in GB on the instance (
1.0
).
Instance Attribute Details
#cpu_count ⇒ Integer
The number of vCPUs the instance has.
10160 10161 10162 10163 10164 10165 10166 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 10160 class InstanceHardware < Struct.new( :cpu_count, :disks, :ram_size_in_gb) SENSITIVE = [] include Aws::Structure end |
#disks ⇒ Array<Types::Disk>
The disks attached to the instance.
10160 10161 10162 10163 10164 10165 10166 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 10160 class InstanceHardware < Struct.new( :cpu_count, :disks, :ram_size_in_gb) SENSITIVE = [] include Aws::Structure end |
#ram_size_in_gb ⇒ Float
The amount of RAM in GB on the instance (1.0
).
10160 10161 10162 10163 10164 10165 10166 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 10160 class InstanceHardware < Struct.new( :cpu_count, :disks, :ram_size_in_gb) SENSITIVE = [] include Aws::Structure end |