interface CfnDirectoryRegistrationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCAConnectorAD.CfnDirectoryRegistrationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorad#CfnDirectoryRegistrationProps |
Java | software.amazon.awscdk.services.pcaconnectorad.CfnDirectoryRegistrationProps |
Python | aws_cdk.aws_pcaconnectorad.CfnDirectoryRegistrationProps |
TypeScript | aws-cdk-lib » aws_pcaconnectorad » CfnDirectoryRegistrationProps |
Properties for defining a CfnDirectoryRegistration.
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 cfnDirectoryRegistrationProps: pcaconnectorad.CfnDirectoryRegistrationProps = {
directoryId: 'directoryId',
// the properties below are optional
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| directory | string | The identifier of the Active Directory. |
| tags? | { [string]: string } | Metadata assigned to a directory registration consisting of a key-value pair. |
directoryId
Type:
string
The identifier of the Active Directory.
tags?
Type:
{ [string]: string }
(optional)
Metadata assigned to a directory registration consisting of a key-value pair.

.NET
Go
Java
Python
TypeScript