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

CreateRuleGroupsNamespaceRequest

import type { CreateRuleGroupsNamespaceRequest } from "https://aws-api.deno.dev/v0.3/services/amp.ts?docs=full";

Represents the input of a CreateRuleGroupsNamespace operation.

interface CreateRuleGroupsNamespaceRequest {
clientToken?: string | null;
data: Uint8Array | string;
name: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
workspaceId: string;
}

§Properties

§
clientToken?: string | null
[src]

Optional, unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.

§
data: Uint8Array | string
[src]

The namespace data that define the rule groups.

§
name: string
[src]

The rule groups namespace name.

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

Optional, user-provided tags for this rule groups namespace.

§
workspaceId: string
[src]

The ID of the workspace in which to create the rule group namespace.