You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::KinesisAnalyticsV2::Types::MonitoringConfigurationUpdate

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing MonitoringConfigurationUpdate as input to an Aws::Client method, you can use a vanilla Hash:

{
  configuration_type_update: "DEFAULT", # accepts DEFAULT, CUSTOM
  metrics_level_update: "APPLICATION", # accepts APPLICATION, TASK, OPERATOR, PARALLELISM
  log_level_update: "INFO", # accepts INFO, WARN, ERROR, DEBUG
}

Describes updates to configuration parameters for Amazon CloudWatch logging for a Flink-based Kinesis Data Analytics application.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_type_updateString

Describes updates to whether to use the default CloudWatch logging configuration for an application. You must set this property to CUSTOM in order to set the LogLevel or MetricsLevel parameters.

Possible values:

  • DEFAULT
  • CUSTOM

Returns:

  • (String)

    Describes updates to whether to use the default CloudWatch logging configuration for an application.

#log_level_updateString

Describes updates to the verbosity of the CloudWatch Logs for an application.

Possible values:

  • INFO
  • WARN
  • ERROR
  • DEBUG

Returns:

  • (String)

    Describes updates to the verbosity of the CloudWatch Logs for an application.

#metrics_level_updateString

Describes updates to the granularity of the CloudWatch Logs for an application. The Parallelism level is not recommended for applications with a Parallelism over 64 due to excessive costs.

Possible values:

  • APPLICATION
  • TASK
  • OPERATOR
  • PARALLELISM

Returns:

  • (String)

    Describes updates to the granularity of the CloudWatch Logs for an application.