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

ConfigurationSettingsDescription

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

Describes the settings for a configuration set.

interface ConfigurationSettingsDescription {
ApplicationName?: string | null;
DateCreated?: Date | number | null;
DateUpdated?: Date | number | null;
DeploymentStatus?: ConfigurationDeploymentStatus | null;
Description?: string | null;
EnvironmentName?: string | null;
OptionSettings: ConfigurationOptionSetting[];
PlatformArn?: string | null;
SolutionStackName?: string | null;
TemplateName?: string | null;
}

§Properties

§
ApplicationName?: string | null
[src]

The name of the application associated with this configuration set.

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

The date (in UTC time) when this configuration set was created.

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

The date (in UTC time) when this configuration set was last modified.

§
DeploymentStatus?: ConfigurationDeploymentStatus | null
[src]

If this configuration set is associated with an environment, the DeploymentStatus parameter indicates the deployment status of this configuration set:

  • null: This configuration is not associated with a running environment.
  • pending: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying.
  • deployed: This is the configuration that is currently deployed to the associated running environment.
  • failed: This is a draft configuration that failed to successfully deploy.
§
Description?: string | null
[src]

Describes this configuration set.

§
EnvironmentName?: string | null
[src]

If not null, the name of the environment for this configuration set.

§

A list of the configuration options and their values in this configuration set.

§
PlatformArn?: string | null
[src]

The ARN of the platform version.

§
SolutionStackName?: string | null
[src]

The name of the solution stack this configuration set uses.

§
TemplateName?: string | null
[src]

If not null, the name of the configuration template for this configuration set.