Class: Aws::FSx::Types::DataRepositoryTask

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb

Overview

A description of the data repository task.

  • You use import and export data repository tasks to perform bulk transfer operations between an Amazon FSx for Lustre file system and a linked data repository.

  • You use release data repository tasks to release files that have been exported to a linked S3 bucket from your Amazon FSx for Lustre file system.

  • An Amazon File Cache resource uses a task to automatically release files from the cache.

To learn more about data repository tasks, see Data Repository Tasks.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#capacity_to_releaseInteger

Specifies the amount of data to release, in GiB, by an Amazon File Cache AUTO_RELEASE_DATA task that automatically releases files from the cache.

Returns:

  • (Integer)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#creation_timeTime

The time that the resource was created, in seconds (since 1970-01-01T00:00:00Z), also known as Unix time.

Returns:

  • (Time)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#end_timeTime

The time the system completed processing the task, populated after the task is complete.

Returns:

  • (Time)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#failure_detailsTypes::DataRepositoryTaskFailureDetails

Failure message describing why the task failed, it is populated only when Lifecycle is set to FAILED.



3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#file_cache_idString

The system-generated, unique ID of the cache.

Returns:

  • (String)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#file_system_idString

The globally unique ID of the file system.

Returns:

  • (String)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#lifecycleString

The lifecycle status of the data repository task, as follows:

  • PENDING - The task has not started.

  • EXECUTING - The task is in process.

  • FAILED - The task was not able to be completed. For example, there may be files the task failed to process. The DataRepositoryTaskFailureDetails property provides more information about task failures.

  • SUCCEEDED - The task has completed successfully.

  • CANCELED - The task was canceled and it did not complete.

  • CANCELING - The task is in process of being canceled.

You cannot delete an FSx for Lustre file system if there are data repository tasks for the file system in the PENDING or EXECUTING states. Please retry when the data repository task is finished (with a status of CANCELED, SUCCEEDED, or FAILED). You can use the DescribeDataRepositoryTask action to monitor the task status. Contact the FSx team if you need to delete your file system immediately.

Returns:

  • (String)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#pathsArray<String>

An array of paths that specify the data for the data repository task to process. For example, in an EXPORT_TO_REPOSITORY task, the paths specify which data to export to the linked data repository.

(Default) If Paths is not specified, Amazon FSx uses the file system root directory.

Returns:

  • (Array<String>)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#release_configurationTypes::ReleaseConfiguration

The configuration that specifies the last accessed time criteria for files that will be released from an Amazon FSx for Lustre file system.



3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#reportTypes::CompletionReport

Provides a report detailing the data repository task results of the files processed that match the criteria specified in the report Scope parameter. FSx delivers the report to the file system's linked data repository in Amazon S3, using the path specified in the report Path parameter. You can specify whether or not a report gets generated for a task using the Enabled parameter.



3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#resource_arnString

The Amazon Resource Name (ARN) for a given resource. ARNs uniquely identify Amazon Web Services resources. We require an ARN when you need to specify a resource unambiguously across all of Amazon Web Services. For more information, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

Returns:

  • (String)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

The time the system began processing the task.

Returns:

  • (Time)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#statusTypes::DataRepositoryTaskStatus

Provides the status of the number of files that the task has processed successfully and failed to process.



3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of Tag values, with a maximum of 50 elements.

Returns:



3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#task_idString

The system-generated, unique 17-digit ID of the data repository task.

Returns:

  • (String)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of data repository task.

  • EXPORT_TO_REPOSITORY tasks export from your Amazon FSx for Lustre file system to a linked data repository.

  • IMPORT_METADATA_FROM_REPOSITORY tasks import metadata changes from a linked S3 bucket to your Amazon FSx for Lustre file system.

  • RELEASE_DATA_FROM_FILESYSTEM tasks release files in your Amazon FSx for Lustre file system that have been exported to a linked S3 bucket and that meet your specified release criteria.

  • AUTO_RELEASE_DATA tasks automatically release files from an Amazon File Cache resource.

Returns:

  • (String)


3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
# File 'gems/aws-sdk-fsx/lib/aws-sdk-fsx/types.rb', line 3926

class DataRepositoryTask < Struct.new(
  :task_id,
  :lifecycle,
  :type,
  :creation_time,
  :start_time,
  :end_time,
  :resource_arn,
  :tags,
  :file_system_id,
  :paths,
  :failure_details,
  :status,
  :report,
  :capacity_to_release,
  :file_cache_id,
  :release_configuration)
  SENSITIVE = []
  include Aws::Structure
end