interface TemplateGroupAccessControlEntryReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.PCAConnectorAD.TemplateGroupAccessControlEntryReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspcaconnectorad#TemplateGroupAccessControlEntryReference |
Java | software.amazon.awscdk.interfaces.pcaconnectorad.TemplateGroupAccessControlEntryReference |
Python | aws_cdk.interfaces.aws_pcaconnectorad.TemplateGroupAccessControlEntryReference |
TypeScript | aws-cdk-lib » interfaces » aws_pcaconnectorad » TemplateGroupAccessControlEntryReference |
A reference to a TemplateGroupAccessControlEntry resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorad as interfaces_aws_pcaconnectorad } from 'aws-cdk-lib/interfaces';
const templateGroupAccessControlEntryReference: interfaces_aws_pcaconnectorad.TemplateGroupAccessControlEntryReference = {
groupSecurityIdentifier: 'groupSecurityIdentifier',
templateArn: 'templateArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| group | string | The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource. |
| template | string | The TemplateArn of the TemplateGroupAccessControlEntry resource. |
groupSecurityIdentifier
Type:
string
The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource.
templateArn
Type:
string
The TemplateArn of the TemplateGroupAccessControlEntry resource.

.NET
Go
Java
Python
TypeScript