Struct aws_sdk_connect::operation::replicate_instance::builders::ReplicateInstanceOutputBuilder
source · #[non_exhaustive]pub struct ReplicateInstanceOutputBuilder { /* private fields */ }
Expand description
A builder for ReplicateInstanceOutput
.
Implementations§
source§impl ReplicateInstanceOutputBuilder
impl ReplicateInstanceOutputBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The identifier of the replicated instance. You can find the instanceId
in the ARN of the instance. The replicated instance has the same identifier as the instance it was replicated from.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The identifier of the replicated instance. You can find the instanceId
in the ARN of the instance. The replicated instance has the same identifier as the instance it was replicated from.
sourcepub fn get_id(&self) -> &Option<String>
pub fn get_id(&self) -> &Option<String>
The identifier of the replicated instance. You can find the instanceId
in the ARN of the instance. The replicated instance has the same identifier as the instance it was replicated from.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the replicated instance.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the replicated instance.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the replicated instance.
sourcepub fn build(self) -> ReplicateInstanceOutput
pub fn build(self) -> ReplicateInstanceOutput
Consumes the builder and constructs a ReplicateInstanceOutput
.
Trait Implementations§
source§impl Clone for ReplicateInstanceOutputBuilder
impl Clone for ReplicateInstanceOutputBuilder
source§fn clone(&self) -> ReplicateInstanceOutputBuilder
fn clone(&self) -> ReplicateInstanceOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ReplicateInstanceOutputBuilder
impl Default for ReplicateInstanceOutputBuilder
source§fn default() -> ReplicateInstanceOutputBuilder
fn default() -> ReplicateInstanceOutputBuilder
source§impl PartialEq for ReplicateInstanceOutputBuilder
impl PartialEq for ReplicateInstanceOutputBuilder
source§fn eq(&self, other: &ReplicateInstanceOutputBuilder) -> bool
fn eq(&self, other: &ReplicateInstanceOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReplicateInstanceOutputBuilder
Auto Trait Implementations§
impl Freeze for ReplicateInstanceOutputBuilder
impl RefUnwindSafe for ReplicateInstanceOutputBuilder
impl Send for ReplicateInstanceOutputBuilder
impl Sync for ReplicateInstanceOutputBuilder
impl Unpin for ReplicateInstanceOutputBuilder
impl UnwindSafe for ReplicateInstanceOutputBuilder
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