Struct aws_sdk_ec2::input::ModifyVpcAttributeInput [−][src]
#[non_exhaustive]pub struct ModifyVpcAttributeInput {
pub enable_dns_hostnames: Option<AttributeBooleanValue>,
pub enable_dns_support: Option<AttributeBooleanValue>,
pub vpc_id: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.enable_dns_hostnames: Option<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: Option<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: Option<String>
The ID of the VPC.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyVpcAttribute, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyVpcAttribute, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyVpcAttribute
>
Creates a new builder-style object to manufacture ModifyVpcAttributeInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ModifyVpcAttributeInput
impl Send for ModifyVpcAttributeInput
impl Sync for ModifyVpcAttributeInput
impl Unpin for ModifyVpcAttributeInput
impl UnwindSafe for ModifyVpcAttributeInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more