Show / Hide Table of Contents

Class ServiceLevelObjectiveThresholdArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceLevelObjectiveThresholdArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Datadog.Inputs
Assembly: Pulumi.Datadog.dll
Syntax
public sealed class ServiceLevelObjectiveThresholdArgs : ResourceArgs

Constructors

View Source

ServiceLevelObjectiveThresholdArgs()

Declaration
public ServiceLevelObjectiveThresholdArgs()

Properties

View Source

Target

the objective's target [0,100]

Declaration
public Input<double> Target { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

TargetDisplay

the string version to specify additional digits in the case of 99 but want 3 digits like 99.000 to display.

Declaration
public Input<string> TargetDisplay { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Timeframe

the time frame for the objective. The mapping from these types to the types found in the Datadog Web UI can be found in the Datadog API documentation page. Available options to choose from are:

  • 7d
  • 30d
  • 90d
Declaration
public Input<string> Timeframe { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Warning

the objective's warning value [0,100]. This must be > target value.

Declaration
public Input<double> Warning { get; set; }
Property Value
Type Description
Input<System.Double>
View Source

WarningDisplay

the string version to specify additional digits in the case of 99 but want 3 digits like 99.000 to display.

Declaration
public Input<string> WarningDisplay { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.