Interface CfnTaskDefinition.FSxWindowsFileServerVolumeConfigurationProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnTaskDefinition.FSxWindowsFileServerVolumeConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnTaskDefinition
@Stability(Stable)
public static interface CfnTaskDefinition.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.services.ecs.*;
 FSxWindowsFileServerVolumeConfigurationProperty fSxWindowsFileServerVolumeConfigurationProperty = FSxWindowsFileServerVolumeConfigurationProperty.builder()
         .fileSystemId("fileSystemId")
         .rootDirectory("rootDirectory")
         // the properties below are optional
         .authorizationConfig(FSxAuthorizationConfigProperty.builder()
                 .credentialsParameter("credentialsParameter")
                 .domain("domain")
                 .build())
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTaskDefinition.FSxWindowsFileServerVolumeConfigurationProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default ObjectThe authorization configuration details for the Amazon FSx for Windows File Server file system.The Amazon FSx for Windows File Server file system ID to use.The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getFileSystemIdThe Amazon FSx for Windows File Server file system ID to use.- See Also:
 
- 
getRootDirectoryThe directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.- See Also:
 
- 
getAuthorizationConfigThe authorization configuration details for the Amazon FSx for Windows File Server file system.Returns union: either IResolvableorCfnTaskDefinition.FSxAuthorizationConfigProperty- See Also:
 
- 
builder@Stability(Stable) static CfnTaskDefinition.FSxWindowsFileServerVolumeConfigurationProperty.Builder builder()
 
-