Class: Aws::Personalize::Types::DatasetImportJobSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::DatasetImportJobSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides a summary of the properties of a dataset import job. For a complete listing, call the [DescribeDatasetImportJob] API.
[1]: docs.aws.amazon.com/personalize/latest/dg/API_DescribeDatasetImportJob.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time (in Unix time) that the dataset import job was created.
-
#dataset_import_job_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset import job.
-
#failure_reason ⇒ String
If a dataset import job fails, the reason behind the failure.
-
#import_mode ⇒ String
The import mode the dataset import job used to update the data in the dataset.
-
#job_name ⇒ String
The name of the dataset import job.
-
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the dataset import job status was last updated.
-
#status ⇒ String
The status of the dataset import job.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time (in Unix time) that the dataset import job was created.
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |
#dataset_import_job_arn ⇒ String
The Amazon Resource Name (ARN) of the dataset import job.
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |
#failure_reason ⇒ String
If a dataset import job fails, the reason behind the failure.
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |
#import_mode ⇒ String
The import mode the dataset import job used to update the data in the dataset. For more information see [Updating existing bulk data].
[1]: docs.aws.amazon.com/personalize/latest/dg/updating-existing-bulk-data.html
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |
#job_name ⇒ String
The name of the dataset import job.
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the dataset import job status was last updated.
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the dataset import job.
A dataset import job can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
^
2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 |
# File 'lib/aws-sdk-personalize/types.rb', line 2503 class DatasetImportJobSummary < Struct.new( :dataset_import_job_arn, :job_name, :status, :creation_date_time, :last_updated_date_time, :failure_reason, :import_mode) SENSITIVE = [] include Aws::Structure end |