interface FileSystemLocationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.aws_deadline.CfnStorageProfile.FileSystemLocationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnStorageProfile_FileSystemLocationProperty | 
|  Java | software.amazon.awscdk.services.deadline.CfnStorageProfile.FileSystemLocationProperty | 
|  Python | aws_cdk.aws_deadline.CfnStorageProfile.FileSystemLocationProperty | 
|  TypeScript | aws-cdk-lib»aws_deadline»CfnStorageProfile»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-lib';
const fileSystemLocationProperty: deadline.CfnStorageProfile.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
The location name.
path
Type:
string
The file path.
type
Type:
string
The type of file.
