Struct aws_sdk_acm::model::Filters [−][src]
#[non_exhaustive]pub struct Filters {
pub extended_key_usage: Option<Vec<ExtendedKeyUsageName>>,
pub key_usage: Option<Vec<KeyUsageName>>,
pub key_types: Option<Vec<KeyAlgorithm>>,
}
Expand description
This structure can be used in the ListCertificates
action to filter the output of the certificate list.
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.extended_key_usage: Option<Vec<ExtendedKeyUsageName>>
Specify one or more ExtendedKeyUsage
extension values.
key_usage: Option<Vec<KeyUsageName>>
Specify one or more KeyUsage
extension values.
key_types: Option<Vec<KeyAlgorithm>>
Specify one or more algorithms that can be used to generate key pairs.
Default filtering returns only RSA_1024
and RSA_2048
certificates that have at least one domain. To return other certificate types, provide the desired type signatures in a comma-separated list. For example, "keyTypes": ["RSA_2048,RSA_4096"]
returns both RSA_2048
and RSA_4096
certificates.
Implementations
Specify one or more ExtendedKeyUsage
extension values.
Specify one or more KeyUsage
extension values.
Specify one or more algorithms that can be used to generate key pairs.
Default filtering returns only RSA_1024
and RSA_2048
certificates that have at least one domain. To return other certificate types, provide the desired type signatures in a comma-separated list. For example, "keyTypes": ["RSA_2048,RSA_4096"]
returns both RSA_2048
and RSA_4096
certificates.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Filters
impl UnwindSafe for Filters
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