Class: Aws::ACMPCA::Types::PolicyInformation
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACMPCA::Types::PolicyInformation
- Defined in:
- gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb
Overview
Defines the X.509 CertificatePolicies
extension.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cert_policy_id ⇒ String
Specifies the object identifier (OID) of the certificate policy under which the certificate was issued.
-
#policy_qualifiers ⇒ Array<Types::PolicyQualifierInfo>
Modifies the given
CertPolicyId
with a qualifier.
Instance Attribute Details
#cert_policy_id ⇒ String
Specifies the object identifier (OID) of the certificate policy under which the certificate was issued. For more information, see NIST's definition of Object Identifier (OID).
2210 2211 2212 2213 2214 2215 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 2210 class PolicyInformation < Struct.new( :cert_policy_id, :policy_qualifiers) SENSITIVE = [] include Aws::Structure end |
#policy_qualifiers ⇒ Array<Types::PolicyQualifierInfo>
Modifies the given CertPolicyId
with a qualifier. Amazon Web
Services Private CA supports the certification practice statement
(CPS) qualifier.
2210 2211 2212 2213 2214 2215 |
# File 'gems/aws-sdk-acmpca/lib/aws-sdk-acmpca/types.rb', line 2210 class PolicyInformation < Struct.new( :cert_policy_id, :policy_qualifiers) SENSITIVE = [] include Aws::Structure end |