interface StudioComponentConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.NimbleStudio.CfnStudioComponent.StudioComponentConfigurationProperty | 
|  Java | software.amazon.awscdk.services.nimblestudio.CfnStudioComponent.StudioComponentConfigurationProperty | 
|  Python | aws_cdk.aws_nimblestudio.CfnStudioComponent.StudioComponentConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-nimblestudio»CfnStudioComponent»StudioComponentConfigurationProperty | 
The configuration of the studio component, based on component type.
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 studioComponentConfigurationProperty: nimblestudio.CfnStudioComponent.StudioComponentConfigurationProperty = {
  activeDirectoryConfiguration: {
    computerAttributes: [{
      name: 'name',
      value: 'value',
    }],
    directoryId: 'directoryId',
    organizationalUnitDistinguishedName: 'organizationalUnitDistinguishedName',
  },
  computeFarmConfiguration: {
    activeDirectoryUser: 'activeDirectoryUser',
    endpoint: 'endpoint',
  },
  licenseServiceConfiguration: {
    endpoint: 'endpoint',
  },
  sharedFileSystemConfiguration: {
    endpoint: 'endpoint',
    fileSystemId: 'fileSystemId',
    linuxMountPoint: 'linuxMountPoint',
    shareName: 'shareName',
    windowsMountDrive: 'windowsMountDrive',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| active | IResolvable | Active | The configuration for a AWS Directory Service for Microsoft Active Directory studio resource. | 
| compute | IResolvable | Compute | The configuration for a render farm that is associated with a studio resource. | 
| license | IResolvable | License | The configuration for a license service that is associated with a studio resource. | 
| shared | IResolvable | Shared | The configuration for a shared file storage system that is associated with a studio resource. | 
activeDirectoryConfiguration?
Type:
IResolvable | Active
(optional)
The configuration for a AWS Directory Service for Microsoft Active Directory studio resource.
computeFarmConfiguration?
Type:
IResolvable | Compute
(optional)
The configuration for a render farm that is associated with a studio resource.
licenseServiceConfiguration?
Type:
IResolvable | License
(optional)
The configuration for a license service that is associated with a studio resource.
sharedFileSystemConfiguration?
Type:
IResolvable | Shared
(optional)
The configuration for a shared file storage system that is associated with a studio resource.
