interface ActiveDirectoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NimbleStudio.CfnStudioComponent.ActiveDirectoryConfigurationProperty |
Java | software.amazon.awscdk.services.nimblestudio.CfnStudioComponent.ActiveDirectoryConfigurationProperty |
Python | aws_cdk.aws_nimblestudio.CfnStudioComponent.ActiveDirectoryConfigurationProperty |
TypeScript | @aws-cdk/aws-nimblestudio » CfnStudioComponent » ActiveDirectoryConfigurationProperty |
The configuration for a AWS Directory Service for Microsoft Active Directory studio resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as nimblestudio from '@aws-cdk/aws-nimblestudio';
const activeDirectoryConfigurationProperty: nimblestudio.CfnStudioComponent.ActiveDirectoryConfigurationProperty = {
computerAttributes: [{
name: 'name',
value: 'value',
}],
directoryId: 'directoryId',
organizationalUnitDistinguishedName: 'organizationalUnitDistinguishedName',
};
Properties
| Name | Type | Description |
|---|---|---|
| computer | IResolvable | IResolvable | Active[] | A collection of custom attributes for an Active Directory computer. |
| directory | string | The directory ID of the AWS Directory Service for Microsoft Active Directory to access using this studio component. |
| organizational | string | The distinguished name (DN) and organizational unit (OU) of an Active Directory computer. |
computerAttributes?
Type:
IResolvable | IResolvable | Active[]
(optional)
A collection of custom attributes for an Active Directory computer.
directoryId?
Type:
string
(optional)
The directory ID of the AWS Directory Service for Microsoft Active Directory to access using this studio component.
organizationalUnitDistinguishedName?
Type:
string
(optional)
The distinguished name (DN) and organizational unit (OU) of an Active Directory computer.

.NET
Java
Python
TypeScript