#[non_exhaustive]pub struct ListLayersInputBuilder { /* private fields */ }
Expand description
A builder for ListLayersInput
.
Implementations§
source§impl ListLayersInputBuilder
impl ListLayersInputBuilder
sourcepub fn compatible_runtime(self, input: Runtime) -> Self
pub fn compatible_runtime(self, input: Runtime) -> Self
A runtime identifier. For example, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
sourcepub fn set_compatible_runtime(self, input: Option<Runtime>) -> Self
pub fn set_compatible_runtime(self, input: Option<Runtime>) -> Self
A runtime identifier. For example, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
sourcepub fn get_compatible_runtime(&self) -> &Option<Runtime>
pub fn get_compatible_runtime(&self) -> &Option<Runtime>
A runtime identifier. For example, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
A pagination token returned by a previous call.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
A pagination token returned by a previous call.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &Option<String>
A pagination token returned by a previous call.
sourcepub fn set_max_items(self, input: Option<i32>) -> Self
pub fn set_max_items(self, input: Option<i32>) -> Self
The maximum number of layers to return.
sourcepub fn get_max_items(&self) -> &Option<i32>
pub fn get_max_items(&self) -> &Option<i32>
The maximum number of layers to return.
sourcepub fn compatible_architecture(self, input: Architecture) -> Self
pub fn compatible_architecture(self, input: Architecture) -> Self
The compatible instruction set architecture.
sourcepub fn set_compatible_architecture(self, input: Option<Architecture>) -> Self
pub fn set_compatible_architecture(self, input: Option<Architecture>) -> Self
The compatible instruction set architecture.
sourcepub fn get_compatible_architecture(&self) -> &Option<Architecture>
pub fn get_compatible_architecture(&self) -> &Option<Architecture>
The compatible instruction set architecture.
sourcepub fn build(self) -> Result<ListLayersInput, BuildError>
pub fn build(self) -> Result<ListLayersInput, BuildError>
Consumes the builder and constructs a ListLayersInput
.
source§impl ListLayersInputBuilder
impl ListLayersInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListLayersOutput, SdkError<ListLayersError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListLayersOutput, SdkError<ListLayersError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListLayersInputBuilder
impl Clone for ListLayersInputBuilder
source§fn clone(&self) -> ListLayersInputBuilder
fn clone(&self) -> ListLayersInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListLayersInputBuilder
impl Debug for ListLayersInputBuilder
source§impl Default for ListLayersInputBuilder
impl Default for ListLayersInputBuilder
source§fn default() -> ListLayersInputBuilder
fn default() -> ListLayersInputBuilder
source§impl PartialEq for ListLayersInputBuilder
impl PartialEq for ListLayersInputBuilder
source§fn eq(&self, other: &ListLayersInputBuilder) -> bool
fn eq(&self, other: &ListLayersInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListLayersInputBuilder
Auto Trait Implementations§
impl Freeze for ListLayersInputBuilder
impl RefUnwindSafe for ListLayersInputBuilder
impl Send for ListLayersInputBuilder
impl Sync for ListLayersInputBuilder
impl Unpin for ListLayersInputBuilder
impl UnwindSafe for ListLayersInputBuilder
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