Class CfnStudioComponent.ActiveDirectoryConfigurationProperty
The configuration for a AWS Directory Service for Microsoft Active Directory studio resource.
Inheritance
System.Object
    CfnStudioComponent.ActiveDirectoryConfigurationProperty
  Namespace: Amazon.CDK.AWS.NimbleStudio
Assembly: Amazon.CDK.AWS.NimbleStudio.dll
Syntax (csharp)
public class ActiveDirectoryConfigurationProperty : Object, CfnStudioComponent.IActiveDirectoryConfigurationPropertySyntax (vb)
Public Class ActiveDirectoryConfigurationProperty
    Inherits Object
    Implements CfnStudioComponent.IActiveDirectoryConfigurationPropertyRemarks
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.AWS.NimbleStudio;
var activeDirectoryConfigurationProperty = new ActiveDirectoryConfigurationProperty {
    ComputerAttributes = new [] { new ActiveDirectoryComputerAttributeProperty {
        Name = "name",
        Value = "value"
    } },
    DirectoryId = "directoryId",
    OrganizationalUnitDistinguishedName = "organizationalUnitDistinguishedName"
};Synopsis
Constructors
| ActiveDirectoryConfigurationProperty() | 
Properties
| ComputerAttributes | A collection of custom attributes for an Active Directory computer. | 
| DirectoryId | The directory ID of the AWS Directory Service for Microsoft Active Directory to access using this studio component. | 
| OrganizationalUnitDistinguishedName | The distinguished name (DN) and organizational unit (OU) of an Active Directory computer. | 
Constructors
ActiveDirectoryConfigurationProperty()
public ActiveDirectoryConfigurationProperty()Properties
ComputerAttributes
A collection of custom attributes for an Active Directory computer.
public object ComputerAttributes { get; set; }Property Value
System.Object
Remarks
DirectoryId
The directory ID of the AWS Directory Service for Microsoft Active Directory to access using this studio component.
public string DirectoryId { get; set; }Property Value
System.String
Remarks
OrganizationalUnitDistinguishedName
The distinguished name (DN) and organizational unit (OU) of an Active Directory computer.
public string OrganizationalUnitDistinguishedName { get; set; }Property Value
System.String