Interface CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnTaskDefinitionPropsMixin

@Stability(Stable) public static interface CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.ecs.*;
 FSxWindowsFileServerVolumeConfigurationProperty fSxWindowsFileServerVolumeConfigurationProperty = FSxWindowsFileServerVolumeConfigurationProperty.builder()
         .authorizationConfig(FSxAuthorizationConfigProperty.builder()
                 .credentialsParameter("credentialsParameter")
                 .domain("domain")
                 .build())
         .fileSystemId("fileSystemId")
         .rootDirectory("rootDirectory")
         .build();
 

See Also: