aws.datasync.LocationFsxOntapFileSystem
Explore with Pulumi AI
Resource for managing an AWS DataSync Location FSx Ontap File System.
Example Usage
Basic Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  test:
    type: aws:datasync:LocationFsxOntapFileSystem
    properties:
      fsxFilesystemArn: ${testAwsFsxOntapFileSystem.arn}
      securityGroupArns:
        - ${testAwsSecurityGroup.arn}
      storageVirtualMachineArn: ${testAwsFsxOntapStorageVirtualMachine.arn}
      protocol:
        nfs:
          mountOptions:
            version: NFS3
Create LocationFsxOntapFileSystem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LocationFsxOntapFileSystem(name: string, args: LocationFsxOntapFileSystemArgs, opts?: CustomResourceOptions);@overload
def LocationFsxOntapFileSystem(resource_name: str,
                               args: LocationFsxOntapFileSystemArgs,
                               opts: Optional[ResourceOptions] = None)
@overload
def LocationFsxOntapFileSystem(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               protocol: Optional[LocationFsxOntapFileSystemProtocolArgs] = None,
                               security_group_arns: Optional[Sequence[str]] = None,
                               storage_virtual_machine_arn: Optional[str] = None,
                               subdirectory: Optional[str] = None,
                               tags: Optional[Mapping[str, str]] = None)func NewLocationFsxOntapFileSystem(ctx *Context, name string, args LocationFsxOntapFileSystemArgs, opts ...ResourceOption) (*LocationFsxOntapFileSystem, error)public LocationFsxOntapFileSystem(string name, LocationFsxOntapFileSystemArgs args, CustomResourceOptions? opts = null)
