#[non_exhaustive]pub struct DescribeCertificatesOutput {
pub certificates: Option<Vec<Certificate>>,
pub marker: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.certificates: Option<Vec<Certificate>>
A list of certificates for this Amazon Web Services account.
marker: Option<String>
An optional pagination token provided if the number of records retrieved is greater than MaxRecords
. If this parameter is specified, the marker specifies the next record in the list. Including the value of Marker
in the next call to DescribeCertificates
results in the next page of certificates.
Implementations§
source§impl DescribeCertificatesOutput
impl DescribeCertificatesOutput
sourcepub fn certificates(&self) -> &[Certificate]
pub fn certificates(&self) -> &[Certificate]
A list of certificates for this Amazon Web Services account.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .certificates.is_none()
.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
An optional pagination token provided if the number of records retrieved is greater than MaxRecords
. If this parameter is specified, the marker specifies the next record in the list. Including the value of Marker
in the next call to DescribeCertificates
results in the next page of certificates.
source§impl DescribeCertificatesOutput
impl DescribeCertificatesOutput
sourcepub fn builder() -> DescribeCertificatesOutputBuilder
pub fn builder() -> DescribeCertificatesOutputBuilder
Creates a new builder-style object to manufacture DescribeCertificatesOutput
.
Trait Implementations§
source§impl Clone for DescribeCertificatesOutput
impl Clone for DescribeCertificatesOutput
source§fn clone(&self) -> DescribeCertificatesOutput
fn clone(&self) -> DescribeCertificatesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeCertificatesOutput
impl Debug for DescribeCertificatesOutput
source§impl PartialEq for DescribeCertificatesOutput
impl PartialEq for DescribeCertificatesOutput
source§fn eq(&self, other: &DescribeCertificatesOutput) -> bool
fn eq(&self, other: &DescribeCertificatesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeCertificatesOutput
impl RequestId for DescribeCertificatesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.