Skip to main content

locationf_sx_lustres

Creates, updates, deletes or gets a locationf_sx_lustre resource or lists locationf_sx_lustres in a region

Overview

Namelocationf_sx_lustres
TypeResource
DescriptionResource schema for AWS::DataSync::LocationFSxLustre.
Idawscc.datasync.locationf_sx_lustres

Fields

NameDatatypeDescription
fsx_filesystem_arnstringThe Amazon Resource Name (ARN) for the FSx for Lustre file system.
security_group_arnsarrayThe ARNs of the security groups that are to use to configure the FSx for Lustre file system.
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 for Lustre file system location that is created.
location_uristringThe URL of the FSx for Lustre location that was described.
regionstringAWS region.

For more information, see AWS::DataSync::LocationFSxLustre.

Methods

NameResourceAccessible byRequired Params
create_resourcelocationf_sx_lustresINSERTSecurityGroupArns, region
delete_resourcelocationf_sx_lustresDELETEIdentifier, region
update_resourcelocationf_sx_lustresUPDATEIdentifier, PatchDocument, region
list_resourceslocationf_sx_lustres_list_onlySELECTregion
get_resourcelocationf_sx_lustresSELECTIdentifier, region

SELECT examples

Gets all properties from an individual locationf_sx_lustre.

SELECT
region,
fsx_filesystem_arn,
security_group_arns,
subdirectory,
tags,
location_arn,
location_uri
FROM awscc.datasync.locationf_sx_lustres
WHERE
region = 'us-east-1' AND
Identifier = '{{ location_arn }}';

INSERT example

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

/*+ create */
INSERT INTO awscc.datasync.locationf_sx_lustres (
SecurityGroupArns,
region
)
SELECT
'{{ security_group_arns }}',
'{{ region }}';

UPDATE example

Use the following StackQL query and manifest file to update a locationf_sx_lustre resource, using stack-deploy.

/*+ update */
UPDATE awscc.datasync.locationf_sx_lustres
SET PatchDocument = string('{{ {
"Subdirectory": subdirectory,
"Tags": tags
} | generate_patch_document }}')
WHERE
region = '{{ region }}' AND
Identifier = '{{ location_arn }}';

DELETE example

/*+ delete */
DELETE FROM awscc.datasync.locationf_sx_lustres
WHERE
Identifier = '{{ location_arn }}' AND
region = 'us-east-1';

Permissions

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

datasync:CreateLocationFsxLustre,
datasync:DescribeLocationFsxLustre,
datasync:ListTagsForResource,
datasync:TagResource,
fsx:DescribeFileSystems,
ec2:DescribeNetworkInterfaces,
ec2:DescribeSubnets,
ec2:DescribeSecurityGroups