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

UpdateEndpointInput

import type { UpdateEndpointInput } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface UpdateEndpointInput {
DeploymentConfig?: DeploymentConfig | null;
EndpointConfigName: string;
EndpointName: string;
ExcludeRetainedVariantProperties?: VariantProperty[] | null;
RetainAllVariantProperties?: boolean | null;
RetainDeploymentConfig?: boolean | null;
}

§Properties

§
DeploymentConfig?: DeploymentConfig | null
[src]

The deployment configuration for an endpoint, which contains the desired deployment strategy and rollback configurations.

§
EndpointConfigName: string
[src]

The name of the new endpoint configuration.

§
EndpointName: string
[src]

The name of the endpoint whose configuration you want to update.

§
ExcludeRetainedVariantProperties?: VariantProperty[] | null
[src]

When you are updating endpoint resources with "UpdateEndpointInput$RetainAllVariantProperties", whose value is set to true, ExcludeRetainedVariantProperties specifies the list of type "VariantProperty" to override with the values provided by EndpointConfig. If you don't specify a value for ExcludeRetainedVariantProperties, no variant properties are overridden.

§
RetainAllVariantProperties?: boolean | null
[src]

When updating endpoint resources, enables or disables the retention of variant properties, such as the instance count or the variant weight. To retain the variant properties of an endpoint when updating it, set RetainAllVariantProperties to true. To use the variant properties specified in a new EndpointConfig call when updating an endpoint, set RetainAllVariantProperties to false. The default is false.

§
RetainDeploymentConfig?: boolean | null
[src]

Specifies whether to reuse the last deployment configuration. The default value is false (the configuration is not reused).