Class: Aws::CodeStar::Types::ListResourcesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStar::Types::ListResourcesRequest
- Defined in:
- gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb
Overview
Note:
When making an API call, you may pass ListResourcesRequest data as a hash:
{
project_id: "ProjectId", # required
next_token: "PaginationToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum amount of data that can be contained in a single set of results.
-
#next_token ⇒ String
The continuation token for the next set of results, if the results cannot be returned in one response.
-
#project_id ⇒ String
The ID of the project.
Instance Attribute Details
#max_results ⇒ Integer
The maximum amount of data that can be contained in a single set of results.
855 856 857 858 859 860 861 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 855 class ListResourcesRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The continuation token for the next set of results, if the results cannot be returned in one response.
855 856 857 858 859 860 861 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 855 class ListResourcesRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#project_id ⇒ String
The ID of the project.
855 856 857 858 859 860 861 |
# File 'gems/aws-sdk-codestar/lib/aws-sdk-codestar/types.rb', line 855 class ListResourcesRequest < Struct.new( :project_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |