Struct aws_sdk_connect::operation::batch_associate_analytics_data_set::builders::BatchAssociateAnalyticsDataSetOutputBuilder
source · #[non_exhaustive]pub struct BatchAssociateAnalyticsDataSetOutputBuilder { /* private fields */ }
Expand description
A builder for BatchAssociateAnalyticsDataSetOutput
.
Implementations§
source§impl BatchAssociateAnalyticsDataSetOutputBuilder
impl BatchAssociateAnalyticsDataSetOutputBuilder
sourcepub fn created(self, input: AnalyticsDataAssociationResult) -> Self
pub fn created(self, input: AnalyticsDataAssociationResult) -> Self
Appends an item to created
.
To override the contents of this collection use set_created
.
Information about associations that are successfully created: DataSetId
, TargetAccountId
, ResourceShareId
, ResourceShareArn
.
sourcepub fn set_created(
self,
input: Option<Vec<AnalyticsDataAssociationResult>>
) -> Self
pub fn set_created( self, input: Option<Vec<AnalyticsDataAssociationResult>> ) -> Self
Information about associations that are successfully created: DataSetId
, TargetAccountId
, ResourceShareId
, ResourceShareArn
.
sourcepub fn get_created(&self) -> &Option<Vec<AnalyticsDataAssociationResult>>
pub fn get_created(&self) -> &Option<Vec<AnalyticsDataAssociationResult>>
Information about associations that are successfully created: DataSetId
, TargetAccountId
, ResourceShareId
, ResourceShareArn
.
sourcepub fn errors(self, input: ErrorResult) -> Self
pub fn errors(self, input: ErrorResult) -> Self
Appends an item to errors
.
To override the contents of this collection use set_errors
.
A list of errors for datasets that aren't successfully associated with the target account.
sourcepub fn set_errors(self, input: Option<Vec<ErrorResult>>) -> Self
pub fn set_errors(self, input: Option<Vec<ErrorResult>>) -> Self
A list of errors for datasets that aren't successfully associated with the target account.
sourcepub fn get_errors(&self) -> &Option<Vec<ErrorResult>>
pub fn get_errors(&self) -> &Option<Vec<ErrorResult>>
A list of errors for datasets that aren't successfully associated with the target account.
sourcepub fn build(self) -> BatchAssociateAnalyticsDataSetOutput
pub fn build(self) -> BatchAssociateAnalyticsDataSetOutput
Consumes the builder and constructs a BatchAssociateAnalyticsDataSetOutput
.
Trait Implementations§
source§impl Clone for BatchAssociateAnalyticsDataSetOutputBuilder
impl Clone for BatchAssociateAnalyticsDataSetOutputBuilder
source§fn clone(&self) -> BatchAssociateAnalyticsDataSetOutputBuilder
fn clone(&self) -> BatchAssociateAnalyticsDataSetOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for BatchAssociateAnalyticsDataSetOutputBuilder
impl Default for BatchAssociateAnalyticsDataSetOutputBuilder
source§fn default() -> BatchAssociateAnalyticsDataSetOutputBuilder
fn default() -> BatchAssociateAnalyticsDataSetOutputBuilder
source§impl PartialEq for BatchAssociateAnalyticsDataSetOutputBuilder
impl PartialEq for BatchAssociateAnalyticsDataSetOutputBuilder
source§fn eq(&self, other: &BatchAssociateAnalyticsDataSetOutputBuilder) -> bool
fn eq(&self, other: &BatchAssociateAnalyticsDataSetOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchAssociateAnalyticsDataSetOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchAssociateAnalyticsDataSetOutputBuilder
impl RefUnwindSafe for BatchAssociateAnalyticsDataSetOutputBuilder
impl Send for BatchAssociateAnalyticsDataSetOutputBuilder
impl Sync for BatchAssociateAnalyticsDataSetOutputBuilder
impl Unpin for BatchAssociateAnalyticsDataSetOutputBuilder
impl UnwindSafe for BatchAssociateAnalyticsDataSetOutputBuilder
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