Class: Aws::IoTSiteWise::Types::ListProjectAssetsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ListProjectAssetsRequest
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Note:
When making an API call, you may pass ListProjectAssetsRequest data as a hash:
{
project_id: "ID", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
-
#next_token ⇒ String
The token to be used for the next set of paginated results.
-
#project_id ⇒ String
The ID of the project.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return for each paginated request.
Default: 50
5772 5773 5774 5775 5776 5777 5778 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5772 class ListProjectAssetsRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to be used for the next set of paginated results.
5772 5773 5774 5775 5776 5777 5778 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5772 class ListProjectAssetsRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#project_id ⇒ String
The ID of the project.
5772 5773 5774 5775 5776 5777 5778 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5772 class ListProjectAssetsRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |