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.
-
#managed_by ⇒ String
Identifies the Amazon Web Services service that manages the certificate issued by ACM.
Instance Attribute Details
#extended_key_usage ⇒ Array<String>
Specify one or more ExtendedKeyUsage extension values.
804 805 806 807 808 809 810 811 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 804 class Filters < Struct.new( :extended_key_usage, :key_usage, :key_types, :managed_by) 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.
804 805 806 807 808 809 810 811 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 804 class Filters < Struct.new( :extended_key_usage, :key_usage, :key_types, :managed_by) SENSITIVE = [] include Aws::Structure end |
#key_usage ⇒ Array<String>
Specify one or more KeyUsage extension values.
804 805 806 807 808 809 810 811 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 804 class Filters < Struct.new( :extended_key_usage, :key_usage, :key_types, :managed_by) SENSITIVE = [] include Aws::Structure end |
#managed_by ⇒ String
Identifies the Amazon Web Services service that manages the certificate issued by ACM.
804 805 806 807 808 809 810 811 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 804 class Filters < Struct.new( :extended_key_usage, :key_usage, :key_types, :managed_by) SENSITIVE = [] include Aws::Structure end |