Class: Aws::Outposts::Types::FormFactorConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#form_factor ⇒ String

The form factor. Valid values are RACK for rack-based Outposts and SERVER for server-based Outposts.

Returns:

  • (String)


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.

Returns:

  • (String)


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