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

ComponentSummary

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

Summary data of an Proton component resource.

For more information about components, see Proton components in the Proton User Guide.

interface ComponentSummary {
arn: string;
createdAt: Date | number;
deploymentStatus: DeploymentStatus;
deploymentStatusMessage?: string | null;
environmentName: string;
lastDeploymentAttemptedAt?: Date | number | null;
lastDeploymentSucceededAt?: Date | number | null;
lastModifiedAt: Date | number;
name: string;
serviceInstanceName?: string | null;
serviceName?: string | null;
}

§Properties

§
arn: string
[src]

The Amazon Resource Name (ARN) of the component.

§
createdAt: Date | number
[src]

The time when the component was created.

§
deploymentStatus: DeploymentStatus
[src]

The component deployment status.

§
deploymentStatusMessage?: string | null
[src]

The message associated with the component deployment status.

§
environmentName: string
[src]

The name of the Proton environment that this component is associated with.

§
lastDeploymentAttemptedAt?: Date | number | null
[src]

The time when a deployment of the component was last attempted.

§
lastDeploymentSucceededAt?: Date | number | null
[src]

The time when the component was last deployed successfully.

§
lastModifiedAt: Date | number
[src]

The time when the component was last modified.

§
name: string
[src]

The name of the component.

§
serviceInstanceName?: string | null
[src]

The name of the service instance that this component is attached to. Provided when a component is attached to a service instance.

§
serviceName?: string | null
[src]

The name of the service that serviceInstanceName is associated with. Provided when a component is attached to a service instance.