Class: Aws::SSM::Types::NodeType

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure, Aws::Structure::Union
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

NodeType is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of NodeType corresponding to the set member.

Information about a managed node’s type.

Direct Known Subclasses

Instance, Unknown

Defined Under Namespace

Classes: Instance, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#instanceTypes::InstanceInfo

Information about a specific managed node.

Returns:



13509
13510
13511
13512
13513
13514
13515
13516
13517
13518
# File 'lib/aws-sdk-ssm/types.rb', line 13509

class NodeType < Struct.new(
  :instance,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Instance < NodeType; end
  class Unknown < NodeType; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



13509
13510
13511
# File 'lib/aws-sdk-ssm/types.rb', line 13509

def unknown
  @unknown
end