interface CfnStorageProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnStorageProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnStorageProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnStorageProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnStorageProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const cfnStorageProfileMixinProps: deadline.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