interface FileSystemLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnStorageProfilePropsMixin.FileSystemLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnStorageProfilePropsMixin_FileSystemLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnStorageProfilePropsMixin.FileSystemLocationProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnStorageProfilePropsMixin.FileSystemLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnStorageProfilePropsMixin » FileSystemLocationProperty |
The details of the file system location for the resource.
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 fileSystemLocationProperty: deadline_mixins.CfnStorageProfilePropsMixin.FileSystemLocationProperty = {
name: 'name',
path: 'path',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The location name. |
| path? | string | The file path. |
| type? | string | The type of file. |
name?
Type:
string
(optional)
The location name.
path?
Type:
string
(optional)
The file path.
type?
Type:
string
(optional)
The type of file.

.NET
Go
Java
Python
TypeScript