Struct aws_sdk_connect::operation::batch_disassociate_analytics_data_set::BatchDisassociateAnalyticsDataSetInput
source · #[non_exhaustive]pub struct BatchDisassociateAnalyticsDataSetInput {
pub instance_id: Option<String>,
pub data_set_ids: Option<Vec<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_ids: Option<Vec<String>>
An array of associated dataset identifiers to remove.
target_account_id: Option<String>
The identifier of the target account. Use to disassociate a dataset from 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 BatchDisassociateAnalyticsDataSetInput
impl BatchDisassociateAnalyticsDataSetInput
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_ids(&self) -> &[String]
pub fn data_set_ids(&self) -> &[String]
An array of associated dataset identifiers to remove.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .data_set_ids.is_none()
.
sourcepub fn target_account_id(&self) -> Option<&str>
pub fn target_account_id(&self) -> Option<&str>
The identifier of the target account. Use to disassociate a dataset from 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 BatchDisassociateAnalyticsDataSetInput
impl BatchDisassociateAnalyticsDataSetInput
sourcepub fn builder() -> BatchDisassociateAnalyticsDataSetInputBuilder
pub fn builder() -> BatchDisassociateAnalyticsDataSetInputBuilder
Creates a new builder-style object to manufacture BatchDisassociateAnalyticsDataSetInput
.
Trait Implementations§
source§impl Clone for BatchDisassociateAnalyticsDataSetInput
impl Clone for BatchDisassociateAnalyticsDataSetInput
source§fn clone(&self) -> BatchDisassociateAnalyticsDataSetInput
fn clone(&self) -> BatchDisassociateAnalyticsDataSetInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for BatchDisassociateAnalyticsDataSetInput
impl PartialEq for BatchDisassociateAnalyticsDataSetInput
source§fn eq(&self, other: &BatchDisassociateAnalyticsDataSetInput) -> bool
fn eq(&self, other: &BatchDisassociateAnalyticsDataSetInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchDisassociateAnalyticsDataSetInput
Auto Trait Implementations§
impl Freeze for BatchDisassociateAnalyticsDataSetInput
impl RefUnwindSafe for BatchDisassociateAnalyticsDataSetInput
impl Send for BatchDisassociateAnalyticsDataSetInput
impl Sync for BatchDisassociateAnalyticsDataSetInput
impl Unpin for BatchDisassociateAnalyticsDataSetInput
impl UnwindSafe for BatchDisassociateAnalyticsDataSetInput
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