CfnDirectoryRegistrationProps
- class aws_cdk.aws_pcaconnectorad.CfnDirectoryRegistrationProps(*, directory_id, tags=None)
Bases:
objectProperties for defining a
CfnDirectoryRegistration.- Parameters:
directory_id (
str) – The identifier of the Active Directory.tags (
Optional[Mapping[str,str]]) – Metadata assigned to a directory registration consisting of a key-value pair.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_pcaconnectorad as pcaconnectorad cfn_directory_registration_props = pcaconnectorad.CfnDirectoryRegistrationProps( directory_id="directoryId", # the properties below are optional tags={ "tags_key": "tags" } )
Attributes
- directory_id
The identifier of the Active Directory.
- tags
Metadata assigned to a directory registration consisting of a key-value pair.