Struct aws_sdk_glue::operation::batch_delete_connection::builders::BatchDeleteConnectionOutputBuilder
source · #[non_exhaustive]pub struct BatchDeleteConnectionOutputBuilder { /* private fields */ }Expand description
A builder for BatchDeleteConnectionOutput.
Implementations§
source§impl BatchDeleteConnectionOutputBuilder
impl BatchDeleteConnectionOutputBuilder
sourcepub fn succeeded(self, input: impl Into<String>) -> Self
pub fn succeeded(self, input: impl Into<String>) -> Self
Appends an item to succeeded.
To override the contents of this collection use set_succeeded.
A list of names of the connection definitions that were successfully deleted.
sourcepub fn set_succeeded(self, input: Option<Vec<String>>) -> Self
pub fn set_succeeded(self, input: Option<Vec<String>>) -> Self
A list of names of the connection definitions that were successfully deleted.
sourcepub fn get_succeeded(&self) -> &Option<Vec<String>>
pub fn get_succeeded(&self) -> &Option<Vec<String>>
A list of names of the connection definitions that were successfully deleted.
sourcepub fn errors(self, k: impl Into<String>, v: ErrorDetail) -> Self
pub fn errors(self, k: impl Into<String>, v: ErrorDetail) -> Self
Adds a key-value pair to errors.
To override the contents of this collection use set_errors.
A map of the names of connections that were not successfully deleted to error details.
sourcepub fn set_errors(self, input: Option<HashMap<String, ErrorDetail>>) -> Self
pub fn set_errors(self, input: Option<HashMap<String, ErrorDetail>>) -> Self
A map of the names of connections that were not successfully deleted to error details.
sourcepub fn get_errors(&self) -> &Option<HashMap<String, ErrorDetail>>
pub fn get_errors(&self) -> &Option<HashMap<String, ErrorDetail>>
A map of the names of connections that were not successfully deleted to error details.
sourcepub fn build(self) -> BatchDeleteConnectionOutput
pub fn build(self) -> BatchDeleteConnectionOutput
Consumes the builder and constructs a BatchDeleteConnectionOutput.
Trait Implementations§
source§impl Clone for BatchDeleteConnectionOutputBuilder
impl Clone for BatchDeleteConnectionOutputBuilder
source§fn clone(&self) -> BatchDeleteConnectionOutputBuilder
fn clone(&self) -> BatchDeleteConnectionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for BatchDeleteConnectionOutputBuilder
impl Default for BatchDeleteConnectionOutputBuilder
source§fn default() -> BatchDeleteConnectionOutputBuilder
fn default() -> BatchDeleteConnectionOutputBuilder
source§impl PartialEq for BatchDeleteConnectionOutputBuilder
impl PartialEq for BatchDeleteConnectionOutputBuilder
source§fn eq(&self, other: &BatchDeleteConnectionOutputBuilder) -> bool
fn eq(&self, other: &BatchDeleteConnectionOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchDeleteConnectionOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchDeleteConnectionOutputBuilder
impl RefUnwindSafe for BatchDeleteConnectionOutputBuilder
impl Send for BatchDeleteConnectionOutputBuilder
impl Sync for BatchDeleteConnectionOutputBuilder
impl Unpin for BatchDeleteConnectionOutputBuilder
impl UnwindSafe for BatchDeleteConnectionOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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