Interface CfnServiceLevelObjectivePropsMixin.IDependencyConfigProperty
Identifies the dependency using the DependencyKeyAttributes and DependencyOperationName .
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnServiceLevelObjectivePropsMixin.IDependencyConfigProperty
Syntax (vb)
Public Interface CfnServiceLevelObjectivePropsMixin.IDependencyConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.ApplicationSignals;
var dependencyConfigProperty = new DependencyConfigProperty {
DependencyKeyAttributes = new Dictionary<string, string> {
{ "dependencyKeyAttributesKey", "dependencyKeyAttributes" }
},
DependencyOperationName = "dependencyOperationName"
};
Synopsis
Properties
| DependencyKeyAttributes | If this SLO is related to a metric collected by Application Signals, you must use this field to specify which dependency the SLO metric is related to. |
| DependencyOperationName | When the SLO monitors a specific operation of the dependency, this field specifies the name of that operation in the dependency. |
Properties
DependencyKeyAttributes
If this SLO is related to a metric collected by Application Signals, you must use this field to specify which dependency the SLO metric is related to.
object? DependencyKeyAttributes { get; }
Property Value
Remarks
DependencyOperationName
When the SLO monitors a specific operation of the dependency, this field specifies the name of that operation in the dependency.
string? DependencyOperationName { get; }