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

UpdateServiceRequest

import type { UpdateServiceRequest } from "https://aws-api.deno.dev/v0.3/services/apprunner.ts?docs=full";
interface UpdateServiceRequest {
AutoScalingConfigurationArn?: string | null;
HealthCheckConfiguration?: HealthCheckConfiguration | null;
InstanceConfiguration?: InstanceConfiguration | null;
ServiceArn: string;
SourceConfiguration?: SourceConfiguration | null;
}

§Properties

§
AutoScalingConfigurationArn?: string | null
[src]

The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with your service.

§
HealthCheckConfiguration?: HealthCheckConfiguration | null
[src]

The settings for the health check that App Runner performs to monitor the health of your service.

§
InstanceConfiguration?: InstanceConfiguration | null
[src]

The runtime configuration to apply to instances (scaling units) of the App Runner service.

§
ServiceArn: string
[src]

The Amazon Resource Name (ARN) of the App Runner service that you want to update.

§
SourceConfiguration?: SourceConfiguration | null
[src]

The source configuration to apply to the App Runner service.

You can change the configuration of the code or image repository that the service uses. However, you can't switch from code to image or the other way around. This means that you must provide the same structure member of SourceConfiguration that you originally included when you created the service. Specifically, you can include either CodeRepository or ImageRepository. To update the source configuration, set the values to members of the structure that you include.