Class: Aws::Outposts::Types::FormFactorConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Outposts::Types::FormFactorConfig
- Defined in:
- gems/aws-sdk-outposts/lib/aws-sdk-outposts/types.rb
Overview
A supported form factor and Outpost generation configuration for an instance type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#form_factor ⇒ String
The form factor.
-
#outpost_generation ⇒ String
The Outpost generation.
Instance Attribute Details
#form_factor ⇒ String
The form factor. Valid values are RACK for rack-based Outposts and
SERVER for server-based Outposts.
977 978 979 980 981 982 |
# File 'gems/aws-sdk-outposts/lib/aws-sdk-outposts/types.rb', line 977 class FormFactorConfig < Struct.new( :form_factor, :outpost_generation) SENSITIVE = [] include Aws::Structure end |
#outpost_generation ⇒ String
The Outpost generation. Valid values are GENERATION_1 for
first-generation rack deployments and GENERATION_2 for
second-generation rack deployments. This value is not set for server
form factors.
977 978 979 980 981 982 |
# File 'gems/aws-sdk-outposts/lib/aws-sdk-outposts/types.rb', line 977 class FormFactorConfig < Struct.new( :form_factor, :outpost_generation) SENSITIVE = [] include Aws::Structure end |