Class: Aws::GreengrassV2::Types::ListInstalledComponentsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::ListInstalledComponentsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#core_device_thing_name ⇒ String
The name of the core device.
-
#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.
-
#topology_filter ⇒ String
The filter for the list of components.
Instance Attribute Details
#core_device_thing_name ⇒ String
The name of the core device. This is also the name of the IoT thing.
2673 2674 2675 2676 2677 2678 2679 2680 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2673 class ListInstalledComponentsRequest < Struct.new( :core_device_thing_name, :max_results, :next_token, :topology_filter) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per paginated request.
2673 2674 2675 2676 2677 2678 2679 2680 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2673 class ListInstalledComponentsRequest < Struct.new( :core_device_thing_name, :max_results, :next_token, :topology_filter) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results.
2673 2674 2675 2676 2677 2678 2679 2680 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2673 class ListInstalledComponentsRequest < Struct.new( :core_device_thing_name, :max_results, :next_token, :topology_filter) SENSITIVE = [] include Aws::Structure end |
#topology_filter ⇒ String
The filter for the list of components. Choose from the following options:
-
‘ALL` – The list includes all components installed on the core device.
-
‘ROOT` – The list includes only root components, which are components that you specify in a deployment. When you choose this option, the list doesn’t include components that the core device installs as dependencies of other components.
Default: ‘ROOT`
2673 2674 2675 2676 2677 2678 2679 2680 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 2673 class ListInstalledComponentsRequest < Struct.new( :core_device_thing_name, :max_results, :next_token, :topology_filter) SENSITIVE = [] include Aws::Structure end |