#[non_exhaustive]pub struct ListCertificatesInput {
pub page_size: Option<i32>,
pub marker: Option<String>,
pub ascending_order: Option<bool>,
}Expand description
The input for the ListCertificates operation.
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.page_size: Option<i32>The result page size.
marker: Option<String>The marker for the next set of results.
ascending_order: Option<bool>Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.
Implementations§
source§impl ListCertificatesInput
impl ListCertificatesInput
sourcepub fn ascending_order(&self) -> Option<bool>
pub fn ascending_order(&self) -> Option<bool>
Specifies the order for results. If True, the results are returned in ascending order, based on the creation date.
source§impl ListCertificatesInput
impl ListCertificatesInput
sourcepub fn builder() -> ListCertificatesInputBuilder
pub fn builder() -> ListCertificatesInputBuilder
Creates a new builder-style object to manufacture ListCertificatesInput.
Trait Implementations§
source§impl Clone for ListCertificatesInput
impl Clone for ListCertificatesInput
source§fn clone(&self) -> ListCertificatesInput
fn clone(&self) -> ListCertificatesInput
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 ListCertificatesInput
impl Debug for ListCertificatesInput
source§impl PartialEq for ListCertificatesInput
impl PartialEq for ListCertificatesInput
source§fn eq(&self, other: &ListCertificatesInput) -> bool
fn eq(&self, other: &ListCertificatesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListCertificatesInput
Auto Trait Implementations§
impl RefUnwindSafe for ListCertificatesInput
impl Send for ListCertificatesInput
impl Sync for ListCertificatesInput
impl Unpin for ListCertificatesInput
impl UnwindSafe for ListCertificatesInput
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.