Struct aws_sdk_connect::operation::associate_analytics_data_set::AssociateAnalyticsDataSetInput
source · #[non_exhaustive]pub struct AssociateAnalyticsDataSetInput {
pub instance_id: Option<String>,
pub data_set_id: Option<String>,
pub target_account_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.instance_id: Option<String>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
data_set_id: Option<String>
The identifier of the dataset to associate with the target account.
target_account_id: Option<String>
The identifier of the target account. Use to associate a dataset to a different account than the one containing the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.
Implementations§
source§impl AssociateAnalyticsDataSetInput
impl AssociateAnalyticsDataSetInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn data_set_id(&self) -> Option<&str>
pub fn data_set_id(&self) -> Option<&str>
The identifier of the dataset to associate with the target account.
sourcepub fn target_account_id(&self) -> Option<&str>
pub fn target_account_id(&self) -> Option<&str>
The identifier of the target account. Use to associate a dataset to a different account than the one containing the Amazon Connect instance. If not specified, by default this value is the Amazon Web Services account that has the Amazon Connect instance.
source§impl AssociateAnalyticsDataSetInput
impl AssociateAnalyticsDataSetInput
sourcepub fn builder() -> AssociateAnalyticsDataSetInputBuilder
pub fn builder() -> AssociateAnalyticsDataSetInputBuilder
Creates a new builder-style object to manufacture AssociateAnalyticsDataSetInput
.
Trait Implementations§
source§impl Clone for AssociateAnalyticsDataSetInput
impl Clone for AssociateAnalyticsDataSetInput
source§fn clone(&self) -> AssociateAnalyticsDataSetInput
fn clone(&self) -> AssociateAnalyticsDataSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for AssociateAnalyticsDataSetInput
impl PartialEq for AssociateAnalyticsDataSetInput
source§fn eq(&self, other: &AssociateAnalyticsDataSetInput) -> bool
fn eq(&self, other: &AssociateAnalyticsDataSetInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AssociateAnalyticsDataSetInput
Auto Trait Implementations§
impl Freeze for AssociateAnalyticsDataSetInput
impl RefUnwindSafe for AssociateAnalyticsDataSetInput
impl Send for AssociateAnalyticsDataSetInput
impl Sync for AssociateAnalyticsDataSetInput
impl Unpin for AssociateAnalyticsDataSetInput
impl UnwindSafe for AssociateAnalyticsDataSetInput
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