Class: Aws::QuickSight::Types::ListTemplatesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ListTemplatesRequest
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass ListTemplatesRequest data as a hash:
{
aws_account_id: "AwsAccountId", # required
next_token: "String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_account_id ⇒ String
The ID of the Amazon Web Services account that contains the templates that you're listing.
-
#max_results ⇒ Integer
The maximum number of results to be returned per request.
-
#next_token ⇒ String
The token for the next set of results, or null if there are no more results.
Instance Attribute Details
#aws_account_id ⇒ String
The ID of the Amazon Web Services account that contains the templates that you're listing.
9059 9060 9061 9062 9063 9064 9065 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9059 class ListTemplatesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to be returned per request.
9059 9060 9061 9062 9063 9064 9065 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9059 class ListTemplatesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results, or null if there are no more results.
9059 9060 9061 9062 9063 9064 9065 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9059 class ListTemplatesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |