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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe authorization configuration details for the Amazon FSx for Windows File Server file system.default StringThe Amazon FSx for Windows File Server file system ID to use.default StringThe 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
-
getAuthorizationConfig
The authorization configuration details for the Amazon FSx for Windows File Server file system.Returns union: either
IResolvableorCfnTaskDefinitionPropsMixin.FSxAuthorizationConfigProperty- See Also:
-
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:
-
builder
@Stability(Stable) static CfnTaskDefinitionPropsMixin.FSxWindowsFileServerVolumeConfigurationProperty.Builder builder()
-