#[non_exhaustive]pub struct ListLayerVersionsInput {
pub compatible_runtime: Option<Runtime>,
pub layer_name: Option<String>,
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, go1.x
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
layer_name: Option<String>
The name or Amazon Resource Name (ARN) of the layer.
marker: Option<String>
A pagination token returned by a previous call.
max_items: Option<i32>
The maximum number of versions to return.
compatible_architecture: Option<Architecture>
The compatible instruction set architecture.
Implementations§
source§impl ListLayerVersionsInput
impl ListLayerVersionsInput
sourcepub fn compatible_runtime(&self) -> Option<&Runtime>
pub fn compatible_runtime(&self) -> Option<&Runtime>
A runtime identifier. For example, go1.x
.
The following list includes deprecated runtimes. For more information, see Runtime deprecation policy.
sourcepub fn layer_name(&self) -> Option<&str>
pub fn layer_name(&self) -> Option<&str>
The name or Amazon Resource Name (ARN) of the layer.
sourcepub fn compatible_architecture(&self) -> Option<&Architecture>
pub fn compatible_architecture(&self) -> Option<&Architecture>
The compatible instruction set architecture.
source§impl ListLayerVersionsInput
impl ListLayerVersionsInput
sourcepub fn builder() -> ListLayerVersionsInputBuilder
pub fn builder() -> ListLayerVersionsInputBuilder
Creates a new builder-style object to manufacture ListLayerVersionsInput
.
Trait Implementations§
source§impl Clone for ListLayerVersionsInput
impl Clone for ListLayerVersionsInput
source§fn clone(&self) -> ListLayerVersionsInput
fn clone(&self) -> ListLayerVersionsInput
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 ListLayerVersionsInput
impl Debug for ListLayerVersionsInput
source§impl PartialEq for ListLayerVersionsInput
impl PartialEq for ListLayerVersionsInput
source§fn eq(&self, other: &ListLayerVersionsInput) -> bool
fn eq(&self, other: &ListLayerVersionsInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListLayerVersionsInput
Auto Trait Implementations§
impl RefUnwindSafe for ListLayerVersionsInput
impl Send for ListLayerVersionsInput
impl Sync for ListLayerVersionsInput
impl Unpin for ListLayerVersionsInput
impl UnwindSafe for ListLayerVersionsInput
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.