#[non_exhaustive]pub struct ModifyVpcAttributeInput {
pub enable_dns_hostnames: Option<AttributeBooleanValue>,
pub enable_dns_support: Option<AttributeBooleanValue>,
pub vpc_id: Option<String>,
pub enable_network_address_usage_metrics: Option<AttributeBooleanValue>,
}
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.
enable_network_address_usage_metrics: Option<AttributeBooleanValue>
Indicates whether Network Address Usage metrics are enabled for your VPC.
Implementations§
source§impl ModifyVpcAttributeInput
impl ModifyVpcAttributeInput
sourcepub fn enable_dns_hostnames(&self) -> Option<&AttributeBooleanValue>
pub fn enable_dns_hostnames(&self) -> 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.
sourcepub fn enable_dns_support(&self) -> Option<&AttributeBooleanValue>
pub fn enable_dns_support(&self) -> 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.
sourcepub fn enable_network_address_usage_metrics(
&self,
) -> Option<&AttributeBooleanValue>
pub fn enable_network_address_usage_metrics( &self, ) -> Option<&AttributeBooleanValue>
Indicates whether Network Address Usage metrics are enabled for your VPC.
source§impl ModifyVpcAttributeInput
impl ModifyVpcAttributeInput
sourcepub fn builder() -> ModifyVpcAttributeInputBuilder
pub fn builder() -> ModifyVpcAttributeInputBuilder
Creates a new builder-style object to manufacture ModifyVpcAttributeInput
.
Trait Implementations§
source§impl Clone for ModifyVpcAttributeInput
impl Clone for ModifyVpcAttributeInput
source§fn clone(&self) -> ModifyVpcAttributeInput
fn clone(&self) -> ModifyVpcAttributeInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ModifyVpcAttributeInput
impl Debug for ModifyVpcAttributeInput
source§impl PartialEq for ModifyVpcAttributeInput
impl PartialEq for ModifyVpcAttributeInput
source§fn eq(&self, other: &ModifyVpcAttributeInput) -> bool
fn eq(&self, other: &ModifyVpcAttributeInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ModifyVpcAttributeInput
Auto Trait Implementations§
impl Freeze for ModifyVpcAttributeInput
impl RefUnwindSafe for ModifyVpcAttributeInput
impl Send for ModifyVpcAttributeInput
impl Sync for ModifyVpcAttributeInput
impl Unpin for ModifyVpcAttributeInput
impl UnwindSafe for ModifyVpcAttributeInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more