Interface CfnLocationNFSMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnLocationNFSMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.874Z")
@Stability(Stable)
public interface CfnLocationNFSMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnLocationNFSPropsMixin.
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.datasync.*;
CfnLocationNFSMixinProps cfnLocationNFSMixinProps = CfnLocationNFSMixinProps.builder()
.mountOptions(MountOptionsProperty.builder()
.version("version")
.build())
.onPremConfig(OnPremConfigProperty.builder()
.agentArns(List.of("agentArns"))
.build())
.serverHostname("serverHostname")
.subdirectory("subdirectory")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationNFSMixinPropsstatic final classAn implementation forCfnLocationNFSMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies the options that DataSync can use to mount your NFS file server.default ObjectSpecifies the Amazon Resource Name (ARN) of the DataSync agent that can connect to your NFS file server.default StringSpecifies the DNS name or IP address (IPv4 or IPv6) of the NFS file server that your DataSync agent connects to.default StringSpecifies the export path in your NFS file server that you want DataSync to mount.getTags()Specifies labels that help you categorize, filter, and search for your AWS resources.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMountOptions
Specifies the options that DataSync can use to mount your NFS file server.Returns union: either
IResolvableorCfnLocationNFSPropsMixin.MountOptionsProperty- See Also:
-
getOnPremConfig
Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect to your NFS file server.You can specify more than one agent. For more information, see Using multiple DataSync agents .
Returns union: either
IResolvableorCfnLocationNFSPropsMixin.OnPremConfigProperty- See Also:
-
getServerHostname
Specifies the DNS name or IP address (IPv4 or IPv6) of the NFS file server that your DataSync agent connects to.- See Also:
-
getSubdirectory
Specifies the export path in your NFS file server that you want DataSync to mount.This path (or a subdirectory of the path) is where DataSync transfers data to or from. For information on configuring an export for DataSync, see Accessing NFS file servers .
- See Also:
-
getTags
Specifies labels that help you categorize, filter, and search for your AWS resources.We recommend creating at least a name tag for your location.
- See Also:
-
builder
- Returns:
- a
CfnLocationNFSMixinProps.BuilderofCfnLocationNFSMixinProps
-