Struct aws_sdk_rum::operation::batch_delete_rum_metric_definitions::builders::BatchDeleteRumMetricDefinitionsOutputBuilder
source · #[non_exhaustive]pub struct BatchDeleteRumMetricDefinitionsOutputBuilder { /* private fields */ }Expand description
A builder for BatchDeleteRumMetricDefinitionsOutput.
Implementations§
source§impl BatchDeleteRumMetricDefinitionsOutputBuilder
impl BatchDeleteRumMetricDefinitionsOutputBuilder
sourcepub fn errors(self, input: BatchDeleteRumMetricDefinitionsError) -> Self
pub fn errors(self, input: BatchDeleteRumMetricDefinitionsError) -> Self
Appends an item to errors.
To override the contents of this collection use set_errors.
An array of error objects, if the operation caused any errors.
sourcepub fn set_errors(
self,
input: Option<Vec<BatchDeleteRumMetricDefinitionsError>>
) -> Self
pub fn set_errors( self, input: Option<Vec<BatchDeleteRumMetricDefinitionsError>> ) -> Self
An array of error objects, if the operation caused any errors.
sourcepub fn get_errors(&self) -> &Option<Vec<BatchDeleteRumMetricDefinitionsError>>
pub fn get_errors(&self) -> &Option<Vec<BatchDeleteRumMetricDefinitionsError>>
An array of error objects, if the operation caused any errors.
sourcepub fn metric_definition_ids(self, input: impl Into<String>) -> Self
pub fn metric_definition_ids(self, input: impl Into<String>) -> Self
Appends an item to metric_definition_ids.
To override the contents of this collection use set_metric_definition_ids.
The IDs of the metric definitions that were deleted.
sourcepub fn set_metric_definition_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_metric_definition_ids(self, input: Option<Vec<String>>) -> Self
The IDs of the metric definitions that were deleted.
sourcepub fn get_metric_definition_ids(&self) -> &Option<Vec<String>>
pub fn get_metric_definition_ids(&self) -> &Option<Vec<String>>
The IDs of the metric definitions that were deleted.
sourcepub fn build(self) -> Result<BatchDeleteRumMetricDefinitionsOutput, BuildError>
pub fn build(self) -> Result<BatchDeleteRumMetricDefinitionsOutput, BuildError>
Consumes the builder and constructs a BatchDeleteRumMetricDefinitionsOutput.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for BatchDeleteRumMetricDefinitionsOutputBuilder
impl Clone for BatchDeleteRumMetricDefinitionsOutputBuilder
source§fn clone(&self) -> BatchDeleteRumMetricDefinitionsOutputBuilder
fn clone(&self) -> BatchDeleteRumMetricDefinitionsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Default for BatchDeleteRumMetricDefinitionsOutputBuilder
impl Default for BatchDeleteRumMetricDefinitionsOutputBuilder
source§fn default() -> BatchDeleteRumMetricDefinitionsOutputBuilder
fn default() -> BatchDeleteRumMetricDefinitionsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchDeleteRumMetricDefinitionsOutputBuilder
impl PartialEq for BatchDeleteRumMetricDefinitionsOutputBuilder
source§fn eq(&self, other: &BatchDeleteRumMetricDefinitionsOutputBuilder) -> bool
fn eq(&self, other: &BatchDeleteRumMetricDefinitionsOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchDeleteRumMetricDefinitionsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchDeleteRumMetricDefinitionsOutputBuilder
impl RefUnwindSafe for BatchDeleteRumMetricDefinitionsOutputBuilder
impl Send for BatchDeleteRumMetricDefinitionsOutputBuilder
impl Sync for BatchDeleteRumMetricDefinitionsOutputBuilder
impl Unpin for BatchDeleteRumMetricDefinitionsOutputBuilder
impl UnwindSafe for BatchDeleteRumMetricDefinitionsOutputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.