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

Class: Aws::ApplicationInsights::Types::UpdateComponentConfigurationRequest

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

Overview

Note:

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

{
  resource_group_name: "ResourceGroupName", # required
  component_name: "ComponentName", # required
  monitor: false,
  tier: "DEFAULT", # accepts DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB, SQL_SERVER
  component_configuration: "ComponentConfiguration",
}

Instance Attribute Summary collapse

Instance Attribute Details

#component_configurationString

The configuration settings of the component. The value is the escaped JSON of the configuration. For more information about the JSON format, see Working with JSON. You can send a request to DescribeComponentConfigurationRecommendation to see the recommended configuration for a component. For the complete format of the component configuration file, see Component Configuration.

Returns:

  • (String)

    The configuration settings of the component.

#component_nameString

The name of the component.

Returns:

  • (String)

    The name of the component.

#monitorBoolean

Indicates whether the application component is monitored.

Returns:

  • (Boolean)

    Indicates whether the application component is monitored.

#resource_group_nameString

The name of the resource group.

Returns:

  • (String)

    The name of the resource group.

#tierString

The tier of the application component. Supported tiers include DOT_NET_WORKER, DOT_NET_WEB, DOT_NET_CORE, SQL_SERVER, and DEFAULT.

Possible values:

  • DEFAULT
  • DOT_NET_CORE
  • DOT_NET_WORKER
  • DOT_NET_WEB
  • SQL_SERVER

Returns:

  • (String)

    The tier of the application component.