Struct aws_sdk_ec2::input::ModifyVpcAttributeInput
source · [−]#[non_exhaustive]pub struct ModifyVpcAttributeInput { /* private fields */ }
Implementations
sourceimpl ModifyVpcAttributeInput
impl ModifyVpcAttributeInput
sourcepub 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
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyVpcAttributeInput
.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for ModifyVpcAttributeInput
impl Clone for ModifyVpcAttributeInput
sourcefn clone(&self) -> ModifyVpcAttributeInput
fn clone(&self) -> ModifyVpcAttributeInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ModifyVpcAttributeInput
impl Debug for ModifyVpcAttributeInput
sourceimpl PartialEq<ModifyVpcAttributeInput> for ModifyVpcAttributeInput
impl PartialEq<ModifyVpcAttributeInput> for ModifyVpcAttributeInput
sourcefn eq(&self, other: &ModifyVpcAttributeInput) -> bool
fn eq(&self, other: &ModifyVpcAttributeInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ModifyVpcAttributeInput
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more