/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource schema for AWS::DataSync::LocationFSxLustre. */ export interface AwsDatasyncLocationfsxlustre { /** * The Amazon Resource Name (ARN) for the FSx for Lustre file system. */ FsxFilesystemArn?: string; /** * The ARNs of the security groups that are to use to configure the FSx for Lustre file system. * * @minItems 1 * @maxItems 5 */ SecurityGroupArns: | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string]; /** * A subdirectory in the location's path. */ Subdirectory?: string; /** * An array of key-value pairs to apply to this resource. * * @minItems 0 * @maxItems 50 */ Tags?: Tag[]; /** * The Amazon Resource Name (ARN) of the Amazon FSx for Lustre file system location that is created. */ LocationArn?: string; /** * The URL of the FSx for Lustre location that was described. */ LocationUri?: string; } /** * A key-value pair to associate with a resource. */ export interface Tag { /** * The key for an AWS resource tag. */ Key: string; /** * The value for an AWS resource tag. */ Value: string; }