Struct aws_sdk_lambda::operation::list_layers::ListLayersInput
source · #[non_exhaustive]pub struct ListLayersInput {
pub compatible_runtime: Option<Runtime>,
pub marker: Option<String>,
pub max_items: Option<i32>,
pub compatible_architecture: Option<Architecture>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.compatible_runtime: Option<Runtime>
A runtime identifier. For example, java21
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
marker: Option<String>
A pagination token returned by a previous call.
max_items: Option<i32>
The maximum number of layers to return.
compatible_architecture: Option<Architecture>
The compatible instruction set architecture.
Implementations§
source§impl ListLayersInput
impl ListLayersInput
sourcepub fn compatible_runtime(&self) -> Option<&Runtime>
pub fn 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 compatible_architecture(&self) -> Option<&Architecture>
pub fn compatible_architecture(&self) -> Option<&Architecture>
The compatible instruction set architecture.
source§impl ListLayersInput
impl ListLayersInput
sourcepub fn builder() -> ListLayersInputBuilder
pub fn builder() -> ListLayersInputBuilder
Creates a new builder-style object to manufacture ListLayersInput
.
Trait Implementations§
source§impl Clone for ListLayersInput
impl Clone for ListLayersInput
source§fn clone(&self) -> ListLayersInput
fn clone(&self) -> ListLayersInput
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 Debug for ListLayersInput
impl Debug for ListLayersInput
source§impl PartialEq for ListLayersInput
impl PartialEq for ListLayersInput
source§fn eq(&self, other: &ListLayersInput) -> bool
fn eq(&self, other: &ListLayersInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListLayersInput
Auto Trait Implementations§
impl Freeze for ListLayersInput
impl RefUnwindSafe for ListLayersInput
impl Send for ListLayersInput
impl Sync for ListLayersInput
impl Unpin for ListLayersInput
impl UnwindSafe for ListLayersInput
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>
Creates a shared type from an unshared type.