Show / Hide Table of Contents

Class CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty

Container image configuration object for the monitoring job.

Inheritance
object
CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty
Implements
CfnMonitoringSchedulePropsMixin.IMonitoringAppSpecificationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty : CfnMonitoringSchedulePropsMixin.IMonitoringAppSpecificationProperty
Syntax (vb)
Public Class CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty Implements CfnMonitoringSchedulePropsMixin.IMonitoringAppSpecificationProperty
Remarks

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

             var monitoringAppSpecificationProperty = new MonitoringAppSpecificationProperty {
                 ContainerArguments = new [] { "containerArguments" },
                 ContainerEntrypoint = new [] { "containerEntrypoint" },
                 ImageUri = "imageUri",
                 PostAnalyticsProcessorSourceUri = "postAnalyticsProcessorSourceUri",
                 RecordPreprocessorSourceUri = "recordPreprocessorSourceUri"
             };

Synopsis

Constructors

MonitoringAppSpecificationProperty()

Container image configuration object for the monitoring job.

Properties

ContainerArguments

An array of arguments for the container used to run the monitoring job.

ContainerEntrypoint

Specifies the entrypoint for a container used to run the monitoring job.

ImageUri

The container image to be run by the monitoring job.

PostAnalyticsProcessorSourceUri

An Amazon S3 URI to a script that is called after analysis has been performed.

RecordPreprocessorSourceUri

An Amazon S3 URI to a script that is called per row prior to running analysis.

Constructors

MonitoringAppSpecificationProperty()

Container image configuration object for the monitoring job.

public MonitoringAppSpecificationProperty()
Remarks

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

             var monitoringAppSpecificationProperty = new MonitoringAppSpecificationProperty {
                 ContainerArguments = new [] { "containerArguments" },
                 ContainerEntrypoint = new [] { "containerEntrypoint" },
                 ImageUri = "imageUri",
                 PostAnalyticsProcessorSourceUri = "postAnalyticsProcessorSourceUri",
                 RecordPreprocessorSourceUri = "recordPreprocessorSourceUri"
             };

Properties

ContainerArguments

An array of arguments for the container used to run the monitoring job.

public string[]? ContainerArguments { get; set; }
Property Value

string[]

Remarks

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

ContainerEntrypoint

Specifies the entrypoint for a container used to run the monitoring job.

public string[]? ContainerEntrypoint { get; set; }
Property Value

string[]

Remarks

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

ImageUri

The container image to be run by the monitoring job.

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

string

Remarks

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

PostAnalyticsProcessorSourceUri

An Amazon S3 URI to a script that is called after analysis has been performed.

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

string

Remarks

Applicable only for the built-in (first party) containers.

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

RecordPreprocessorSourceUri

An Amazon S3 URI to a script that is called per row prior to running analysis.

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

string

Remarks

It can base64 decode the payload and convert it into a flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

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

Implements

CfnMonitoringSchedulePropsMixin.IMonitoringAppSpecificationProperty
Back to top Generated by DocFX