Interface CfnTemplate.ISubjectNameFlagsV4Property
Information to include in the subject name and alternate subject name of the certificate.
Namespace: Amazon.CDK.AwsPcaconnectorad
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISubjectNameFlagsV4Property
Syntax (vb)
Public Interface ISubjectNameFlagsV4Property
Remarks
The subject name can be common name, directory path, DNS as common name, or left blank. You can optionally include email to the subject name for user templates. If you leave the subject name blank then you must set a subject alternate name. The subject alternate name (SAN) can include globally unique identifier (GUID), DNS, domain DNS, email, service principal name (SPN), and user principal name (UPN). You can leave the SAN blank. If you leave the SAN blank, then you must set a subject name.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_pcaconnectorad;
var subjectNameFlagsV4Property = new SubjectNameFlagsV4Property {
RequireCommonName = false,
RequireDirectoryPath = false,
RequireDnsAsCn = false,
RequireEmail = false,
SanRequireDirectoryGuid = false,
SanRequireDns = false,
SanRequireDomainDns = false,
SanRequireEmail = false,
SanRequireSpn = false,
SanRequireUpn = false
};
Synopsis
Properties
RequireCommonName | Include the common name in the subject name. |
RequireDirectoryPath | Include the directory path in the subject name. |
RequireDnsAsCn | Include the DNS as common name in the subject name. |
RequireEmail | Include the subject's email in the subject name. |
SanRequireDirectoryGuid | Include the globally unique identifier (GUID) in the subject alternate name. |
SanRequireDns | Include the DNS in the subject alternate name. |
SanRequireDomainDns | Include the domain DNS in the subject alternate name. |
SanRequireEmail | Include the subject's email in the subject alternate name. |
SanRequireSpn | Include the service principal name (SPN) in the subject alternate name. |
SanRequireUpn | Include the user principal name (UPN) in the subject alternate name. |
Properties
RequireCommonName
Include the common name in the subject name.
virtual object RequireCommonName { get; }
Property Value
System.Object
Remarks
RequireDirectoryPath
Include the directory path in the subject name.
virtual object RequireDirectoryPath { get; }
Property Value
System.Object
Remarks
RequireDnsAsCn
Include the DNS as common name in the subject name.
virtual object RequireDnsAsCn { get; }
Property Value
System.Object
Remarks
RequireEmail
Include the subject's email in the subject name.
virtual object RequireEmail { get; }
Property Value
System.Object
Remarks
SanRequireDirectoryGuid
Include the globally unique identifier (GUID) in the subject alternate name.
virtual object SanRequireDirectoryGuid { get; }
Property Value
System.Object
Remarks
SanRequireDns
Include the DNS in the subject alternate name.
virtual object SanRequireDns { get; }
Property Value
System.Object
Remarks
SanRequireDomainDns
Include the domain DNS in the subject alternate name.
virtual object SanRequireDomainDns { get; }
Property Value
System.Object
Remarks
SanRequireEmail
Include the subject's email in the subject alternate name.
virtual object SanRequireEmail { get; }
Property Value
System.Object
Remarks
SanRequireSpn
Include the service principal name (SPN) in the subject alternate name.
virtual object SanRequireSpn { get; }
Property Value
System.Object
Remarks
SanRequireUpn
Include the user principal name (UPN) in the subject alternate name.
virtual object SanRequireUpn { get; }
Property Value
System.Object