interface CfnTemplateGroupAccessControlEntryMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins.CfnTemplateGroupAccessControlEntryMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorad/mixins#CfnTemplateGroupAccessControlEntryMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorad.mixins.CfnTemplateGroupAccessControlEntryMixinProps |
Python | aws_cdk.mixins_preview.aws_pcaconnectorad.mixins.CfnTemplateGroupAccessControlEntryMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorad » mixins » CfnTemplateGroupAccessControlEntryMixinProps |
Properties for CfnTemplateGroupAccessControlEntryPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcaconnectorad_mixins } from '@aws-cdk/mixins-preview/aws-pcaconnectorad';
const cfnTemplateGroupAccessControlEntryMixinProps: pcaconnectorad_mixins.CfnTemplateGroupAccessControlEntryMixinProps = {
accessRights: {
autoEnroll: 'autoEnroll',
enroll: 'enroll',
},
groupDisplayName: 'groupDisplayName',
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
(optional)
Permissions to allow or deny an Active Directory group to enroll or autoenroll certificates issued against a template.
groupDisplayName?
Type:
string
(optional)
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