interface StudioComponentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NimbleStudio.CfnStudioComponent.StudioComponentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnimblestudio#CfnStudioComponent_StudioComponentConfigurationProperty |
Java | software.amazon.awscdk.services.nimblestudio.CfnStudioComponent.StudioComponentConfigurationProperty |
Python | aws_cdk.aws_nimblestudio.CfnStudioComponent.StudioComponentConfigurationProperty |
TypeScript | aws-cdk-lib » aws_nimblestudio » CfnStudioComponent » StudioComponentConfigurationProperty |
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-lib';
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 | |
| compute | IResolvable | Compute | |
| license | IResolvable | License | |
| shared | IResolvable | Shared |
activeDirectoryConfiguration?
Type:
IResolvable | Active
(optional)
computeFarmConfiguration?
Type:
IResolvable | Compute
(optional)
licenseServiceConfiguration?
Type:
IResolvable | License
(optional)
sharedFileSystemConfiguration?
Type:
IResolvable | Shared
(optional)

.NET
Go
Java
Python
TypeScript