pub struct DescribeVpcAttributeResult {
pub enable_dns_hostnames: Option<AttributeBooleanValue>,
pub enable_dns_support: Option<AttributeBooleanValue>,
pub vpc_id: Option<String>,
}Fields§
§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.
vpc_id: Option<String>The ID of the VPC.
Trait Implementations§
Source§impl Clone for DescribeVpcAttributeResult
impl Clone for DescribeVpcAttributeResult
Source§fn clone(&self) -> DescribeVpcAttributeResult
fn clone(&self) -> DescribeVpcAttributeResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DescribeVpcAttributeResult
impl Debug for DescribeVpcAttributeResult
Source§impl Default for DescribeVpcAttributeResult
impl Default for DescribeVpcAttributeResult
Source§fn default() -> DescribeVpcAttributeResult
fn default() -> DescribeVpcAttributeResult
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DescribeVpcAttributeResult
Auto Trait Implementations§
impl Freeze for DescribeVpcAttributeResult
impl RefUnwindSafe for DescribeVpcAttributeResult
impl Send for DescribeVpcAttributeResult
impl Sync for DescribeVpcAttributeResult
impl Unpin for DescribeVpcAttributeResult
impl UnwindSafe for DescribeVpcAttributeResult
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
Mutably borrows from an owned value. Read more