Class: Aws::PrometheusService::Types::ScrapeConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PrometheusService::Types::ScrapeConfiguration
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-prometheusservice/types.rb
 
Overview
    Note:
    
  
  ScrapeConfiguration is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
ScrapeConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ScrapeConfiguration corresponding to the set member.
A scrape configuration for a scraper, base 64 encoded. For more information, see [Scraper configuration] in the *Amazon Managed Service for Prometheus User Guide*.
Direct Known Subclasses
Defined Under Namespace
Classes: ConfigurationBlob, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #configuration_blob  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The base 64 encoded scrape configuration file.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#configuration_blob ⇒ String
The base 64 encoded scrape configuration file.
      1421 1422 1423 1424 1425 1426 1427 1428 1429 1430  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 1421 class ScrapeConfiguration < Struct.new( :configuration_blob, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ConfigurationBlob < ScrapeConfiguration; end class Unknown < ScrapeConfiguration; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      1421 1422 1423  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 1421 def unknown @unknown end  |