Show / Hide Table of Contents

Class CfnVpcAttachment.VpcOptionsProperty

Describes the VPC options.

Inheritance
object
CfnVpcAttachment.VpcOptionsProperty
Implements
CfnVpcAttachment.IVpcOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.NetworkManager
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVpcAttachment.VpcOptionsProperty : CfnVpcAttachment.IVpcOptionsProperty
Syntax (vb)
Public Class CfnVpcAttachment.VpcOptionsProperty Implements CfnVpcAttachment.IVpcOptionsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-vpcattachment-vpcoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.NetworkManager;

             var vpcOptionsProperty = new VpcOptionsProperty {
                 ApplianceModeSupport = false,
                 DnsSupport = false,
                 Ipv6Support = false,
                 SecurityGroupReferencingSupport = false
             };

Synopsis

Constructors

VpcOptionsProperty()

Describes the VPC options.

Properties

ApplianceModeSupport

Indicates whether appliance mode is supported.

DnsSupport

Indicates whether DNS is supported.

Ipv6Support

Indicates whether IPv6 is supported.

SecurityGroupReferencingSupport

Indicates whether security group referencing is enabled for this VPC attachment.

Constructors

VpcOptionsProperty()

Describes the VPC options.

public VpcOptionsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-vpcattachment-vpcoptions.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.NetworkManager;

             var vpcOptionsProperty = new VpcOptionsProperty {
                 ApplianceModeSupport = false,
                 DnsSupport = false,
                 Ipv6Support = false,
                 SecurityGroupReferencingSupport = false
             };

Properties

ApplianceModeSupport

Indicates whether appliance mode is supported.

public object? ApplianceModeSupport { get; set; }
Property Value

object

Remarks

If enabled, traffic flow between a source and destination use the same Availability Zone for the VPC attachment for the lifetime of that flow. The default value is false .

Default: - false

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-vpcattachment-vpcoptions.html#cfn-networkmanager-vpcattachment-vpcoptions-appliancemodesupport

Type union: either bool or IResolvable

DnsSupport

Indicates whether DNS is supported.

public object? DnsSupport { get; set; }
Property Value

object

Remarks

Default: - true

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-vpcattachment-vpcoptions.html#cfn-networkmanager-vpcattachment-vpcoptions-dnssupport

Type union: either bool or IResolvable

Ipv6Support

Indicates whether IPv6 is supported.

public object? Ipv6Support { get; set; }
Property Value

object

Remarks

Default: - false

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-vpcattachment-vpcoptions.html#cfn-networkmanager-vpcattachment-vpcoptions-ipv6support

Type union: either bool or IResolvable

SecurityGroupReferencingSupport

Indicates whether security group referencing is enabled for this VPC attachment.

public object? SecurityGroupReferencingSupport { get; set; }
Property Value

object

Remarks

The default is true . However, at the core network policy-level the default is set to false .

Default: - true

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkmanager-vpcattachment-vpcoptions.html#cfn-networkmanager-vpcattachment-vpcoptions-securitygroupreferencingsupport

Type union: either bool or IResolvable

Implements

CfnVpcAttachment.IVpcOptionsProperty
Back to top Generated by DocFX