Class: Aws::IoTSecureTunneling::Types::DestinationConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSecureTunneling::Types::DestinationConfig
- Defined in:
- gems/aws-sdk-iotsecuretunneling/lib/aws-sdk-iotsecuretunneling/types.rb
Overview
Note:
When making an API call, you may pass DestinationConfig data as a hash:
{
thing_name: "ThingName",
services: ["Service"], # required
}
The destination configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#services ⇒ Array<String>
A list of service names that identity the target application.
-
#thing_name ⇒ String
The name of the IoT thing to which you want to connect.
Instance Attribute Details
#services ⇒ Array<String>
A list of service names that identity the target application. The AWS IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The AWS IoT client instantiates the local proxy which uses this information to connect to the destination application.
106 107 108 109 110 111 |
# File 'gems/aws-sdk-iotsecuretunneling/lib/aws-sdk-iotsecuretunneling/types.rb', line 106 class DestinationConfig < Struct.new( :thing_name, :services) SENSITIVE = [] include Aws::Structure end |
#thing_name ⇒ String
The name of the IoT thing to which you want to connect.
106 107 108 109 110 111 |
# File 'gems/aws-sdk-iotsecuretunneling/lib/aws-sdk-iotsecuretunneling/types.rb', line 106 class DestinationConfig < Struct.new( :thing_name, :services) SENSITIVE = [] include Aws::Structure end |