Struct aws_sdk_glue::operation::batch_get_dev_endpoints::builders::BatchGetDevEndpointsOutputBuilder
source · #[non_exhaustive]pub struct BatchGetDevEndpointsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetDevEndpointsOutput
.
Implementations§
source§impl BatchGetDevEndpointsOutputBuilder
impl BatchGetDevEndpointsOutputBuilder
sourcepub fn dev_endpoints(self, input: DevEndpoint) -> Self
pub fn dev_endpoints(self, input: DevEndpoint) -> Self
Appends an item to dev_endpoints
.
To override the contents of this collection use set_dev_endpoints
.
A list of DevEndpoint
definitions.
sourcepub fn set_dev_endpoints(self, input: Option<Vec<DevEndpoint>>) -> Self
pub fn set_dev_endpoints(self, input: Option<Vec<DevEndpoint>>) -> Self
A list of DevEndpoint
definitions.
sourcepub fn get_dev_endpoints(&self) -> &Option<Vec<DevEndpoint>>
pub fn get_dev_endpoints(&self) -> &Option<Vec<DevEndpoint>>
A list of DevEndpoint
definitions.
sourcepub fn dev_endpoints_not_found(self, input: impl Into<String>) -> Self
pub fn dev_endpoints_not_found(self, input: impl Into<String>) -> Self
Appends an item to dev_endpoints_not_found
.
To override the contents of this collection use set_dev_endpoints_not_found
.
A list of DevEndpoints
not found.
sourcepub fn set_dev_endpoints_not_found(self, input: Option<Vec<String>>) -> Self
pub fn set_dev_endpoints_not_found(self, input: Option<Vec<String>>) -> Self
A list of DevEndpoints
not found.
sourcepub fn get_dev_endpoints_not_found(&self) -> &Option<Vec<String>>
pub fn get_dev_endpoints_not_found(&self) -> &Option<Vec<String>>
A list of DevEndpoints
not found.
sourcepub fn build(self) -> BatchGetDevEndpointsOutput
pub fn build(self) -> BatchGetDevEndpointsOutput
Consumes the builder and constructs a BatchGetDevEndpointsOutput
.
Trait Implementations§
source§impl Clone for BatchGetDevEndpointsOutputBuilder
impl Clone for BatchGetDevEndpointsOutputBuilder
source§fn clone(&self) -> BatchGetDevEndpointsOutputBuilder
fn clone(&self) -> BatchGetDevEndpointsOutputBuilder
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 BatchGetDevEndpointsOutputBuilder
impl Default for BatchGetDevEndpointsOutputBuilder
source§fn default() -> BatchGetDevEndpointsOutputBuilder
fn default() -> BatchGetDevEndpointsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetDevEndpointsOutputBuilder
impl PartialEq for BatchGetDevEndpointsOutputBuilder
source§fn eq(&self, other: &BatchGetDevEndpointsOutputBuilder) -> bool
fn eq(&self, other: &BatchGetDevEndpointsOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetDevEndpointsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetDevEndpointsOutputBuilder
impl RefUnwindSafe for BatchGetDevEndpointsOutputBuilder
impl Send for BatchGetDevEndpointsOutputBuilder
impl Sync for BatchGetDevEndpointsOutputBuilder
impl Unpin for BatchGetDevEndpointsOutputBuilder
impl UnwindSafe for BatchGetDevEndpointsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.