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

CreateLaunchRequest

import type { CreateLaunchRequest } from "https://aws-api.deno.dev/v0.4/services/evidently.ts?docs=full";
interface CreateLaunchRequest {
description?: string | null;
metricMonitors?: MetricMonitorConfig[] | null;
name: string;
project: string;
randomizationSalt?: string | null;
scheduledSplitsConfig?: ScheduledSplitsLaunchConfig | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
description?: string | null
[src]

An optional description for the launch.

§

An array of structures that contains the feature and variations that are to be used for the launch.

§
metricMonitors?: MetricMonitorConfig[] | null
[src]

An array of structures that define the metrics that will be used to monitor the launch performance.

§
name: string
[src]

The name for the new launch.

§
project: string
[src]

The name or ARN of the project that you want to create the launch in.

§
randomizationSalt?: string | null
[src]

When Evidently assigns a particular user session to a launch, it must use a randomization ID to determine which variation the user session is served. This randomization ID is a combination of the entity ID and randomizationSalt. If you omit randomizationSalt, Evidently uses the launch name as the randomizationSalt.

§
scheduledSplitsConfig?: ScheduledSplitsLaunchConfig | null
[src]

An array of structures that define the traffic allocation percentages among the feature variations during each step of the launch.

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

Assigns one or more tags (key-value pairs) to the launch.

Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.

Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters.

You can associate as many as 50 tags with a launch.

For more information, see Tagging Amazon Web Services resources.