interface DestinationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSecureTunneling.CfnTunnel.DestinationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsecuretunneling#CfnTunnel_DestinationConfigProperty |
Java | software.amazon.awscdk.services.iotsecuretunneling.CfnTunnel.DestinationConfigProperty |
Python | aws_cdk.aws_iotsecuretunneling.CfnTunnel.DestinationConfigProperty |
TypeScript | aws-cdk-lib » aws_iotsecuretunneling » CfnTunnel » DestinationConfigProperty |
The destination configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsecuretunneling as iotsecuretunneling } from 'aws-cdk-lib';
const destinationConfigProperty: iotsecuretunneling.CfnTunnel.DestinationConfigProperty = {
services: ['services'],
// the properties below are optional
thingName: 'thingName',
};
Properties
| Name | Type | Description |
|---|---|---|
| services | string[] | A list of service names that identify the target application. |
| thing | string | The name of the IoT thing to which you want to connect. |
services
Type:
string[]
A list of service names that identify the target application.
thingName?
Type:
string
(optional)
The name of the IoT thing to which you want to connect.

.NET
Go
Java
Python
TypeScript