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

SwapEnvironmentCNAMEsMessage

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

Swaps the CNAMEs of two environments.

interface SwapEnvironmentCNAMEsMessage {
DestinationEnvironmentId?: string | null;
DestinationEnvironmentName?: string | null;
SourceEnvironmentId?: string | null;
SourceEnvironmentName?: string | null;
}

§Properties

§
DestinationEnvironmentId?: string | null
[src]

The ID of the destination environment.

Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentId with the DestinationEnvironmentId.

§
DestinationEnvironmentName?: string | null
[src]

The name of the destination environment.

Condition: You must specify at least the DestinationEnvironmentID or the DestinationEnvironmentName. You may also specify both. You must specify the SourceEnvironmentName with the DestinationEnvironmentName.

§
SourceEnvironmentId?: string | null
[src]

The ID of the source environment.

Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentId, you must specify the DestinationEnvironmentId.

§
SourceEnvironmentName?: string | null
[src]

The name of the source environment.

Condition: You must specify at least the SourceEnvironmentID or the SourceEnvironmentName. You may also specify both. If you specify the SourceEnvironmentName, you must specify the DestinationEnvironmentName.