Class: Aws::PrometheusService::Types::PutRuleGroupsNamespaceRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PrometheusService::Types::PutRuleGroupsNamespaceRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-prometheusservice/types.rb
 
Overview
Represents the input of a ‘PutRuleGroupsNamespace` operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier that you can provide to ensure the idempotency of the request.
 - 
  
    
      #data  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The new rules file to use in the namespace.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the rule groups namespace that you are updating.
 - 
  
    
      #workspace_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the workspace where you are updating the rule groups namespace.
 
Instance Attribute Details
#client_token ⇒ String
A unique identifier that you can provide to ensure the idempotency of the request. Case-sensitive.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
      1203 1204 1205 1206 1207 1208 1209 1210  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 1203 class PutRuleGroupsNamespaceRequest < Struct.new( :client_token, :data, :name, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#data ⇒ String
The new rules file to use in the namespace. A base64-encoded version of the YAML rule groups file.
For details about the rule groups namespace structure, see [RuleGroupsNamespaceData].
[1]: docs.aws.amazon.com/prometheus/latest/APIReference/yaml-RuleGroupsNamespaceData.html
      1203 1204 1205 1206 1207 1208 1209 1210  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 1203 class PutRuleGroupsNamespaceRequest < Struct.new( :client_token, :data, :name, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the rule groups namespace that you are updating.
      1203 1204 1205 1206 1207 1208 1209 1210  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 1203 class PutRuleGroupsNamespaceRequest < Struct.new( :client_token, :data, :name, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#workspace_id ⇒ String
The ID of the workspace where you are updating the rule groups namespace.
      1203 1204 1205 1206 1207 1208 1209 1210  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 1203 class PutRuleGroupsNamespaceRequest < Struct.new( :client_token, :data, :name, :workspace_id) SENSITIVE = [] include Aws::Structure end  |