Class: Aws::RedshiftServerless::Types::ListNamespacesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ListNamespacesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshiftserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#namespaces ⇒ Array<Types::Namespace>
The list of returned namespaces.
-
#next_token ⇒ String
When ‘nextToken` is returned, there are more results available.
Instance Attribute Details
#namespaces ⇒ Array<Types::Namespace>
The list of returned namespaces.
1632 1633 1634 1635 1636 1637 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 1632 class ListNamespacesResponse < Struct.new( :namespaces, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
When ‘nextToken` is returned, there are more results available. The value of `nextToken` is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.
1632 1633 1634 1635 1636 1637 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 1632 class ListNamespacesResponse < Struct.new( :namespaces, :next_token) SENSITIVE = [] include Aws::Structure end |