interface CfnStudioComponentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NimbleStudio.Mixins.CfnStudioComponentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnimblestudio/mixins#CfnStudioComponentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.nimblestudio.mixins.CfnStudioComponentMixinProps |
Python | aws_cdk.mixins_preview.aws_nimblestudio.mixins.CfnStudioComponentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_nimblestudio » mixins » CfnStudioComponentMixinProps |
Properties for CfnStudioComponentPropsMixin.
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 cfnStudioComponentMixinProps: nimblestudio_mixins.CfnStudioComponentMixinProps = {
configuration: {
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',
},
},
description: 'description',
ec2SecurityGroupIds: ['ec2SecurityGroupIds'],
initializationScripts: [{
launchProfileProtocolVersion: 'launchProfileProtocolVersion',
platform: 'platform',
runContext: 'runContext',
script: 'script',
}],
name: 'name',
scriptParameters: [{
key: 'key',
value: 'value',
}],
studioId: 'studioId',
subtype: 'subtype',
tags: {
tagsKey: 'tags',
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | IResolvable | Studio | |
| description? | string | |
| ec2 | string[] | |
| initialization | IResolvable | (IResolvable | Studio)[] | |
| name? | string | |
| script | IResolvable | (IResolvable | Script)[] | |
| studio | string | |
| subtype? | string | |
| tags? | { [string]: string } | |
| type? | string |
configuration?
Type:
IResolvable | Studio
(optional)
description?
Type:
string
(optional)
ec2SecurityGroupIds?
Type:
string[]
(optional)
initializationScripts?
Type:
IResolvable | (IResolvable | Studio)[]
(optional)
name?
Type:
string
(optional)
scriptParameters?
Type:
IResolvable | (IResolvable | Script)[]
(optional)
studioId?
Type:
string
(optional)
subtype?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)
type?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript