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