Interface CfnCertificate.PolicyInformationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificate.PolicyInformationProperty.Jsii$Proxy
- Enclosing class:
CfnCertificate
@Stability(Stable)
public static interface CfnCertificate.PolicyInformationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.acmpca.*;
PolicyInformationProperty policyInformationProperty = PolicyInformationProperty.builder()
.certPolicyId("certPolicyId")
// the properties below are optional
.policyQualifiers(List.of(PolicyQualifierInfoProperty.builder()
.policyQualifierId("policyQualifierId")
.qualifier(QualifierProperty.builder()
.cpsUri("cpsUri")
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCertificate.PolicyInformationPropertystatic final classAn implementation forCfnCertificate.PolicyInformationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertPolicyId
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) .
- See Also:
-
getPolicyQualifiers
Modifies the givenCertPolicyIdwith a qualifier.AWS Private CA supports the certification practice statement (CPS) qualifier.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnCertificate.PolicyQualifierInfoProperty>- See Also:
-
builder
-