Struct aws_sdk_ec2::types::builders::AlternatePathHintBuilder
source · #[non_exhaustive]pub struct AlternatePathHintBuilder { /* private fields */ }
Expand description
A builder for AlternatePathHint
.
Implementations§
source§impl AlternatePathHintBuilder
impl AlternatePathHintBuilder
sourcepub fn component_id(self, input: impl Into<String>) -> Self
pub fn component_id(self, input: impl Into<String>) -> Self
The ID of the component.
sourcepub fn set_component_id(self, input: Option<String>) -> Self
pub fn set_component_id(self, input: Option<String>) -> Self
The ID of the component.
sourcepub fn get_component_id(&self) -> &Option<String>
pub fn get_component_id(&self) -> &Option<String>
The ID of the component.
sourcepub fn component_arn(self, input: impl Into<String>) -> Self
pub fn component_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the component.
sourcepub fn set_component_arn(self, input: Option<String>) -> Self
pub fn set_component_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the component.
sourcepub fn get_component_arn(&self) -> &Option<String>
pub fn get_component_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the component.
sourcepub fn build(self) -> AlternatePathHint
pub fn build(self) -> AlternatePathHint
Consumes the builder and constructs a AlternatePathHint
.
Trait Implementations§
source§impl Clone for AlternatePathHintBuilder
impl Clone for AlternatePathHintBuilder
source§fn clone(&self) -> AlternatePathHintBuilder
fn clone(&self) -> AlternatePathHintBuilder
Returns a copy 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 AlternatePathHintBuilder
impl Debug for AlternatePathHintBuilder
source§impl Default for AlternatePathHintBuilder
impl Default for AlternatePathHintBuilder
source§fn default() -> AlternatePathHintBuilder
fn default() -> AlternatePathHintBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AlternatePathHintBuilder
impl PartialEq for AlternatePathHintBuilder
source§fn eq(&self, other: &AlternatePathHintBuilder) -> bool
fn eq(&self, other: &AlternatePathHintBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AlternatePathHintBuilder
Auto Trait Implementations§
impl Freeze for AlternatePathHintBuilder
impl RefUnwindSafe for AlternatePathHintBuilder
impl Send for AlternatePathHintBuilder
impl Sync for AlternatePathHintBuilder
impl Unpin for AlternatePathHintBuilder
impl UnwindSafe for AlternatePathHintBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.