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

UpdateComponentInput

import type { UpdateComponentInput } from "https://aws-api.deno.dev/v0.4/services/proton.ts?docs=full";
interface UpdateComponentInput {
description?: string | null;
name: string;
serviceInstanceName?: string | null;
serviceName?: string | null;
serviceSpec?: string | null;
templateFile?: string | null;
}

§Properties

§
The deployment type. It defines the mode for updating a component, as follows:
NONE

In this mode, a deployment doesn't occur. Only the requested metadata parameters are updated. You can only specify description in this mode.

: CURRENT_VERSION In this mode, the component is deployed and updated with the new serviceSpec, templateSource, and/or type that you provide. Only requested parameters are updated.

§
description?: string | null
[src]

An optional customer-provided description of the component.

§
name: string
[src]

The name of the component to update.

§
serviceInstanceName?: string | null
[src]

The name of the service instance that you want to attach this component to. Don't specify to keep the component's current service instance attachment. Specify an empty string to detach the component from the service instance it's attached to. Specify non-empty values for both serviceInstanceName and serviceName or for neither of them.

§
serviceName?: string | null
[src]

The name of the service that serviceInstanceName is associated with. Don't specify to keep the component's current service instance attachment. Specify an empty string to detach the component from the service instance it's attached to. Specify non-empty values for both serviceInstanceName and serviceName or for neither of them.

§
serviceSpec?: string | null
[src]

The service spec that you want the component to use to access service inputs. Set this only when the component is attached to a service instance.

§
templateFile?: string | null
[src]

A path to the Infrastructure as Code (IaC) file describing infrastructure that a custom component provisions.

Note: Components support a single IaC file, even if you use Terraform as your template language.