Class: Aws::KinesisAnalyticsV2::Types::MonitoringConfigurationUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::KinesisAnalyticsV2::Types::MonitoringConfigurationUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kinesisanalyticsv2/types.rb
Overview
Describes updates to configuration parameters for Amazon CloudWatch logging for an application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_type_update ⇒ String
Describes updates to whether to use the default CloudWatch logging configuration for an application.
-
#log_level_update ⇒ String
Describes updates to the verbosity of the CloudWatch Logs for an application.
-
#metrics_level_update ⇒ String
Describes updates to the granularity of the CloudWatch Logs for an application.
Instance Attribute Details
#configuration_type_update ⇒ String
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.
3711 3712 3713 3714 3715 3716 3717 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3711 class MonitoringConfigurationUpdate < Struct.new( :configuration_type_update, :metrics_level_update, :log_level_update) SENSITIVE = [] include Aws::Structure end |
#log_level_update ⇒ String
Describes updates to the verbosity of the CloudWatch Logs for an application.
3711 3712 3713 3714 3715 3716 3717 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3711 class MonitoringConfigurationUpdate < Struct.new( :configuration_type_update, :metrics_level_update, :log_level_update) SENSITIVE = [] include Aws::Structure end |
#metrics_level_update ⇒ String
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.
3711 3712 3713 3714 3715 3716 3717 |
# File 'lib/aws-sdk-kinesisanalyticsv2/types.rb', line 3711 class MonitoringConfigurationUpdate < Struct.new( :configuration_type_update, :metrics_level_update, :log_level_update) SENSITIVE = [] include Aws::Structure end |