Class: Aws::ApplicationInsights::Types::DescribeComponentConfigurationRecommendationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationInsights::Types::DescribeComponentConfigurationRecommendationRequest
- Defined in:
- gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb
Overview
Note:
When making an API call, you may pass DescribeComponentConfigurationRecommendationRequest data as a hash:
{
resource_group_name: "ResourceGroupName", # required
component_name: "ComponentName", # required
tier: "CUSTOM", # required, accepts CUSTOM, DEFAULT, DOT_NET_CORE, DOT_NET_WORKER, DOT_NET_WEB_TIER, DOT_NET_WEB, SQL_SERVER, SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP, MYSQL, POSTGRESQL, JAVA_JMX, ORACLE, SAP_HANA_MULTI_NODE, SAP_HANA_SINGLE_NODE, SAP_HANA_HIGH_AVAILABILITY, SQL_SERVER_FAILOVER_CLUSTER_INSTANCE, SHAREPOINT, ACTIVE_DIRECTORY
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#component_name ⇒ String
The name of the component.
-
#resource_group_name ⇒ String
The name of the resource group.
-
#tier ⇒ String
The tier of the application component.
Instance Attribute Details
#component_name ⇒ String
The name of the component.
511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 511 class DescribeComponentConfigurationRecommendationRequest < Struct.new( :resource_group_name, :component_name, :tier) SENSITIVE = [] include Aws::Structure end |
#resource_group_name ⇒ String
The name of the resource group.
511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 511 class DescribeComponentConfigurationRecommendationRequest < Struct.new( :resource_group_name, :component_name, :tier) 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
.
511 512 513 514 515 516 517 |
# File 'gems/aws-sdk-applicationinsights/lib/aws-sdk-applicationinsights/types.rb', line 511 class DescribeComponentConfigurationRecommendationRequest < Struct.new( :resource_group_name, :component_name, :tier) SENSITIVE = [] include Aws::Structure end |