Class: Aws::GreengrassV2::Types::ListDeploymentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::ListDeploymentsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#history_filter ⇒ String
The filter for the list of deployments.
-
#max_results ⇒ Integer
The maximum number of results to be returned per paginated request.
-
#next_token ⇒ String
The token to be used for the next set of paginated results.
-
#parent_target_arn ⇒ String
The parent deployment’s target [ARN] within a subdeployment.
-
#target_arn ⇒ String
The [ARN] of the target IoT thing or thing group.
Instance Attribute Details
#history_filter ⇒ String
The filter for the list of deployments. Choose one of the following options:
-
‘ALL` – The list includes all deployments.
-
‘LATEST_ONLY` – The list includes only the latest revision of each deployment.
Default: ‘LATEST_ONLY`
2576 2577 2578 2579 2580 2581 2582 2583 2584 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2576 class ListDeploymentsRequest < Struct.new( :target_arn, :history_filter, :parent_target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per paginated request.
Default: ‘50`
2576 2577 2578 2579 2580 2581 2582 2583 2584 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2576 class ListDeploymentsRequest < Struct.new( :target_arn, :history_filter, :parent_target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results.
2576 2577 2578 2579 2580 2581 2582 2583 2584 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2576 class ListDeploymentsRequest < Struct.new( :target_arn, :history_filter, :parent_target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#parent_target_arn ⇒ String
The parent deployment’s target [ARN] within a subdeployment.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2576 2577 2578 2579 2580 2581 2582 2583 2584 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2576 class ListDeploymentsRequest < Struct.new( :target_arn, :history_filter, :parent_target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#target_arn ⇒ String
The [ARN] of the target IoT thing or thing group.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
2576 2577 2578 2579 2580 2581 2582 2583 2584 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2576 class ListDeploymentsRequest < Struct.new( :target_arn, :history_filter, :parent_target_arn, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |