Class: Aws::QuickSight::Types::ListNamespacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ListNamespacesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_account_id ⇒ String
The ID for the Amazon Web Services account that contains the Amazon QuickSight namespaces that you want to list.
-
#max_results ⇒ Integer
The maximum number of results to return.
-
#next_token ⇒ String
A unique pagination token that can be used in a subsequent request.
Instance Attribute Details
#aws_account_id ⇒ String
The ID for the Amazon Web Services account that contains the Amazon QuickSight namespaces that you want to list.
21229 21230 21231 21232 21233 21234 21235 |
# File 'lib/aws-sdk-quicksight/types.rb', line 21229 class ListNamespacesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return.
21229 21230 21231 21232 21233 21234 21235 |
# File 'lib/aws-sdk-quicksight/types.rb', line 21229 class ListNamespacesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A unique pagination token that can be used in a subsequent request. You will receive a pagination token in the response body of a previous ‘ListNameSpaces` API call if there is more data that can be returned. To receive the data, make another `ListNamespaces` API call with the returned token to retrieve the next page of data. Each token is valid for 24 hours. If you try to make a `ListNamespaces` API call with an expired token, you will receive a `HTTP 400 InvalidNextTokenException` error.
21229 21230 21231 21232 21233 21234 21235 |
# File 'lib/aws-sdk-quicksight/types.rb', line 21229 class ListNamespacesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |