Class: Aws::RedshiftServerless::Types::ListWorkgroupsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ListWorkgroupsResponse
- Defined in:
- gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If
nextToken
is returned, there are more results available. -
#workgroups ⇒ Array<Types::Workgroup>
The returned array of workgroups.
Instance Attribute Details
#next_token ⇒ String
If nextToken
is returned, there are more results available. The
value of nextToken
is a unique pagination token for each page. To
retrieve the next page, make the call again using the returned
token.
1980 1981 1982 1983 1984 1985 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 1980 class ListWorkgroupsResponse < Struct.new( :next_token, :workgroups) SENSITIVE = [] include Aws::Structure end |
#workgroups ⇒ Array<Types::Workgroup>
The returned array of workgroups.
1980 1981 1982 1983 1984 1985 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 1980 class ListWorkgroupsResponse < Struct.new( :next_token, :workgroups) SENSITIVE = [] include Aws::Structure end |