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.
2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 2601 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
2601 2602 2603 |
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 2601 def unknown @unknown end |