Class: Aws::LaunchWizard::Types::ListDeploymentsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::LaunchWizard::Types::ListDeploymentsInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-launchwizard/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::DeploymentFilter>
Filters to scope the results.
-
#max_results ⇒ Integer
The maximum number of items to return for this request.
-
#next_token ⇒ String
The token returned from a previous paginated request.
Instance Attribute Details
#filters ⇒ Array<Types::DeploymentFilter>
Filters to scope the results. The following filters are supported:
-
‘WORKLOAD_NAME` - The name used in deployments.
-
‘DEPLOYMENT_STATUS` - `COMPLETED` | `CREATING` | `DELETE_IN_PROGRESS` | `DELETE_INITIATING` | `DELETE_FAILED` | `DELETED` | `FAILED` | `IN_PROGRESS` | `VALIDATING`
513 514 515 516 517 518 519 |
# File 'lib/aws-sdk-launchwizard/types.rb', line 513 class ListDeploymentsInput < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.
513 514 515 516 517 518 519 |
# File 'lib/aws-sdk-launchwizard/types.rb', line 513 class ListDeploymentsInput < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
513 514 515 516 517 518 519 |
# File 'lib/aws-sdk-launchwizard/types.rb', line 513 class ListDeploymentsInput < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |