Class: Aws::PrometheusService::Types::ScraperLoggingDestination
- Inherits:
-
Struct
- Object
- Struct
- Aws::PrometheusService::Types::ScraperLoggingDestination
- Defined in:
- gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb
Overview
Note:
ScraperLoggingDestination is a union - when making an API calls you must set exactly one of the members.
Note:
ScraperLoggingDestination is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ScraperLoggingDestination corresponding to the set member.
The destination where scraper logs are sent.
Direct Known Subclasses
Defined Under Namespace
Classes: CloudWatchLogs, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_logs ⇒ Types::CloudWatchLogDestination
The CloudWatch Logs configuration for the scraper logging destination.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#cloud_watch_logs ⇒ Types::CloudWatchLogDestination
The CloudWatch Logs configuration for the scraper logging destination.
2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 2072 class ScraperLoggingDestination < Struct.new( :cloud_watch_logs, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CloudWatchLogs < ScraperLoggingDestination; end class Unknown < ScraperLoggingDestination; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2072 2073 2074 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 2072 def unknown @unknown end |