Class: Aws::GreengrassV2::Types::ConnectivityInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::ConnectivityInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about an endpoint and port where client devices can connect to an MQTT broker on a Greengrass core device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#host_address ⇒ String
The IP address or DNS address where client devices can connect to an MQTT broker on the Greengrass core device.
-
#id ⇒ String
An ID for the connectivity information.
-
#metadata ⇒ String
Additional metadata to provide to client devices that connect to this core device.
-
#port_number ⇒ Integer
The port where the MQTT broker operates on the core device.
Instance Attribute Details
#host_address ⇒ String
The IP address or DNS address where client devices can connect to an MQTT broker on the Greengrass core device.
680 681 682 683 684 685 686 687 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 680 class ConnectivityInfo < Struct.new( :id, :host_address, :port_number, :metadata) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
An ID for the connectivity information.
680 681 682 683 684 685 686 687 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 680 class ConnectivityInfo < Struct.new( :id, :host_address, :port_number, :metadata) SENSITIVE = [] include Aws::Structure end |
#metadata ⇒ String
Additional metadata to provide to client devices that connect to this core device.
680 681 682 683 684 685 686 687 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 680 class ConnectivityInfo < Struct.new( :id, :host_address, :port_number, :metadata) SENSITIVE = [] include Aws::Structure end |
#port_number ⇒ Integer
The port where the MQTT broker operates on the core device. This port is typically 8883, which is the default port for the MQTT broker component that runs on core devices.
680 681 682 683 684 685 686 687 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 680 class ConnectivityInfo < Struct.new( :id, :host_address, :port_number, :metadata) SENSITIVE = [] include Aws::Structure end |