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

AwsApiGatewayStageDetails

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

Provides information about a version 1 Amazon API Gateway stage.

interface AwsApiGatewayStageDetails {
AccessLogSettings?: AwsApiGatewayAccessLogSettings | null;
CacheClusterEnabled?: boolean | null;
CacheClusterSize?: string | null;
CacheClusterStatus?: string | null;
CanarySettings?: AwsApiGatewayCanarySettings | null;
ClientCertificateId?: string | null;
CreatedDate?: string | null;
DeploymentId?: string | null;
Description?: string | null;
DocumentationVersion?: string | null;
LastUpdatedDate?: string | null;
MethodSettings?: AwsApiGatewayMethodSettings[] | null;
StageName?: string | null;
TracingEnabled?: boolean | null;
Variables?: {
[key: string]: string | null | undefined;
}
| null;
WebAclArn?: string | null;
}

§Properties

§
AccessLogSettings?: AwsApiGatewayAccessLogSettings | null
[src]

Settings for logging access for the stage.

§
CacheClusterEnabled?: boolean | null
[src]

Indicates whether a cache cluster is enabled for the stage.

§
CacheClusterSize?: string | null
[src]

If a cache cluster is enabled, the size of the cache cluster.

§
CacheClusterStatus?: string | null
[src]

If a cache cluster is enabled, the status of the cache cluster.

§
CanarySettings?: AwsApiGatewayCanarySettings | null
[src]

Information about settings for canary deployment in the stage.

§
ClientCertificateId?: string | null
[src]

The identifier of the client certificate for the stage.

§
CreatedDate?: string | null
[src]

Indicates when the stage was created.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
DeploymentId?: string | null
[src]

The identifier of the deployment that the stage points to.

§
Description?: string | null
[src]

A description of the stage.

§
DocumentationVersion?: string | null
[src]

The version of the API documentation that is associated with the stage.

§
LastUpdatedDate?: string | null
[src]

Indicates when the stage was most recently updated.

Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces, and date and time should be separated by T. For example, 2020-03-22T13:22:13.933Z.

§
MethodSettings?: AwsApiGatewayMethodSettings[] | null
[src]

Defines the method settings for the stage.

§
StageName?: string | null
[src]

The name of the stage.

§
TracingEnabled?: boolean | null
[src]

Indicates whether active tracing with X-Ray is enabled for the stage.

§
Variables?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map that defines the stage variables for the stage.

Variable names can have alphanumeric and underscore characters.

Variable values can contain the following characters:

  • Uppercase and lowercase letters
  • Numbers
  • Special characters -._~:/?#&=,
§
WebAclArn?: string | null
[src]

The ARN of the web ACL associated with the stage.