paws.compute (version 0.1.0)

ec2_modify_vpc_attribute: Modifies the specified attribute of the specified VPC

Description

Modifies the specified attribute of the specified VPC.

Usage

ec2_modify_vpc_attribute(EnableDnsHostnames, EnableDnsSupport, VpcId)

Arguments

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.

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.

VpcId

[required] The ID of the VPC.

Request syntax

svc$modify_vpc_attribute(
  EnableDnsHostnames = list(
    Value = TRUE|FALSE
  ),
  EnableDnsSupport = list(
    Value = TRUE|FALSE
  ),
  VpcId = "string"
)

Examples

Run this code
# NOT RUN {
# 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.
# }
# NOT RUN {
svc$modify_vpc_attribute(
  EnableDnsSupport = list(
    Value = FALSE
  ),
  VpcId = "vpc-a01106c2"
)
# }
# NOT RUN {
# 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.
# }
# NOT RUN {
svc$modify_vpc_attribute(
  EnableDnsHostnames = list(
    Value = FALSE
  ),
  VpcId = "vpc-a01106c2"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab