#[non_exhaustive]pub struct ListCertificatesInput { /* private fields */ }Implementations§
source§impl ListCertificatesInput
impl ListCertificatesInput
sourcepub fn certificate_statuses(&self) -> Option<&[CertificateStatus]>
pub fn certificate_statuses(&self) -> Option<&[CertificateStatus]>
Filter the certificate list by status value.
sourcepub fn includes(&self) -> Option<&Filters>
pub fn includes(&self) -> Option<&Filters>
Filter the certificate list. For more information, see the Filters structure.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
Use this parameter only when paginating results and only in a subsequent request after you receive a response with truncated results. Set it to the value of NextToken from the response you just received.
sourcepub fn max_items(&self) -> Option<i32>
pub fn max_items(&self) -> Option<i32>
Use this parameter when paginating results to specify the maximum number of items to return in the response. If additional items exist beyond the number you specify, the NextToken element is sent in the response. Use this NextToken value in a subsequent request to retrieve additional items.
sourcepub fn sort_by(&self) -> Option<&SortBy>
pub fn sort_by(&self) -> Option<&SortBy>
Specifies the field to sort results by. If you specify SortBy, you must also specify SortOrder.
sourcepub fn sort_order(&self) -> Option<&SortOrder>
pub fn sort_order(&self) -> Option<&SortOrder>
Specifies the order of sorted results. If you specify SortOrder, you must also specify SortBy.
source§impl ListCertificatesInput
impl ListCertificatesInput
sourcepub fn builder() -> ListCertificatesInputBuilder
pub fn builder() -> ListCertificatesInputBuilder
Creates a new builder-style object to manufacture ListCertificatesInput.
source§impl ListCertificatesInput
impl ListCertificatesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCertificates, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListCertificates, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListCertificates>
Trait Implementations§
source§impl Clone for ListCertificatesInput
impl Clone for ListCertificatesInput
source§fn clone(&self) -> ListCertificatesInput
fn clone(&self) -> ListCertificatesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCertificatesInput
impl Debug for ListCertificatesInput
source§impl PartialEq<ListCertificatesInput> for ListCertificatesInput
impl PartialEq<ListCertificatesInput> for ListCertificatesInput
source§fn eq(&self, other: &ListCertificatesInput) -> bool
fn eq(&self, other: &ListCertificatesInput) -> bool
self and other values to be equal, and is used
by ==.