Class: Aws::Greengrass::Types::ConnectivityInfo

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-greengrass/types.rb

Overview

Information about a Greengrass core’s connectivity.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#host_addressString

The endpoint for the Greengrass core. Can be an IP address or DNS.

Returns:

  • (String)


214
215
216
217
218
219
220
221
# File 'lib/aws-sdk-greengrass/types.rb', line 214

class ConnectivityInfo < Struct.new(
  :host_address,
  :id,
  :metadata,
  :port_number)
  SENSITIVE = []
  include Aws::Structure
end

#idString

The ID of the connectivity information.

Returns:

  • (String)


214
215
216
217
218
219
220
221
# File 'lib/aws-sdk-greengrass/types.rb', line 214

class ConnectivityInfo < Struct.new(
  :host_address,
  :id,
  :metadata,
  :port_number)
  SENSITIVE = []
  include Aws::Structure
end

#metadataString

Metadata for this endpoint.

Returns:

  • (String)


214
215
216
217
218
219
220
221
# File 'lib/aws-sdk-greengrass/types.rb', line 214

class ConnectivityInfo < Struct.new(
  :host_address,
  :id,
  :metadata,
  :port_number)
  SENSITIVE = []
  include Aws::Structure
end

#port_numberInteger

The port of the Greengrass core. Usually 8883.

Returns:

  • (Integer)


214
215
216
217
218
219
220
221
# File 'lib/aws-sdk-greengrass/types.rb', line 214

class ConnectivityInfo < Struct.new(
  :host_address,
  :id,
  :metadata,
  :port_number)
  SENSITIVE = []
  include Aws::Structure
end