public LocationFsxOntapFileSystem(String name, LocationFsxOntapFileSystemArgs args)
public LocationFsxOntapFileSystem(String name, LocationFsxOntapFileSystemArgs args, CustomResourceOptions options)
type: aws:datasync:LocationFsxOntapFileSystem
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args LocationFsxOntapFileSystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args LocationFsxOntapFileSystemArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args LocationFsxOntapFileSystemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LocationFsxOntapFileSystemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LocationFsxOntapFileSystemArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var locationFsxOntapFileSystemResource = new Aws.DataSync.LocationFsxOntapFileSystem("locationFsxOntapFileSystemResource", new()
{
    Protocol = new Aws.DataSync.Inputs.LocationFsxOntapFileSystemProtocolArgs
    {
        Nfs = new Aws.DataSync.Inputs.LocationFsxOntapFileSystemProtocolNfsArgs
        {
            MountOptions = new Aws.DataSync.Inputs.LocationFsxOntapFileSystemProtocolNfsMountOptionsArgs
            {
                Version = "string",
            },
        },
        Smb = new Aws.DataSync.Inputs.LocationFsxOntapFileSystemProtocolSmbArgs
        {
            MountOptions = new Aws.DataSync.Inputs.LocationFsxOntapFileSystemProtocolSmbMountOptionsArgs
            {
                Version = "string",
            },
            Password = "string",
            User = "string",
            Domain = "string",
        },
    },
    SecurityGroupArns = new[]
    {
        "string",
    },
    StorageVirtualMachineArn = "string",
    Subdirectory = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := datasync.NewLocationFsxOntapFileSystem(ctx, "locationFsxOntapFileSystemResource", &datasync.LocationFsxOntapFileSystemArgs{
	Protocol: &datasync.LocationFsxOntapFileSystemProtocolArgs{
		Nfs: &datasync.LocationFsxOntapFileSystemProtocolNfsArgs{
			MountOptions: &datasync.LocationFsxOntapFileSystemProtocolNfsMountOptionsArgs{
				Version: pulumi.String("string"),
			},
		},
		Smb: &datasync.LocationFsxOntapFileSystemProtocolSmbArgs{
			MountOptions: &datasync.LocationFsxOntapFileSystemProtocolSmbMountOptionsArgs{
				Version: pulumi.String("string"),
			},
			Password: pulumi.String("string"),
			User:     pulumi.String("string"),
			Domain:   pulumi.String("string"),
		},
	},
	SecurityGroupArns: pulumi.StringArray{
		pulumi.String("string"),
	},
	StorageVirtualMachineArn: pulumi.String("string"),
	Subdirectory:             pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var locationFsxOntapFileSystemResource = new LocationFsxOntapFileSystem("locationFsxOntapFileSystemResource", LocationFsxOntapFileSystemArgs.builder()
    .protocol(LocationFsxOntapFileSystemProtocolArgs.builder()
        .nfs(LocationFsxOntapFileSystemProtocolNfsArgs.builder()
            .mountOptions(LocationFsxOntapFileSystemProtocolNfsMountOptionsArgs.builder()
                .version("string")
                .build())
            .build())
        .smb(LocationFsxOntapFileSystemProtocolSmbArgs.builder()
            .mountOptions(LocationFsxOntapFileSystemProtocolSmbMountOptionsArgs.builder()
                .version("string")
                .build())
            .password("string")
            .user("string")
            .domain("string")
            .build())
        .build())
    .securityGroupArns("string")
    .storageVirtualMachineArn("string")
    .subdirectory("string")
    .tags(Map.of("string", "string"))
    .build());
location_fsx_ontap_file_system_resource = aws.datasync.LocationFsxOntapFileSystem("locationFsxOntapFileSystemResource",
    protocol={
        "nfs": {
            "mount_options": {
                "version": "string",
            },
        },
        "smb": {
            "mount_options": {
                "version": "string",
            },
            "password": "string",
            "user": "string",
            "domain": "string",
        },
    },
    security_group_arns=["string"],
    storage_virtual_machine_arn="string",
    subdirectory="string",
    tags={
        "string": "string",
    })
const locationFsxOntapFileSystemResource = new aws.datasync.LocationFsxOntapFileSystem("locationFsxOntapFileSystemResource", {
    protocol: {
        nfs: {
            mountOptions: {
                version: "string",
            },
        },
        smb: {
            mountOptions: {
                version: "string",
            },
            password: "string",
            user: "string",
            domain: "string",
        },
    },
    securityGroupArns: ["string"],
    storageVirtualMachineArn: "string",
    subdirectory: "string",
    tags: {
        string: "string",
    },
});
type: aws:datasync:LocationFsxOntapFileSystem
properties:
    protocol:
        nfs:
            mountOptions:
                version: string
        smb:
            domain: string
            mountOptions:
                version: string
            password: string
            user: string
    securityGroupArns:
        - string
    storageVirtualMachineArn: string
    subdirectory: string
    tags:
        string: string
LocationFsxOntapFileSystem Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The LocationFsxOntapFileSystem resource accepts the following input properties:
- Protocol
LocationFsx Ontap File System Protocol 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- SecurityGroup List<string>Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- StorageVirtual stringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- Subdirectory string
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Dictionary<string, string>
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Protocol
LocationFsx Ontap File System Protocol Args 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- SecurityGroup []stringArns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- StorageVirtual stringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- Subdirectory string
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- map[string]string
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- protocol
LocationFsx Ontap File System Protocol 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- securityGroup List<String>Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storageVirtual StringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory String
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Map<String,String>
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- protocol
LocationFsx Ontap File System Protocol 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- securityGroup string[]Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storageVirtual stringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory string
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- {[key: string]: string}
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- protocol
LocationFsx Ontap File System Protocol Args 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- security_group_ Sequence[str]arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storage_virtual_ strmachine_ arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory str
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Mapping[str, str]
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- protocol Property Map
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- securityGroup List<String>Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storageVirtual StringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory String
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Map<String>
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the LocationFsxOntapFileSystem resource produces the following output properties:
- Arn string
- ARN of the DataSync Location for the FSx Ontap File System.
- CreationTime string
- FsxFilesystem stringArn 
- ARN of the FSx Ontap File System.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- Uri string
- URI of the FSx ONTAP file system location
- Arn string
- ARN of the DataSync Location for the FSx Ontap File System.
- CreationTime string
- FsxFilesystem stringArn 
- ARN of the FSx Ontap File System.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- Uri string
- URI of the FSx ONTAP file system location
- arn String
- ARN of the DataSync Location for the FSx Ontap File System.
- creationTime String
- fsxFilesystem StringArn 
- ARN of the FSx Ontap File System.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- uri String
- URI of the FSx ONTAP file system location
- arn string
- ARN of the DataSync Location for the FSx Ontap File System.
- creationTime string
- fsxFilesystem stringArn 
- ARN of the FSx Ontap File System.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- uri string
- URI of the FSx ONTAP file system location
- arn str
- ARN of the DataSync Location for the FSx Ontap File System.
- creation_time str
- fsx_filesystem_ strarn 
- ARN of the FSx Ontap File System.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- uri str
- URI of the FSx ONTAP file system location
- arn String
- ARN of the DataSync Location for the FSx Ontap File System.
- creationTime String
- fsxFilesystem StringArn 
- ARN of the FSx Ontap File System.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- uri String
- URI of the FSx ONTAP file system location
Look up Existing LocationFsxOntapFileSystem Resource
Get an existing LocationFsxOntapFileSystem resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: LocationFsxOntapFileSystemState, opts?: CustomResourceOptions): LocationFsxOntapFileSystem@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        creation_time: Optional[str] = None,
        fsx_filesystem_arn: Optional[str] = None,
        protocol: Optional[LocationFsxOntapFileSystemProtocolArgs] = None,
        security_group_arns: Optional[Sequence[str]] = None,
        storage_virtual_machine_arn: Optional[str] = None,
        subdirectory: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        uri: Optional[str] = None) -> LocationFsxOntapFileSystemfunc GetLocationFsxOntapFileSystem(ctx *Context, name string, id IDInput, state *LocationFsxOntapFileSystemState, opts ...ResourceOption) (*LocationFsxOntapFileSystem, error)public static LocationFsxOntapFileSystem Get(string name, Input<string> id, LocationFsxOntapFileSystemState? state, CustomResourceOptions? opts = null)public static LocationFsxOntapFileSystem get(String name, Output<String> id, LocationFsxOntapFileSystemState state, CustomResourceOptions options)resources:  _:    type: aws:datasync:LocationFsxOntapFileSystem    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- ARN of the DataSync Location for the FSx Ontap File System.
- CreationTime string
- FsxFilesystem stringArn 
- ARN of the FSx Ontap File System.
- Protocol
LocationFsx Ontap File System Protocol 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- SecurityGroup List<string>Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- StorageVirtual stringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- Subdirectory string
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Dictionary<string, string>
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- Uri string
- URI of the FSx ONTAP file system location
- Arn string
- ARN of the DataSync Location for the FSx Ontap File System.
- CreationTime string
- FsxFilesystem stringArn 
- ARN of the FSx Ontap File System.
- Protocol
LocationFsx Ontap File System Protocol Args 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- SecurityGroup []stringArns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- StorageVirtual stringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- Subdirectory string
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- map[string]string
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- Uri string
- URI of the FSx ONTAP file system location
- arn String
- ARN of the DataSync Location for the FSx Ontap File System.
- creationTime String
- fsxFilesystem StringArn 
- ARN of the FSx Ontap File System.
- protocol
LocationFsx Ontap File System Protocol 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- securityGroup List<String>Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storageVirtual StringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory String
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Map<String,String>
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- uri String
- URI of the FSx ONTAP file system location
- arn string
- ARN of the DataSync Location for the FSx Ontap File System.
- creationTime string
- fsxFilesystem stringArn 
- ARN of the FSx Ontap File System.
- protocol
LocationFsx Ontap File System Protocol 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- securityGroup string[]Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storageVirtual stringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory string
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- {[key: string]: string}
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- uri string
- URI of the FSx ONTAP file system location
- arn str
- ARN of the DataSync Location for the FSx Ontap File System.
- creation_time str
- fsx_filesystem_ strarn 
- ARN of the FSx Ontap File System.
- protocol
LocationFsx Ontap File System Protocol Args 
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- security_group_ Sequence[str]arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storage_virtual_ strmachine_ arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory str
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Mapping[str, str]
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- uri str
- URI of the FSx ONTAP file system location
- arn String
- ARN of the DataSync Location for the FSx Ontap File System.
- creationTime String
- fsxFilesystem StringArn 
- ARN of the FSx Ontap File System.
- protocol Property Map
- The data transfer protocol that DataSync uses to access your Amazon FSx file system. See Protocol below.
- securityGroup List<String>Arns 
- The security groups that provide access to your file system's preferred subnet. The security groups must allow outbbound traffic on the following ports (depending on the protocol you use):- Network File System (NFS): TCP ports 111, 635, and 2049
- Server Message Block (SMB): TCP port 445
 
- storageVirtual StringMachine Arn 
- The ARN of the SVM in your file system where you want to copy data to of from. - The following arguments are optional: 
- subdirectory String
- Path to the file share in the SVM where you'll copy your data. You can specify a junction path (also known as a mount point), qtree path (for NFS file shares), or share name (for SMB file shares) (e.g. /vol1,/vol1/tree1,share1).
- Map<String>
- Key-value pairs of resource tags to assign to the DataSync Location. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- uri String
- URI of the FSx ONTAP file system location
Supporting Types
LocationFsxOntapFileSystemProtocol, LocationFsxOntapFileSystemProtocolArgs            
- Nfs
LocationFsx Ontap File System Protocol Nfs 
- Network File System (NFS) protocol that DataSync uses to access your FSx ONTAP file system. See NFS below.
- Smb
LocationFsx Ontap File System Protocol Smb 
- Server Message Block (SMB) protocol that DataSync uses to access your FSx ONTAP file system. See [SMB] (#smb) below.
- Nfs
LocationFsx Ontap File System Protocol Nfs 
- Network File System (NFS) protocol that DataSync uses to access your FSx ONTAP file system. See NFS below.
- Smb
LocationFsx Ontap File System Protocol Smb 
- Server Message Block (SMB) protocol that DataSync uses to access your FSx ONTAP file system. See [SMB] (#smb) below.
- nfs
LocationFsx Ontap File System Protocol Nfs 
- Network File System (NFS) protocol that DataSync uses to access your FSx ONTAP file system. See NFS below.
- smb
LocationFsx Ontap File System Protocol Smb 
- Server Message Block (SMB) protocol that DataSync uses to access your FSx ONTAP file system. See [SMB] (#smb) below.
- nfs
LocationFsx Ontap File System Protocol Nfs 
- Network File System (NFS) protocol that DataSync uses to access your FSx ONTAP file system. See NFS below.
- smb
LocationFsx Ontap File System Protocol Smb 
- Server Message Block (SMB) protocol that DataSync uses to access your FSx ONTAP file system. See [SMB] (#smb) below.
- nfs
LocationFsx Ontap File System Protocol Nfs 
- Network File System (NFS) protocol that DataSync uses to access your FSx ONTAP file system. See NFS below.
- smb
LocationFsx Ontap File System Protocol Smb 
- Server Message Block (SMB) protocol that DataSync uses to access your FSx ONTAP file system. See [SMB] (#smb) below.
- nfs Property Map
- Network File System (NFS) protocol that DataSync uses to access your FSx ONTAP file system. See NFS below.
- smb Property Map
- Server Message Block (SMB) protocol that DataSync uses to access your FSx ONTAP file system. See [SMB] (#smb) below.
LocationFsxOntapFileSystemProtocolNfs, LocationFsxOntapFileSystemProtocolNfsArgs              
- MountOptions LocationFsx Ontap File System Protocol Nfs Mount Options 
- Mount options that are available for DataSync to access an NFS location. See NFS Mount Options below.
- MountOptions LocationFsx Ontap File System Protocol Nfs Mount Options 
- Mount options that are available for DataSync to access an NFS location. See NFS Mount Options below.
- mountOptions LocationFsx Ontap File System Protocol Nfs Mount Options 
- Mount options that are available for DataSync to access an NFS location. See NFS Mount Options below.
- mountOptions LocationFsx Ontap File System Protocol Nfs Mount Options 
- Mount options that are available for DataSync to access an NFS location. See NFS Mount Options below.
- mount_options LocationFsx Ontap File System Protocol Nfs Mount Options 
- Mount options that are available for DataSync to access an NFS location. See NFS Mount Options below.
- mountOptions Property Map
- Mount options that are available for DataSync to access an NFS location. See NFS Mount Options below.
LocationFsxOntapFileSystemProtocolNfsMountOptions, LocationFsxOntapFileSystemProtocolNfsMountOptionsArgs                  
- Version string
- Version string
- version String
- version string
- version str
- version String
LocationFsxOntapFileSystemProtocolSmb, LocationFsxOntapFileSystemProtocolSmbArgs              
- MountOptions LocationFsx Ontap File System Protocol Smb Mount Options 
- Mount options that are available for DataSync to access an SMB location. See SMB Mount Options below.
- Password string
- Password of a user who has permission to access your SVM.
- User string
- Username that can mount the location and access the files, folders, and metadata that you need in the SVM.
- Domain string
- Fully qualified domain name of the Microsoft Active Directory (AD) that your storage virtual machine belongs to.
- MountOptions LocationFsx Ontap File System Protocol Smb Mount Options 
- Mount options that are available for DataSync to access an SMB location. See SMB Mount Options below.
- Password string
- Password of a user who has permission to access your SVM.
- User string
- Username that can mount the location and access the files, folders, and metadata that you need in the SVM.
- Domain string
- Fully qualified domain name of the Microsoft Active Directory (AD) that your storage virtual machine belongs to.
- mountOptions LocationFsx Ontap File System Protocol Smb Mount Options 
- Mount options that are available for DataSync to access an SMB location. See SMB Mount Options below.
- password String
- Password of a user who has permission to access your SVM.
- user String
- Username that can mount the location and access the files, folders, and metadata that you need in the SVM.
- domain String
- Fully qualified domain name of the Microsoft Active Directory (AD) that your storage virtual machine belongs to.
- mountOptions LocationFsx Ontap File System Protocol Smb Mount Options 
- Mount options that are available for DataSync to access an SMB location. See SMB Mount Options below.
- password string
- Password of a user who has permission to access your SVM.
- user string
- Username that can mount the location and access the files, folders, and metadata that you need in the SVM.
- domain string
- Fully qualified domain name of the Microsoft Active Directory (AD) that your storage virtual machine belongs to.
- mount_options LocationFsx Ontap File System Protocol Smb Mount Options 
- Mount options that are available for DataSync to access an SMB location. See SMB Mount Options below.
- password str
- Password of a user who has permission to access your SVM.
- user str
- Username that can mount the location and access the files, folders, and metadata that you need in the SVM.
- domain str
- Fully qualified domain name of the Microsoft Active Directory (AD) that your storage virtual machine belongs to.
- mountOptions Property Map
- Mount options that are available for DataSync to access an SMB location. See SMB Mount Options below.
- password String
- Password of a user who has permission to access your SVM.
- user String
- Username that can mount the location and access the files, folders, and metadata that you need in the SVM.
- domain String
- Fully qualified domain name of the Microsoft Active Directory (AD) that your storage virtual machine belongs to.
LocationFsxOntapFileSystemProtocolSmbMountOptions, LocationFsxOntapFileSystemProtocolSmbMountOptionsArgs                  
- Version string
- Version string
- version String
- version string
- version str
- version String
Import
Using pulumi import, import aws_datasync_location_fsx_ontap_file_system using the DataSync-ARN#FSx-ontap-svm-ARN. For example:
$ pulumi import aws:datasync/locationFsxOntapFileSystem:LocationFsxOntapFileSystem example arn:aws:datasync:us-west-2:123456789012:location/loc-12345678901234567#arn:aws:fsx:us-west-2:123456789012:storage-virtual-machine/svm-12345678abcdef123
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.