Class: Aws::MigrationHub::Types::ListMigrationTasksRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::ListMigrationTasksRequest
- Defined in:
- gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb
Overview
Note:
When making an API call, you may pass ListMigrationTasksRequest data as a hash:
{
next_token: "Token",
max_results: 1,
resource_name: "ResourceName",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Value to specify how many results are returned per page.
-
#next_token ⇒ String
If a
NextToken
was returned by a previous call, there are more results available. -
#resource_name ⇒ String
Filter migration tasks by discovered resource name.
Instance Attribute Details
#max_results ⇒ Integer
Value to specify how many results are returned per page.
720 721 722 723 724 725 726 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 720 class ListMigrationTasksRequest < Struct.new( :next_token, :max_results, :resource_name) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If a NextToken
was returned by a previous call, there are more
results available. To retrieve the next page of results, make the
call again using the returned token in NextToken
.
720 721 722 723 724 725 726 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 720 class ListMigrationTasksRequest < Struct.new( :next_token, :max_results, :resource_name) SENSITIVE = [] include Aws::Structure end |
#resource_name ⇒ String
Filter migration tasks by discovered resource name.
720 721 722 723 724 725 726 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 720 class ListMigrationTasksRequest < Struct.new( :next_token, :max_results, :resource_name) SENSITIVE = [] include Aws::Structure end |