Class: Aws::ApplicationInsights::Types::DescribeComponentConfigurationResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::DescribeComponentConfigurationResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-applicationinsights/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_configuration ⇒ String
The configuration settings of the component.
-
#monitor ⇒ Boolean
Indicates whether the application component is monitored.
-
#tier ⇒ String
The tier of the application component.
Instance Attribute Details
#component_configuration ⇒ String
The configuration settings of the component. The value is the escaped JSON of the configuration.
605 606 607 608 609 610 611 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 605 class DescribeComponentConfigurationResponse < Struct.new( :monitor, :tier, :component_configuration) SENSITIVE = [] include Aws::Structure end |
#monitor ⇒ Boolean
Indicates whether the application component is monitored.
605 606 607 608 609 610 611 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 605 class DescribeComponentConfigurationResponse < Struct.new( :monitor, :tier, :component_configuration) SENSITIVE = [] include Aws::Structure end |
#tier ⇒ String
The tier of the application component. Supported tiers include ‘DOT_NET_CORE`, `DOT_NET_WORKER`, `DOT_NET_WEB`, `SQL_SERVER`, and `DEFAULT`
605 606 607 608 609 610 611 |
# File 'lib/aws-sdk-applicationinsights/types.rb', line 605 class DescribeComponentConfigurationResponse < Struct.new( :monitor, :tier, :component_configuration) SENSITIVE = [] include Aws::Structure end |