Struct aws_sdk_connect::types::builders::QuickConnectBuilder
source · #[non_exhaustive]pub struct QuickConnectBuilder { /* private fields */ }
Expand description
A builder for QuickConnect
.
Implementations§
source§impl QuickConnectBuilder
impl QuickConnectBuilder
sourcepub fn quick_connect_arn(self, input: impl Into<String>) -> Self
pub fn quick_connect_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the quick connect.
sourcepub fn set_quick_connect_arn(self, input: Option<String>) -> Self
pub fn set_quick_connect_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the quick connect.
sourcepub fn get_quick_connect_arn(&self) -> &Option<String>
pub fn get_quick_connect_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the quick connect.
sourcepub fn quick_connect_id(self, input: impl Into<String>) -> Self
pub fn quick_connect_id(self, input: impl Into<String>) -> Self
The identifier for the quick connect.
sourcepub fn set_quick_connect_id(self, input: Option<String>) -> Self
pub fn set_quick_connect_id(self, input: Option<String>) -> Self
The identifier for the quick connect.
sourcepub fn get_quick_connect_id(&self) -> &Option<String>
pub fn get_quick_connect_id(&self) -> &Option<String>
The identifier for the quick connect.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description.
sourcepub fn quick_connect_config(self, input: QuickConnectConfig) -> Self
pub fn quick_connect_config(self, input: QuickConnectConfig) -> Self
Contains information about the quick connect.
sourcepub fn set_quick_connect_config(self, input: Option<QuickConnectConfig>) -> Self
pub fn set_quick_connect_config(self, input: Option<QuickConnectConfig>) -> Self
Contains information about the quick connect.
sourcepub fn get_quick_connect_config(&self) -> &Option<QuickConnectConfig>
pub fn get_quick_connect_config(&self) -> &Option<QuickConnectConfig>
Contains information about the quick connect.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
sourcepub fn last_modified_time(self, input: DateTime) -> Self
pub fn last_modified_time(self, input: DateTime) -> Self
The timestamp when this resource was last modified.
sourcepub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_time(self, input: Option<DateTime>) -> Self
The timestamp when this resource was last modified.
sourcepub fn get_last_modified_time(&self) -> &Option<DateTime>
pub fn get_last_modified_time(&self) -> &Option<DateTime>
The timestamp when this resource was last modified.
sourcepub fn last_modified_region(self, input: impl Into<String>) -> Self
pub fn last_modified_region(self, input: impl Into<String>) -> Self
The Amazon Web Services Region where this resource was last modified.
sourcepub fn set_last_modified_region(self, input: Option<String>) -> Self
pub fn set_last_modified_region(self, input: Option<String>) -> Self
The Amazon Web Services Region where this resource was last modified.
sourcepub fn get_last_modified_region(&self) -> &Option<String>
pub fn get_last_modified_region(&self) -> &Option<String>
The Amazon Web Services Region where this resource was last modified.
sourcepub fn build(self) -> QuickConnect
pub fn build(self) -> QuickConnect
Consumes the builder and constructs a QuickConnect
.
Trait Implementations§
source§impl Clone for QuickConnectBuilder
impl Clone for QuickConnectBuilder
source§fn clone(&self) -> QuickConnectBuilder
fn clone(&self) -> QuickConnectBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for QuickConnectBuilder
impl Debug for QuickConnectBuilder
source§impl Default for QuickConnectBuilder
impl Default for QuickConnectBuilder
source§fn default() -> QuickConnectBuilder
fn default() -> QuickConnectBuilder
source§impl PartialEq for QuickConnectBuilder
impl PartialEq for QuickConnectBuilder
source§fn eq(&self, other: &QuickConnectBuilder) -> bool
fn eq(&self, other: &QuickConnectBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for QuickConnectBuilder
Auto Trait Implementations§
impl Freeze for QuickConnectBuilder
impl RefUnwindSafe for QuickConnectBuilder
impl Send for QuickConnectBuilder
impl Sync for QuickConnectBuilder
impl Unpin for QuickConnectBuilder
impl UnwindSafe for QuickConnectBuilder
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