Class: Aws::RedshiftServerless::Types::ListUsageLimitsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::ListUsageLimitsResponse
- Defined in:
- gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
When
nextToken
is returned, there are more results available. -
#usage_limits ⇒ Array<Types::UsageLimit>
An array of returned usage limit objects.
Instance Attribute Details
#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.
2231 2232 2233 2234 2235 2236 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 2231 class ListUsageLimitsResponse < Struct.new( :next_token, :usage_limits) SENSITIVE = [] include Aws::Structure end |
#usage_limits ⇒ Array<Types::UsageLimit>
An array of returned usage limit objects.
2231 2232 2233 2234 2235 2236 |
# File 'gems/aws-sdk-redshiftserverless/lib/aws-sdk-redshiftserverless/types.rb', line 2231 class ListUsageLimitsResponse < Struct.new( :next_token, :usage_limits) SENSITIVE = [] include Aws::Structure end |