DistributionPointName
Name component of a CRL Distribution Point (RFC 5280 §4.2.1.13).
Supply exactly one of fullName or relativeName.
ts
interface DistributionPointName {
readonly fullName?: readonly GeneralName[];
readonly relativeName?: RelativeDistinguishedNameInput;
}Properties
readonlyfullName?:readonlyGeneralName[]— AbsoluteGeneralName(s) identifying the distribution point (usually a URI).readonlyrelativeName?:RelativeDistinguishedNameInput— Name relative to the issuer's DN; mutually exclusive withfullName.