interface DestinationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSecureTunneling.CfnTunnelPropsMixin.DestinationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsecuretunneling#CfnTunnelPropsMixin_DestinationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsecuretunneling.CfnTunnelPropsMixin.DestinationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsecuretunneling.CfnTunnelPropsMixin.DestinationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsecuretunneling » CfnTunnelPropsMixin » 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/cfn-property-mixins';
const destinationConfigProperty: iotsecuretunneling.CfnTunnelPropsMixin.DestinationConfigProperty = {
services: ['services'],
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[]
(optional)
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