interface CfnStorageProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnStorageProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnStorageProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnStorageProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnStorageProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnStorageProfileMixinProps |
Properties for CfnStorageProfilePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const cfnStorageProfileMixinProps: deadline_mixins.CfnStorageProfileMixinProps = {
displayName: 'displayName',
farmId: 'farmId',
fileSystemLocations: [{
name: 'name',
path: 'path',
type: 'type',
}],
osFamily: 'osFamily',
};
Properties
| Name | Type | Description |
|---|---|---|
| display | string | The display name of the storage profile summary to update. |
| farm | string | The unique identifier of the farm that contains the storage profile. |
| file | IResolvable | (IResolvable | File)[] | Operating system specific file system path to the storage location. |
| os | string | The operating system (OS) family. |
displayName?
Type:
string
(optional)
The display name of the storage profile summary to update.
This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.
farmId?
Type:
string
(optional)
The unique identifier of the farm that contains the storage profile.
fileSystemLocations?
Type:
IResolvable | (IResolvable | File)[]
(optional)
Operating system specific file system path to the storage location.
osFamily?
Type:
string
(optional)
The operating system (OS) family.

.NET
Go
Java
Python
TypeScript