Class CfnMonitoringSchedulePropsMixin.MonitoringAppSpecificationProperty
Container image configuration object for the monitoring job.
Inherited Members
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
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
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
ContainerEntrypoint
Specifies the entrypoint for a container used to run the monitoring job.
public string[]? ContainerEntrypoint { get; set; }
Property Value
string[]
Remarks
ImageUri
The container image to be run by the monitoring job.
public string? ImageUri { get; set; }
Property Value
Remarks
PostAnalyticsProcessorSourceUri
An Amazon S3 URI to a script that is called after analysis has been performed.
public string? PostAnalyticsProcessorSourceUri { get; set; }
Property Value
Remarks
Applicable only for the built-in (first party) containers.
RecordPreprocessorSourceUri
An Amazon S3 URI to a script that is called per row prior to running analysis.
public string? RecordPreprocessorSourceUri { get; set; }
Property Value
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.