Class: Aws::PrometheusService::Types::ListRuleGroupsNamespacesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::ListRuleGroupsNamespacesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-prometheusservice/types.rb
Overview
Represents the input of a ListRuleGroupsNamespaces operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results to return.
-
#name ⇒ String
Use this parameter to filter the rule groups namespaces that are returned.
-
#next_token ⇒ String
The token for the next set of items to return.
-
#workspace_id ⇒ String
The ID of the workspace containing the rule groups namespaces.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results to return. The default is 100.
1613 1614 1615 1616 1617 1618 1619 1620 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 1613 class ListRuleGroupsNamespacesRequest < Struct.new( :workspace_id, :name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
Use this parameter to filter the rule groups namespaces that are returned. Only the namespaces with names that begin with the value that you specify are returned.
1613 1614 1615 1616 1617 1618 1619 1620 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 1613 class ListRuleGroupsNamespacesRequest < Struct.new( :workspace_id, :name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of items to return. You receive this token from a previous call, and use it to get the next page of results. The other parameters must be the same as the initial call.
For example, if your initial request has maxResults of 10, and there are 12 rule groups namespaces to return, then your initial request will return 10 and a nextToken. Using the next token in a subsequent call will return the remaining 2 namespaces.
1613 1614 1615 1616 1617 1618 1619 1620 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 1613 class ListRuleGroupsNamespacesRequest < Struct.new( :workspace_id, :name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#workspace_id ⇒ String
The ID of the workspace containing the rule groups namespaces.
1613 1614 1615 1616 1617 1618 1619 1620 |
# File 'lib/aws-sdk-prometheusservice/types.rb', line 1613 class ListRuleGroupsNamespacesRequest < Struct.new( :workspace_id, :name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |