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

CreateComponentInput

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

§Properties

§
description?: string | null
[src]

An optional customer-provided description of the component.

§
environmentName?: string | null
[src]

The name of the Proton environment that you want to associate this component with. You must specify this when you don't specify serviceInstanceName and serviceName.

§
manifest: string
[src]

A path to a manifest file that lists the Infrastructure as Code (IaC) file, template language, and rendering engine for infrastructure that a custom component provisions.

§
name: string
[src]

The customer-provided name of the component.

§
serviceInstanceName?: string | null
[src]

The name of the service instance that you want to attach this component to. If you don't specify this, the component isn't attached to any service instance. Specify both serviceInstanceName and serviceName or neither of them.

§
serviceName?: string | null
[src]

The name of the service that serviceInstanceName is associated with. If you don't specify this, the component isn't attached to any service instance. Specify both serviceInstanceName and serviceName or 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 you attach the component to a service instance.

§
tags?: Tag[] | null
[src]

An optional list of metadata items that you can associate with the Proton component. A tag is a key-value pair.

For more information, see Proton resources and tagging in the Proton User Guide.

§
templateFile: string
[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.