Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProfilerRuleConfiguration

import type { ProfilerRuleConfiguration } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Configuration information for profiling rules.

interface ProfilerRuleConfiguration {
InstanceType?: ProcessingInstanceType | null;
LocalPath?: string | null;
RuleConfigurationName: string;
RuleEvaluatorImage: string;
RuleParameters?: {
[key: string]: string | null | undefined;
}
| null;
S3OutputPath?: string | null;
VolumeSizeInGB?: number | null;
}

§Properties

§
InstanceType?: ProcessingInstanceType | null
[src]

The instance type to deploy a custom rule for profiling a training job.

§
LocalPath?: string | null
[src]

Path to local storage location for output of rules. Defaults to /opt/ml/processing/output/rule/.

§
RuleConfigurationName: string
[src]

The name of the rule configuration. It must be unique relative to other rule configuration names.

§
RuleEvaluatorImage: string
[src]

The Amazon Elastic Container Registry Image for the managed rule evaluation.

§
RuleParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

Runtime configuration for rule container.

§
S3OutputPath?: string | null
[src]

Path to Amazon S3 storage location for rules.

§
VolumeSizeInGB?: number | null
[src]

The size, in GB, of the ML storage volume attached to the processing instance.