#[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 ==
.