AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the ModifyVpcAttribute operation. Modifies the specified attribute of the specified VPC.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.EC2.AmazonEC2Request
      Amazon.EC2.Model.ModifyVpcAttributeRequest

Namespace: Amazon.EC2.Model
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z

Syntax

C#
public class ModifyVpcAttributeRequest : AmazonEC2Request
         IAmazonWebServiceRequest

The ModifyVpcAttributeRequest type exposes the following members

Constructors

NameDescription
Public Method ModifyVpcAttributeRequest()

Properties

NameTypeDescription
Public Property EnableDnsHostnames System.Boolean

Gets and sets the property EnableDnsHostnames.

Indicates whether the instances launched in the VPC get DNS hostnames. If enabled, instances in the VPC get DNS hostnames; otherwise, they do not.

You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute. You can only enable DNS hostnames if you've enabled DNS support.

Public Property EnableDnsSupport System.Boolean

Gets and sets the property EnableDnsSupport.

Indicates whether the DNS resolution is supported for the VPC. If enabled, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC network range "plus two" succeed. If disabled, the Amazon provided DNS service in the VPC that resolves public DNS hostnames to IP addresses is not enabled.

You cannot modify the DNS resolution and DNS hostnames attributes in the same request. Use separate requests for each attribute.

Public Property EnableNetworkAddressUsageMetrics System.Boolean

Gets and sets the property EnableNetworkAddressUsageMetrics.

Indicates whether Network Address Usage metrics are enabled for your VPC.

Public Property VpcId System.String

Gets and sets the property VpcId.

The ID of the VPC.

Examples

This example modifies the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for instances in the VPC to their corresponding IP addresses; otherwise, it does not.

To modify the enableDnsSupport attribute


var client = new AmazonEC2Client();
var response = client.ModifyVpcAttribute(new ModifyVpcAttributeRequest 
{
    EnableDnsSupport = jsondata object,
    VpcId = "vpc-a01106c2"
});


            

This example modifies the enableDnsHostnames attribute. This attribute indicates whether instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.

To modify the enableDnsHostnames attribute


var client = new AmazonEC2Client();
var response = client.ModifyVpcAttribute(new ModifyVpcAttributeRequest 
{
    EnableDnsHostnames = jsondata object,
    VpcId = "vpc-a01106c2"
});


            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5