Class: Aws::ACM::Types::Filters
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::Filters
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
This structure can be used in the ListCertificates action to filter the output of the certificate list.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#extended_key_usage ⇒ Array<String>
Specify one or more ExtendedKeyUsage extension values.
-
#key_types ⇒ Array<String>
Specify one or more algorithms that can be used to generate key pairs.
-
#key_usage ⇒ Array<String>
Specify one or more KeyUsage extension values.
Instance Attribute Details
#extended_key_usage ⇒ Array<String>
Specify one or more ExtendedKeyUsage extension values.
769 770 771 772 773 774 775 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 769 class Filters < Struct.new( :extended_key_usage, :key_usage, :key_types) SENSITIVE = [] include Aws::Structure end |
#key_types ⇒ Array<String>
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.
769 770 771 772 773 774 775 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 769 class Filters < Struct.new( :extended_key_usage, :key_usage, :key_types) SENSITIVE = [] include Aws::Structure end |