interface OptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnTransitGatewayAttachment.OptionsProperty |
Java | software.amazon.awscdk.services.ec2.CfnTransitGatewayAttachment.OptionsProperty |
Python | aws_cdk.aws_ec2.CfnTransitGatewayAttachment.OptionsProperty |
TypeScript | @aws-cdk/aws-ec2 » CfnTransitGatewayAttachment » OptionsProperty |
Describes the VPC attachment options.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ec2 from '@aws-cdk/aws-ec2';
const optionsProperty: ec2.CfnTransitGatewayAttachment.OptionsProperty = {
applianceModeSupport: 'applianceModeSupport',
dnsSupport: 'dnsSupport',
ipv6Support: 'ipv6Support',
};
Properties
| Name | Type | Description |
|---|---|---|
| appliance | string | Indicates whether appliance mode support is enabled. |
| dns | string | Indicates whether DNS support is enabled. |
| ipv6 | string | Indicates whether IPv6 support is disabled. |
applianceModeSupport?
Type:
string
(optional)
Indicates whether appliance mode support is enabled.
dnsSupport?
Type:
string
(optional)
Indicates whether DNS support is enabled.
ipv6Support?
Type:
string
(optional)
Indicates whether IPv6 support is disabled.

.NET
Java
Python
TypeScript