Interface CfnCertificate.PolicyQualifierInfoProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCertificate.PolicyQualifierInfoProperty.Jsii$Proxy
Enclosing class:
CfnCertificate

@Stability(Stable) public static interface CfnCertificate.PolicyQualifierInfoProperty extends software.amazon.jsii.JsiiSerializable
Modifies the CertPolicyId of a PolicyInformation object with a qualifier.

AWS Private CA supports the certification practice statement (CPS) qualifier.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.acmpca.*;
 PolicyQualifierInfoProperty policyQualifierInfoProperty = PolicyQualifierInfoProperty.builder()
         .policyQualifierId("policyQualifierId")
         .qualifier(QualifierProperty.builder()
                 .cpsUri("cpsUri")
                 .build())
         .build();
 

See Also: