Show / Hide Table of Contents

Class CfnMonitoringSchedule.MonitoringResourcesProperty

Identifies the resources to deploy for a monitoring job.

Inheritance
object
CfnMonitoringSchedule.MonitoringResourcesProperty
Implements
CfnMonitoringSchedule.IMonitoringResourcesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnMonitoringSchedule.MonitoringResourcesProperty : CfnMonitoringSchedule.IMonitoringResourcesProperty
Syntax (vb)
Public Class CfnMonitoringSchedule.MonitoringResourcesProperty Implements CfnMonitoringSchedule.IMonitoringResourcesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-monitoringresources.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.AWS.Sagemaker;

             var monitoringResourcesProperty = new MonitoringResourcesProperty {
                 ClusterConfig = new ClusterConfigProperty {
                     InstanceCount = 123,
                     InstanceType = "instanceType",
                     VolumeSizeInGb = 123,

                     // the properties below are optional
                     VolumeKmsKeyId = "volumeKmsKeyId"
                 }
             };

Synopsis

Constructors

MonitoringResourcesProperty()

Identifies the resources to deploy for a monitoring job.

Properties

ClusterConfig

The configuration for the cluster resources used to run the processing job.

Constructors

MonitoringResourcesProperty()

Identifies the resources to deploy for a monitoring job.

public MonitoringResourcesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-monitoringresources.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.AWS.Sagemaker;

             var monitoringResourcesProperty = new MonitoringResourcesProperty {
                 ClusterConfig = new ClusterConfigProperty {
                     InstanceCount = 123,
                     InstanceType = "instanceType",
                     VolumeSizeInGb = 123,

                     // the properties below are optional
                     VolumeKmsKeyId = "volumeKmsKeyId"
                 }
             };

Properties

ClusterConfig

The configuration for the cluster resources used to run the processing job.

public object ClusterConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-monitoringschedule-monitoringresources.html#cfn-sagemaker-monitoringschedule-monitoringresources-clusterconfig

Implements

CfnMonitoringSchedule.IMonitoringResourcesProperty
Back to top Generated by DocFX