Show / Hide Table of Contents

Class CfnInferenceComponentPropsMixin.MetricsEndpointProperty

A metrics endpoint exposed by the container.

Inheritance
object
CfnInferenceComponentPropsMixin.MetricsEndpointProperty
Implements
CfnInferenceComponentPropsMixin.IMetricsEndpointProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInferenceComponentPropsMixin.MetricsEndpointProperty : CfnInferenceComponentPropsMixin.IMetricsEndpointProperty
Syntax (vb)
Public Class CfnInferenceComponentPropsMixin.MetricsEndpointProperty Implements CfnInferenceComponentPropsMixin.IMetricsEndpointProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-metricsendpoint.html

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.SageMaker;

             var metricsEndpointProperty = new MetricsEndpointProperty {
                 MetricPublishFrequencyInSeconds = 123,
                 MetricsEndpointPath = "metricsEndpointPath"
             };

Synopsis

Constructors

MetricsEndpointProperty()

A metrics endpoint exposed by the container.

Properties

MetricPublishFrequencyInSeconds

The interval, in seconds, at which container metrics scraped from the endpoint are published to Amazon CloudWatch.

MetricsEndpointPath

The path to the Prometheus formatted metrics endpoint exposed by the container.

Constructors

MetricsEndpointProperty()

A metrics endpoint exposed by the container.

public MetricsEndpointProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-metricsendpoint.html

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.SageMaker;

             var metricsEndpointProperty = new MetricsEndpointProperty {
                 MetricPublishFrequencyInSeconds = 123,
                 MetricsEndpointPath = "metricsEndpointPath"
             };

Properties

MetricPublishFrequencyInSeconds

The interval, in seconds, at which container metrics scraped from the endpoint are published to Amazon CloudWatch.

public double? MetricPublishFrequencyInSeconds { get; set; }
Property Value

double?

Remarks

Valid values per the SageMaker API Reference are 10, 30, 60, 120, 180, 240 and 300; the service validates the value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-metricsendpoint.html#cfn-sagemaker-inferencecomponent-metricsendpoint-metricpublishfrequencyinseconds

MetricsEndpointPath

The path to the Prometheus formatted metrics endpoint exposed by the container.

public string? MetricsEndpointPath { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-metricsendpoint.html#cfn-sagemaker-inferencecomponent-metricsendpoint-metricsendpointpath

Implements

CfnInferenceComponentPropsMixin.IMetricsEndpointProperty
Back to top Generated by DocFX