Class: Aws::PrometheusService::Types::ListWorkspacesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::ListWorkspacesResponse
- Defined in:
- gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb
Overview
Represents the output of a ListWorkspaces
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
A token indicating that there are more results to retrieve.
-
#workspaces ⇒ Array<Types::WorkspaceSummary>
An array of
WorkspaceSummary
structures containing information about the workspaces requested.
Instance Attribute Details
#next_token ⇒ String
A token indicating that there are more results to retrieve. You can
use this token as part of your next ListWorkspaces
request to
retrieve those results.
1056 1057 1058 1059 1060 1061 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 1056 class ListWorkspacesResponse < Struct.new( :next_token, :workspaces) SENSITIVE = [] include Aws::Structure end |
#workspaces ⇒ Array<Types::WorkspaceSummary>
An array of WorkspaceSummary
structures containing information
about the workspaces requested.
1056 1057 1058 1059 1060 1061 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 1056 class ListWorkspacesResponse < Struct.new( :next_token, :workspaces) SENSITIVE = [] include Aws::Structure end |