Class CfnDirectoryRegistrationMixinProps
Properties for CfnDirectoryRegistrationPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDirectoryRegistrationMixinProps : ICfnDirectoryRegistrationMixinProps
Syntax (vb)
Public Class CfnDirectoryRegistrationMixinProps Implements ICfnDirectoryRegistrationMixinProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins;
var cfnDirectoryRegistrationMixinProps = new CfnDirectoryRegistrationMixinProps {
DirectoryId = "directoryId",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
| CfnDirectoryRegistrationMixinProps() | Properties for CfnDirectoryRegistrationPropsMixin. |
Properties
| DirectoryId | The identifier of the Active Directory. |
| Tags | Metadata assigned to a directory registration consisting of a key-value pair. |
Constructors
CfnDirectoryRegistrationMixinProps()
Properties for CfnDirectoryRegistrationPropsMixin.
public CfnDirectoryRegistrationMixinProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.PCAConnectorAD.Mixins;
var cfnDirectoryRegistrationMixinProps = new CfnDirectoryRegistrationMixinProps {
DirectoryId = "directoryId",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Properties
DirectoryId
The identifier of the Active Directory.
public string? DirectoryId { get; set; }
Property Value
Remarks
Tags
Metadata assigned to a directory registration consisting of a key-value pair.
public IDictionary<string, string>? Tags { get; set; }