interface MetricSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals.CfnServiceLevelObjectivePropsMixin.MetricSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapplicationsignals#CfnServiceLevelObjectivePropsMixin_MetricSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.applicationsignals.CfnServiceLevelObjectivePropsMixin.MetricSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_applicationsignals.CfnServiceLevelObjectivePropsMixin.MetricSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_applicationsignals » CfnServiceLevelObjectivePropsMixin » MetricSourceProperty |
Configuration for identifying the source of metrics for non-Application Signals services.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_applicationsignals as applicationsignals } from '@aws-cdk/cfn-property-mixins';
const metricSourceProperty: applicationsignals.CfnServiceLevelObjectivePropsMixin.MetricSourceProperty = {
metricSourceAttributes: {
metricSourceAttributesKey: 'metricSourceAttributes',
},
metricSourceKeyAttributes: {
metricSourceKeyAttributesKey: 'metricSourceKeyAttributes',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| metric | IResolvable | { [string]: string } | Optional additional attributes for the metric source. |
| metric | IResolvable | { [string]: string } | Required attributes that identify the metric source. |
metricSourceAttributes?
Type:
IResolvable | { [string]: string }
(optional)
Optional additional attributes for the metric source.
metricSourceKeyAttributes?
Type:
IResolvable | { [string]: string }
(optional)
Required attributes that identify the metric source.

.NET
Go
Java
Python
TypeScript