Struct aws_sdk_acm::input::ListCertificatesInput [−][src]
#[non_exhaustive]pub struct ListCertificatesInput {
pub certificate_statuses: Option<Vec<CertificateStatus>>,
pub includes: Option<Filters>,
pub next_token: Option<String>,
pub max_items: Option<i32>,
}
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.certificate_statuses: Option<Vec<CertificateStatus>>
Filter the certificate list by status value.
includes: Option<Filters>
Filter the certificate list. For more information, see the Filters
structure.
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.
max_items: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCertificates, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListCertificates, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListCertificates
>
Creates a new builder-style object to manufacture ListCertificatesInput
Filter the certificate list by status value.
Filter the certificate list. For more information, see the Filters
structure.
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.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListCertificatesInput
impl Send for ListCertificatesInput
impl Sync for ListCertificatesInput
impl Unpin for ListCertificatesInput
impl UnwindSafe for ListCertificatesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more