#[non_exhaustive]pub struct DescribeVpcAttributeOutput {
pub vpc_id: Option<String>,
pub enable_dns_hostnames: Option<AttributeBooleanValue>,
pub enable_dns_support: Option<AttributeBooleanValue>,
pub enable_network_address_usage_metrics: Option<AttributeBooleanValue>,
/* private fields */
}
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.vpc_id: Option<String>
The ID of the VPC.
enable_dns_hostnames: Option<AttributeBooleanValue>
Indicates whether the instances launched in the VPC get DNS hostnames. If this attribute is true
, instances in the VPC get DNS hostnames; otherwise, they do not.
enable_dns_support: Option<AttributeBooleanValue>
Indicates whether DNS resolution is enabled for the VPC. If this attribute is true
, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.
enable_network_address_usage_metrics: Option<AttributeBooleanValue>
Indicates whether Network Address Usage metrics are enabled for your VPC.
Implementations§
source§impl DescribeVpcAttributeOutput
impl DescribeVpcAttributeOutput
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 this attribute is true
, instances in the VPC get DNS hostnames; otherwise, they do not.
sourcepub fn enable_dns_support(&self) -> Option<&AttributeBooleanValue>
pub fn enable_dns_support(&self) -> Option<&AttributeBooleanValue>
Indicates whether DNS resolution is enabled for the VPC. If this attribute is true
, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.
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 DescribeVpcAttributeOutput
impl DescribeVpcAttributeOutput
sourcepub fn builder() -> DescribeVpcAttributeOutputBuilder
pub fn builder() -> DescribeVpcAttributeOutputBuilder
Creates a new builder-style object to manufacture DescribeVpcAttributeOutput
.
Trait Implementations§
source§impl Clone for DescribeVpcAttributeOutput
impl Clone for DescribeVpcAttributeOutput
source§fn clone(&self) -> DescribeVpcAttributeOutput
fn clone(&self) -> DescribeVpcAttributeOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeVpcAttributeOutput
impl Debug for DescribeVpcAttributeOutput
source§impl PartialEq for DescribeVpcAttributeOutput
impl PartialEq for DescribeVpcAttributeOutput
source§fn eq(&self, other: &DescribeVpcAttributeOutput) -> bool
fn eq(&self, other: &DescribeVpcAttributeOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeVpcAttributeOutput
impl RequestId for DescribeVpcAttributeOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DescribeVpcAttributeOutput
Auto Trait Implementations§
impl Freeze for DescribeVpcAttributeOutput
impl RefUnwindSafe for DescribeVpcAttributeOutput
impl Send for DescribeVpcAttributeOutput
impl Sync for DescribeVpcAttributeOutput
impl Unpin for DescribeVpcAttributeOutput
impl UnwindSafe for DescribeVpcAttributeOutput
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