interface FSxWindowsFileServerVolumeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnTaskDefinitionPropsMixin_FSxWindowsFileServerVolumeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnTaskDefinitionPropsMixin » FSxWindowsFileServerVolumeConfigurationProperty |
This parameter is specified when you're using Amazon FSx for Windows File Server file system for task storage.
For more information and the input format, see Amazon FSx for Windows File Server volumes in the Amazon Elastic Container Service Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const fSxWindowsFileServerVolumeConfigurationProperty: ecs_mixins.CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty = {
authorizationConfig: {
credentialsParameter: 'credentialsParameter',
domain: 'domain',
},
fileSystemId: 'fileSystemId',
rootDirectory: 'rootDirectory',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | FSx | The authorization configuration details for the Amazon FSx for Windows File Server file system. |
| file | string | The Amazon FSx for Windows File Server file system ID to use. |
| root | string | The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host. |
authorizationConfig?
Type:
IResolvable | FSx
(optional)
The authorization configuration details for the Amazon FSx for Windows File Server file system.
fileSystemId?
Type:
string
(optional)
The Amazon FSx for Windows File Server file system ID to use.
rootDirectory?
Type:
string
(optional)
The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.

.NET
Go
Java
Python
TypeScript