Class: Aws::MigrationHub::Types::ListMigrationTaskUpdatesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::ListMigrationTaskUpdatesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-migrationhub/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to include in the response.
-
#migration_task_name ⇒ String
A unique identifier that references the migration task.
-
#next_token ⇒ String
If ‘NextToken` was returned by a previous call, there are more results available.
-
#progress_update_stream ⇒ String
The name of the progress-update stream, which is used for access control as well as a namespace for migration-task names that is implicitly linked to your AWS account.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to include in the response. If more results exist than the value that you specify here for ‘MaxResults`, the response will include a token that you can use to retrieve the next set of results.
677 678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 677 class ListMigrationTaskUpdatesRequest < Struct.new( :progress_update_stream, :migration_task_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#migration_task_name ⇒ String
A unique identifier that references the migration task. *Do not include sensitive data in this field.*
677 678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 677 class ListMigrationTaskUpdatesRequest < Struct.new( :progress_update_stream, :migration_task_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If ‘NextToken` was returned by a previous call, there are more results available. The value of `NextToken` is a unique pagination token for each page. To retrieve the next page of results, specify the `NextToken` value that the previous call returned. Keep all other arguments unchanged. Each pagination token expires after 24 hours. Using an expired pagination token will return an HTTP 400 InvalidToken error.
677 678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 677 class ListMigrationTaskUpdatesRequest < Struct.new( :progress_update_stream, :migration_task_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#progress_update_stream ⇒ String
The name of the progress-update stream, which is used for access control as well as a namespace for migration-task names that is implicitly linked to your AWS account. The progress-update stream must uniquely identify the migration tool as it is used for all updates made by the tool; however, it does not need to be unique for each AWS account because it is scoped to the AWS account.
677 678 679 680 681 682 683 684 |
# File 'lib/aws-sdk-migrationhub/types.rb', line 677 class ListMigrationTaskUpdatesRequest < Struct.new( :progress_update_stream, :migration_task_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |