Interface CfnApplication.HANAPrometheusExporterProperty
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- CfnApplication.HANAPrometheusExporterProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.HANAPrometheusExporterProperty
extends software.amazon.jsii.JsiiSerializable
The 
AWS::ApplicationInsights::Application HANAPrometheusExporter property type defines the HANA DB Prometheus Exporter settings.
 For more information, see the component configuration in the CloudWatch Application Insights documentation.
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.applicationinsights.*;
 HANAPrometheusExporterProperty hANAPrometheusExporterProperty = HANAPrometheusExporterProperty.builder()
         .agreeToInstallHanadbClient(false)
         .hanaPort("hanaPort")
         .hanaSecretName("hanaSecretName")
         .hanasid("hanasid")
         // the properties below are optional
         .prometheusPort("prometheusPort")
         .build();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.HANAPrometheusExporterPropertystatic final classAn implementation forCfnApplication.HANAPrometheusExporterProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()Designates whether you agree to install the HANA DB client.The HANA database port by which the exporter will query HANA metrics.The AWS Secrets Manager secret that stores HANA monitoring user credentials.The three-character SAP system ID (SID) of the SAP HANA system.default StringThe target port to which Prometheus sends metrics.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAgreeToInstallHanadbClientDesignates whether you agree to install the HANA DB client.Returns union: either BooleanorIResolvable- See Also:
 
- 
getHanaPortThe HANA database port by which the exporter will query HANA metrics.- See Also:
 
- 
getHanaSecretNameThe AWS Secrets Manager secret that stores HANA monitoring user credentials.The HANA Prometheus exporter uses these credentials to connect to the database and query HANA metrics. - See Also:
 
- 
getHanasidThe three-character SAP system ID (SID) of the SAP HANA system.- See Also:
 
- 
getPrometheusPortThe target port to which Prometheus sends metrics.If not specified, the default port 9668 is used. - See Also:
 
- 
builder
 
-