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.
22482 22483 22484 22485 22486 22487 22488 |
# File 'lib/aws-sdk-quicksight/types.rb', line 22482 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.
22482 22483 22484 22485 22486 22487 22488 |
# File 'lib/aws-sdk-quicksight/types.rb', line 22482 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.
22482 22483 22484 22485 22486 22487 22488 |
# File 'lib/aws-sdk-quicksight/types.rb', line 22482 class ListNamespacesRequest < Struct.new( :aws_account_id, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |