Skip to main content

locationf_sx_ontaps

Creates, updates, deletes or gets a locationf_sx_ontap resource or lists locationf_sx_ontaps in a region

Overview

Namelocationf_sx_ontaps
TypeResource
DescriptionResource schema for AWS::DataSync::LocationFSxONTAP.
Idaws.datasync.locationf_sx_ontaps

Fields

NameDatatypeDescription
storage_virtual_machine_arnstringThe Amazon Resource Name (ARN) for the FSx ONTAP SVM.
fsx_filesystem_arnstringThe Amazon Resource Name (ARN) for the FSx ONAP file system.
security_group_arnsarrayThe ARNs of the security groups that are to use to configure the FSx ONTAP file system.
protocolobjectConfiguration settings for an NFS or SMB protocol, currently only support NFS
subdirectorystringA subdirectory in the location's path.
tagsarrayAn array of key-value pairs to apply to this resource.
location_arnstringThe Amazon Resource Name (ARN) of the Amazon FSx ONTAP file system location that is created.
location_uristringThe URL of the FSx ONTAP file system that was described.
regionstringAWS region.

Methods

NameAccessible byRequired Params
create_resourceINSERTSecurityGroupArns, StorageVirtualMachineArn, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all locationf_sx_ontaps in a region.

SELECT
region,
storage_virtual_machine_arn,
fsx_filesystem_arn,
security_group_arns,
protocol,
subdirectory,
tags,
location_arn,
location_uri
FROM aws.datasync.locationf_sx_ontaps
WHERE region = 'us-east-1';

Gets all properties from an individual locationf_sx_ontap.

SELECT
region,
storage_virtual_machine_arn,
fsx_filesystem_arn,
security_group_arns,
protocol,
subdirectory,
tags,
location_arn,
location_uri
FROM aws.datasync.locationf_sx_ontaps
WHERE region = 'us-east-1' AND data__Identifier = '<LocationArn>';

INSERT example

Use the following StackQL query and manifest file to create a new locationf_sx_ontap resource, using stack-deploy.

/*+ create */
INSERT INTO aws.datasync.locationf_sx_ontaps (
StorageVirtualMachineArn,
SecurityGroupArns,
region
)
SELECT
'{{ StorageVirtualMachineArn }}',
'{{ SecurityGroupArns }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM aws.datasync.locationf_sx_ontaps
WHERE data__Identifier = '<LocationArn>'
AND region = 'us-east-1';

Permissions

To operate on the locationf_sx_ontaps resource, the following permissions are required:

Create

datasync:CreateLocationFsxOntap,
datasync:DescribeLocationFsxOntap,
datasync:ListTagsForResource,
datasync:TagResource,
fsx:DescribeStorageVirtualMachines,
fsx:DescribeFileSystems,
ec2:DescribeNetworkInterfaces,
ec2:DescribeSubnets,
ec2:DescribeSecurityGroups

Read

datasync:DescribeLocationFsxOntap,
datasync:ListTagsForResource

Update

datasync:DescribeLocationFsxOntap,
datasync:ListTagsForResource,
datasync:TagResource,
datasync:UntagResource

Delete

datasync:DeleteLocation

List

datasync:ListLocations