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

Blueprint

import type { Blueprint } from "https://aws-api.deno.dev/v0.3/services/glue.ts?docs=full";

The details of a blueprint.

interface Blueprint {
BlueprintLocation?: string | null;
BlueprintServiceLocation?: string | null;
CreatedOn?: Date | number | null;
Description?: string | null;
ErrorMessage?: string | null;
LastActiveDefinition?: LastActiveDefinition | null;
LastModifiedOn?: Date | number | null;
Name?: string | null;
ParameterSpec?: string | null;
Status?: BlueprintStatus | null;
}

§Properties

§
BlueprintLocation?: string | null
[src]

Specifies the path in Amazon S3 where the blueprint is published.

§
BlueprintServiceLocation?: string | null
[src]

Specifies a path in Amazon S3 where the blueprint is copied when you call CreateBlueprint/UpdateBlueprint to register the blueprint in Glue.

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

The date and time the blueprint was registered.

§
Description?: string | null
[src]

The description of the blueprint.

§
ErrorMessage?: string | null
[src]

An error message.

§
LastActiveDefinition?: LastActiveDefinition | null
[src]

When there are multiple versions of a blueprint and the latest version has some errors, this attribute indicates the last successful blueprint definition that is available with the service.

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

The date and time the blueprint was last modified.

§
Name?: string | null
[src]

The name of the blueprint.

§
ParameterSpec?: string | null
[src]

A JSON string that indicates the list of parameter specifications for the blueprint.

§
Status?: BlueprintStatus | null
[src]

The status of the blueprint registration.

  • Creating — The blueprint registration is in progress.
  • Active — The blueprint has been successfully registered.
  • Updating — An update to the blueprint registration is in progress.
  • Failed — The blueprint registration failed.