Struct rusoto_acm::ListCertificatesRequest[][src]

pub struct ListCertificatesRequest {
    pub certificate_statuses: Option<Vec<String>>,
    pub includes: Option<Filters>,
    pub max_items: Option<i64>,
    pub next_token: Option<String>,
}

Fields

Filter the certificate list by status value.

Filter the certificate list. For more information, see the Filters structure.

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.

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.

Trait Implementations

impl Default for ListCertificatesRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for ListCertificatesRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ListCertificatesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListCertificatesRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations