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 Summary
Modifier and TypeInterfaceDescriptionstatic final class
static final class
An implementation forCfnTaskDefinition.FSxWindowsFileServerVolumeConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The 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
-
getFileSystemId
The Amazon FSx for Windows File Server file system ID to use.- See Also:
-
getRootDirectory
The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.- See Also:
-
getAuthorizationConfig
The authorization configuration details for the Amazon FSx for Windows File Server file system.- See Also:
-
builder
@Stability(Stable) static CfnTaskDefinition.FSxWindowsFileServerVolumeConfigurationProperty.Builder builder()
-