Class: Aws::PrometheusService::Types::ScraperLoggingDestination

Inherits:
Struct
  • Object
show all
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

CloudWatchLogs, Unknown

Defined Under Namespace

Classes: CloudWatchLogs, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_watch_logsTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2072
2073
2074
# File 'gems/aws-sdk-prometheusservice/lib/aws-sdk-prometheusservice/types.rb', line 2072

def unknown
  @unknown
end