Class: Aws::EC2::Types::ModifyVpcAttributeRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass ModifyVpcAttributeRequest data as a hash:

{
  enable_dns_hostnames: {
    value: false,
  },
  enable_dns_support: {
    value: false,
  },
  vpc_id: "String", # required
}

Contains the parameters for ModifyVpcAttribute.

Instance Attribute Summary collapse

Instance Attribute Details

#enable_dns_hostnamesTypes::AttributeBooleanValue

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.



16959
16960
16961
16962
16963
16964
# File 'lib/aws-sdk-ec2/types.rb', line 16959

class ModifyVpcAttributeRequest < Struct.new(
  :enable_dns_hostnames,
  :enable_dns_support,
  :vpc_id)
  include Aws::Structure
end

#enable_dns_supportTypes::AttributeBooleanValue

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” will 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.



16959
16960
16961
16962
16963
16964
# File 'lib/aws-sdk-ec2/types.rb', line 16959

class ModifyVpcAttributeRequest < Struct.new(
  :enable_dns_hostnames,
  :enable_dns_support,
  :vpc_id)
  include Aws::Structure
end

#vpc_idString

The ID of the VPC.

Returns:

  • (String)


16959
16960
16961
16962
16963
16964
# File 'lib/aws-sdk-ec2/types.rb', line 16959

class ModifyVpcAttributeRequest < Struct.new(
  :enable_dns_hostnames,
  :enable_dns_support,
  :vpc_id)
  include Aws::Structure
end