interface CfnTunnelProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTSecureTunneling.CfnTunnelProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotsecuretunneling#CfnTunnelProps |
Java | software.amazon.awscdk.services.iotsecuretunneling.CfnTunnelProps |
Python | aws_cdk.aws_iotsecuretunneling.CfnTunnelProps |
TypeScript | aws-cdk-lib » aws_iotsecuretunneling » CfnTunnelProps |
Properties for defining a CfnTunnel.
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 cfnTunnelProps: iotsecuretunneling.CfnTunnelProps = {
description: 'description',
destinationConfig: {
services: ['services'],
// the properties below are optional
thingName: 'thingName',
},
tags: [{
key: 'key',
value: 'value',
}],
timeoutConfig: {
maxLifetimeTimeoutMinutes: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A short text description of the tunnel. |
| destination | IResolvable | Destination | The destination configuration. |
| tags? | Cfn[] | A collection of tag metadata. |
| timeout | IResolvable | Timeout | Tunnel timeout configuration. |
description?
Type:
string
(optional)
A short text description of the tunnel.
destinationConfig?
Type:
IResolvable | Destination
(optional)
The destination configuration.
tags?
Type:
Cfn[]
(optional)
A collection of tag metadata.
timeoutConfig?
Type:
IResolvable | Timeout
(optional)
Tunnel timeout configuration.

.NET
Go
Java
Python
TypeScript