Class CfnTemplateGroupAccessControlEntry.AccessRightsProperty
Allow or deny permissions for an Active Directory group to enroll or autoenroll certificates for a template.
Inherited Members
Namespace: Amazon.CDK.AWS.PCAConnectorAD
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplateGroupAccessControlEntry.AccessRightsProperty : CfnTemplateGroupAccessControlEntry.IAccessRightsProperty
Syntax (vb)
Public Class CfnTemplateGroupAccessControlEntry.AccessRightsProperty Implements CfnTemplateGroupAccessControlEntry.IAccessRightsProperty
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 accessRightsProperty = new AccessRightsProperty {
AutoEnroll = "autoEnroll",
Enroll = "enroll"
};
Synopsis
Constructors
| AccessRightsProperty() | Allow or deny permissions for an Active Directory group to enroll or autoenroll certificates for a template. |
Properties
| AutoEnroll | Allow or deny an Active Directory group from autoenrolling certificates issued against a template. |
| Enroll | Allow or deny an Active Directory group from enrolling certificates issued against a template. |
Constructors
AccessRightsProperty()
Allow or deny permissions for an Active Directory group to enroll or autoenroll certificates for a template.
public AccessRightsProperty()
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 accessRightsProperty = new AccessRightsProperty {
AutoEnroll = "autoEnroll",
Enroll = "enroll"
};
Properties
AutoEnroll
Allow or deny an Active Directory group from autoenrolling certificates issued against a template.
public string? AutoEnroll { get; set; }
Property Value
Remarks
The Active Directory group must be allowed to enroll to allow autoenrollment
Enroll
Allow or deny an Active Directory group from enrolling certificates issued against a template.
public string? Enroll { get; set; }