interface CfnTemplateGroupAccessControlEntryProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCAConnectorAD.CfnTemplateGroupAccessControlEntryProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorad#CfnTemplateGroupAccessControlEntryProps |
Java | software.amazon.awscdk.services.pcaconnectorad.CfnTemplateGroupAccessControlEntryProps |
Python | aws_cdk.aws_pcaconnectorad.CfnTemplateGroupAccessControlEntryProps |
TypeScript | aws-cdk-lib » aws_pcaconnectorad » CfnTemplateGroupAccessControlEntryProps |
Properties for defining a CfnTemplateGroupAccessControlEntry.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorad as pcaconnectorad } from 'aws-cdk-lib';
const cfnTemplateGroupAccessControlEntryProps: pcaconnectorad.CfnTemplateGroupAccessControlEntryProps = {
accessRights: {
autoEnroll: 'autoEnroll',
enroll: 'enroll',
},
groupDisplayName: 'groupDisplayName',
// the properties below are optional
groupSecurityIdentifier: 'groupSecurityIdentifier',
templateArn: 'templateArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | IResolvable | Access | Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template. |
| group | string | Name of the Active Directory group. |
| group | string | Security identifier (SID) of the group object from Active Directory. |
| template | string | The Amazon Resource Name (ARN) that was returned when you called CreateTemplate . |
accessRights
Type:
IResolvable | Access
Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.
groupDisplayName
Type:
string
Name of the Active Directory group.
This name does not need to match the group name in Active Directory.
groupSecurityIdentifier?
Type:
string
(optional)
Security identifier (SID) of the group object from Active Directory.
The SID starts with "S-".
templateArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that was returned when you called CreateTemplate .

.NET
Go
Java
Python
TypeScript