interface ActiveDirectoryConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NimbleStudio.CfnStudioComponentPropsMixin.ActiveDirectoryConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnimblestudio#CfnStudioComponentPropsMixin_ActiveDirectoryConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.nimblestudio.CfnStudioComponentPropsMixin.ActiveDirectoryConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_nimblestudio.CfnStudioComponentPropsMixin.ActiveDirectoryConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_nimblestudio » CfnStudioComponentPropsMixin » ActiveDirectoryConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_nimblestudio as nimblestudio } from '@aws-cdk/cfn-property-mixins';
const activeDirectoryConfigurationProperty: nimblestudio.CfnStudioComponentPropsMixin.ActiveDirectoryConfigurationProperty = {
computerAttributes: [{
name: 'name',
value: 'value',
}],
directoryId: 'directoryId',
organizationalUnitDistinguishedName: 'organizationalUnitDistinguishedName',
};
Properties
| Name | Type | Description |
|---|---|---|
| computer | IResolvable | (IResolvable | Active)[] | |
| directory | string | |
| organizational | string |
computerAttributes?
Type:
IResolvable | (IResolvable | Active)[]
(optional)
directoryId?
Type:
string
(optional)
organizationalUnitDistinguishedName?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript