Class: Aws::PrometheusService::Types::CreateAlertManagerDefinitionRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PrometheusService::Types::CreateAlertManagerDefinitionRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-prometheusservice/types.rb
 
Overview
Represents the input of a ‘CreateAlertManagerDefinition` 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 alert manager definition to add.
 - 
  
    
      #workspace_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the workspace to add the alert manager definition to.
 
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.
      153 154 155 156 157 158 159  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 153 class CreateAlertManagerDefinitionRequest < Struct.new( :client_token, :data, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#data ⇒ String
The alert manager definition to add. A base64-encoded version of the YAML alert manager definition file.
For details about the alert manager definition, see [AlertManagedDefinitionData].
[1]: docs.aws.amazon.com/prometheus/latest/APIReference/yaml-AlertManagerDefinitionData.html
      153 154 155 156 157 158 159  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 153 class CreateAlertManagerDefinitionRequest < Struct.new( :client_token, :data, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#workspace_id ⇒ String
The ID of the workspace to add the alert manager definition to.
      153 154 155 156 157 158 159  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 153 class CreateAlertManagerDefinitionRequest < Struct.new( :client_token, :data, :workspace_id) SENSITIVE = [] include Aws::Structure end  |