You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::EC2::Types::ModifyVpcAttributeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::ModifyVpcAttributeRequest
- Defined in:
- (unknown)
Overview
When passing ModifyVpcAttributeRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
enable_dns_hostnames: {
value: false,
},
enable_dns_support: {
value: false,
},
vpc_id: "VpcId", # required
}
Instance Attribute Summary collapse
-
#enable_dns_hostnames ⇒ Types::AttributeBooleanValue
Indicates whether the instances launched in the VPC get DNS hostnames.
-
#enable_dns_support ⇒ Types::AttributeBooleanValue
Indicates whether the DNS resolution is supported for the VPC.
-
#vpc_id ⇒ String
The ID of the VPC.
Instance Attribute Details
#enable_dns_hostnames ⇒ Types::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.
#enable_dns_support ⇒ Types::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\" 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.
#vpc_id ⇒ String
The ID of the VPC.