pub struct ListCertificatesRequest {
pub certificate_statuses: Option<Vec<String>>,
pub includes: Option<Filters>,
pub max_items: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§certificate_statuses: Option<Vec<String>>
Filter the certificate list by status value.
includes: Option<Filters>
Filter the certificate list. For more information, see the Filters structure.
max_items: Option<i64>
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.
next_token: Option<String>
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§
Source§impl Clone for ListCertificatesRequest
impl Clone for ListCertificatesRequest
Source§fn clone(&self) -> ListCertificatesRequest
fn clone(&self) -> ListCertificatesRequest
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 ListCertificatesRequest
impl Debug for ListCertificatesRequest
Source§impl Default for ListCertificatesRequest
impl Default for ListCertificatesRequest
Source§fn default() -> ListCertificatesRequest
fn default() -> ListCertificatesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListCertificatesRequest
impl PartialEq for ListCertificatesRequest
Source§impl Serialize for ListCertificatesRequest
impl Serialize for ListCertificatesRequest
impl StructuralPartialEq for ListCertificatesRequest
Auto Trait Implementations§
impl Freeze for ListCertificatesRequest
impl RefUnwindSafe for ListCertificatesRequest
impl Send for ListCertificatesRequest
impl Sync for ListCertificatesRequest
impl Unpin for ListCertificatesRequest
impl UnwindSafe for ListCertificatesRequest
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