Interface CfnTemplatePropsMixin.ISubjectNameFlagsV2Property
Information to include in the subject name and alternate subject name of the certificate.
Namespace: Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnTemplatePropsMixin.ISubjectNameFlagsV2Property
Syntax (vb)
Public Interface CfnTemplatePropsMixin.ISubjectNameFlagsV2Property
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.Mixins.Preview.AWS.PCAConnectorAD.Mixins;
var subjectNameFlagsV2Property = new SubjectNameFlagsV2Property {
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.
object? RequireCommonName { get; }
Property Value
Remarks
RequireDirectoryPath
Include the directory path in the subject name.
object? RequireDirectoryPath { get; }
Property Value
Remarks
RequireDnsAsCn
Include the DNS as common name in the subject name.
object? RequireDnsAsCn { get; }
Property Value
Remarks
RequireEmail
Include the subject's email in the subject name.
object? RequireEmail { get; }
Property Value
Remarks
SanRequireDirectoryGuid
Include the globally unique identifier (GUID) in the subject alternate name.
object? SanRequireDirectoryGuid { get; }
Property Value
Remarks
SanRequireDns
Include the DNS in the subject alternate name.
object? SanRequireDns { get; }
Property Value
Remarks
SanRequireDomainDns
Include the domain DNS in the subject alternate name.
object? SanRequireDomainDns { get; }
Property Value
Remarks
SanRequireEmail
Include the subject's email in the subject alternate name.
object? SanRequireEmail { get; }
Property Value
Remarks
SanRequireSpn
Include the service principal name (SPN) in the subject alternate name.
object? SanRequireSpn { get; }
Property Value
Remarks
SanRequireUpn
Include the user principal name (UPN) in the subject alternate name.
object? SanRequireUpn { get; }