Class CfnTemplateGroupAccessControlEntryProps
Properties for defining a CfnTemplateGroupAccessControlEntry.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.PCAConnectorAD
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplateGroupAccessControlEntryProps : ICfnTemplateGroupAccessControlEntryProps
Syntax (vb)
Public Class CfnTemplateGroupAccessControlEntryProps Implements ICfnTemplateGroupAccessControlEntryProps
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 cfnTemplateGroupAccessControlEntryProps = new CfnTemplateGroupAccessControlEntryProps {
AccessRights = new AccessRightsProperty {
AutoEnroll = "autoEnroll",
Enroll = "enroll"
},
GroupDisplayName = "groupDisplayName",
// the properties below are optional
GroupSecurityIdentifier = "groupSecurityIdentifier",
TemplateArn = "templateArn"
};
Synopsis
Constructors
| CfnTemplateGroupAccessControlEntryProps() | Properties for defining a |
Properties
| AccessRights | Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template. |
| GroupDisplayName | Name of the Active Directory group. |
| GroupSecurityIdentifier | Security identifier (SID) of the group object from Active Directory. |
| TemplateArn | The Amazon Resource Name (ARN) that was returned when you called CreateTemplate . |
Constructors
CfnTemplateGroupAccessControlEntryProps()
Properties for defining a CfnTemplateGroupAccessControlEntry.
public CfnTemplateGroupAccessControlEntryProps()
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 cfnTemplateGroupAccessControlEntryProps = new CfnTemplateGroupAccessControlEntryProps {
AccessRights = new AccessRightsProperty {
AutoEnroll = "autoEnroll",
Enroll = "enroll"
},
GroupDisplayName = "groupDisplayName",
// the properties below are optional
GroupSecurityIdentifier = "groupSecurityIdentifier",
TemplateArn = "templateArn"
};
Properties
AccessRights
Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.
public object AccessRights { get; set; }
Property Value
Remarks
GroupDisplayName
Name of the Active Directory group.
public string GroupDisplayName { get; set; }
Property Value
Remarks
This name does not need to match the group name in Active Directory.
GroupSecurityIdentifier
Security identifier (SID) of the group object from Active Directory.
public string? GroupSecurityIdentifier { get; set; }
Property Value
Remarks
TemplateArn
The Amazon Resource Name (ARN) that was returned when you called CreateTemplate .
public string? TemplateArn { get; set; }