interface StudioComponentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NimbleStudio.Mixins.CfnStudioComponentPropsMixin.StudioComponentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnimblestudio/mixins#CfnStudioComponentPropsMixin_StudioComponentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.nimblestudio.mixins.CfnStudioComponentPropsMixin.StudioComponentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_nimblestudio.mixins.CfnStudioComponentPropsMixin.StudioComponentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_nimblestudio » mixins » CfnStudioComponentPropsMixin » StudioComponentConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as nimblestudio_mixins } from '@aws-cdk/mixins-preview/aws-nimblestudio';
const studioComponentConfigurationProperty: nimblestudio_mixins.CfnStudioComponentPropsMixin.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