interface PolicyInformationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ACMPCA.CfnCertificate.PolicyInformationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsacmpca#CfnCertificate_PolicyInformationProperty |
Java | software.amazon.awscdk.services.acmpca.CfnCertificate.PolicyInformationProperty |
Python | aws_cdk.aws_acmpca.CfnCertificate.PolicyInformationProperty |
TypeScript | aws-cdk-lib » aws_acmpca » CfnCertificate » PolicyInformationProperty |
Defines the X.509 CertificatePolicies extension.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_acmpca as acmpca } from 'aws-cdk-lib';
const policyInformationProperty: acmpca.CfnCertificate.PolicyInformationProperty = {
certPolicyId: 'certPolicyId',
// the properties below are optional
policyQualifiers: [{
policyQualifierId: 'policyQualifierId',
qualifier: {
cpsUri: 'cpsUri',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cert | string | Specifies the object identifier (OID) of the certificate policy under which the certificate was issued. |
| policy | IResolvable | (IResolvable | Policy)[] | Modifies the given CertPolicyId with a qualifier. |
certPolicyId
Type:
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) .
policyQualifiers?
Type:
IResolvable | (IResolvable | Policy)[]
(optional)
Modifies the given CertPolicyId with a qualifier.
AWS Private CA supports the certification practice statement (CPS) qualifier.

.NET
Go
Java
Python
TypeScript