MonitoringSchedule

class MonitoringSchedule : KotlinCustomResource

Provides a SageMaker monitoring schedule resource.

Example Usage

Basic usage:

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.MonitoringSchedule;
import com.pulumi.aws.sagemaker.MonitoringScheduleArgs;
import com.pulumi.aws.sagemaker.inputs.MonitoringScheduleMonitoringScheduleConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new MonitoringSchedule("test", MonitoringScheduleArgs.builder()
.monitoringScheduleConfig(MonitoringScheduleMonitoringScheduleConfigArgs.builder()
.monitoringJobDefinitionName(aws_sagemaker_data_quality_job_definition.test().name())
.monitoringType("DataQuality")
.build())
.build());
}
}

Import

Using pulumi import, import monitoring schedules using the name. For example:

$ pulumi import aws:sagemaker/monitoringSchedule:MonitoringSchedule test_monitoring_schedule monitoring-schedule-foo

Properties

Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) assigned by AWS to this monitoring schedule.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The configuration object that specifies the monitoring schedule and defines the monitoring job. Fields are documented below.

Link copied to clipboard
val name: Output<String>

The name of the monitoring schedule. The name must be unique within an AWS Region within an AWS account. If omitted, the provider will assign a random, unique name.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

A mapping of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>