Class CfnTemplate.GeneralFlagsV2Property
General flags for v2 template schema that defines if the template is for a machine or a user and if the template can be issued using autoenrollment.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.PCAConnectorAD
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.GeneralFlagsV2Property : CfnTemplate.IGeneralFlagsV2Property
Syntax (vb)
Public Class CfnTemplate.GeneralFlagsV2Property Implements CfnTemplate.IGeneralFlagsV2Property
Remarks
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 generalFlagsV2Property = new GeneralFlagsV2Property {
AutoEnrollment = false,
MachineType = false
};
Synopsis
Constructors
| GeneralFlagsV2Property() | General flags for v2 template schema that defines if the template is for a machine or a user and if the template can be issued using autoenrollment. |
Properties
| AutoEnrollment | Allows certificate issuance using autoenrollment. |
| MachineType | Defines if the template is for machines or users. |
Constructors
GeneralFlagsV2Property()
General flags for v2 template schema that defines if the template is for a machine or a user and if the template can be issued using autoenrollment.
public GeneralFlagsV2Property()
Remarks
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 generalFlagsV2Property = new GeneralFlagsV2Property {
AutoEnrollment = false,
MachineType = false
};
Properties
AutoEnrollment
Allows certificate issuance using autoenrollment.
public object? AutoEnrollment { get; set; }
Property Value
Remarks
Set to TRUE to allow autoenrollment.
Type union: either bool or IResolvable
MachineType
Defines if the template is for machines or users.
public object? MachineType { get; set; }
Property Value
Remarks
Set to TRUE if the template is for machines. Set to FALSE if the template is for users.
Type union: either bool or IResolvable