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

ApplicationVersionDescription

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

Describes the properties of an application version.

interface ApplicationVersionDescription {
ApplicationName?: string | null;
ApplicationVersionArn?: string | null;
BuildArn?: string | null;
DateCreated?: Date | number | null;
DateUpdated?: Date | number | null;
Description?: string | null;
SourceBuildInformation?: SourceBuildInformation | null;
SourceBundle?: S3Location | null;
Status?: ApplicationVersionStatus | null;
VersionLabel?: string | null;
}

§Properties

§
ApplicationName?: string | null
[src]

The name of the application to which the application version belongs.

§
ApplicationVersionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the application version.

§
BuildArn?: string | null
[src]

Reference to the artifact from the AWS CodeBuild build.

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

The creation date of the application version.

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

The last modified date of the application version.

§
Description?: string | null
[src]

The description of the application version.

§
SourceBuildInformation?: SourceBuildInformation | null
[src]

If the version's source code was retrieved from AWS CodeCommit, the location of the source code for the application version.

§
SourceBundle?: S3Location | null
[src]

The storage location of the application version's source bundle in Amazon S3.

§

The processing status of the application version. Reflects the state of the application version during its creation. Many of the values are only applicable if you specified True for the Process parameter of the CreateApplicationVersion action. The following list describes the possible values.

  • Unprocessed – Application version wasn't pre-processed or validated. Elastic Beanstalk will validate configuration files during deployment of the application version to an environment.
  • Processing – Elastic Beanstalk is currently processing the application version.
  • Building – Application version is currently undergoing an AWS CodeBuild build.
  • Processed – Elastic Beanstalk was successfully pre-processed and validated.
  • Failed – Either the AWS CodeBuild build failed or configuration files didn't pass validation. This application version isn't usable.
§
VersionLabel?: string | null
[src]

A unique identifier for the application version.