pub struct ListCertificateAuthoritiesRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
Use this parameter when paginating results to specify the maximum number of items to return in the response on each page. 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 when paginating results in a subsequent request after you receive a response with truncated results. Set it to the value of the NextToken
parameter from the response you just received.
Trait Implementations§
Source§impl Clone for ListCertificateAuthoritiesRequest
impl Clone for ListCertificateAuthoritiesRequest
Source§fn clone(&self) -> ListCertificateAuthoritiesRequest
fn clone(&self) -> ListCertificateAuthoritiesRequest
Returns a duplicate 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 Default for ListCertificateAuthoritiesRequest
impl Default for ListCertificateAuthoritiesRequest
Source§fn default() -> ListCertificateAuthoritiesRequest
fn default() -> ListCertificateAuthoritiesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListCertificateAuthoritiesRequest
impl PartialEq for ListCertificateAuthoritiesRequest
Source§fn eq(&self, other: &ListCertificateAuthoritiesRequest) -> bool
fn eq(&self, other: &ListCertificateAuthoritiesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListCertificateAuthoritiesRequest
Auto Trait Implementations§
impl Freeze for ListCertificateAuthoritiesRequest
impl RefUnwindSafe for ListCertificateAuthoritiesRequest
impl Send for ListCertificateAuthoritiesRequest
impl Sync for ListCertificateAuthoritiesRequest
impl Unpin for ListCertificateAuthoritiesRequest
impl UnwindSafe for ListCertificateAuthoritiesRequest
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