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

CreateDimensionRequest

import type { CreateDimensionRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface CreateDimensionRequest {
clientRequestToken: string;
name: string;
stringValues: string[];
tags?: Tag[] | null;
}

§Properties

§
clientRequestToken: string
[src]

Each dimension must have a unique client request token. If you try to create a new dimension with the same token as a dimension that already exists, an exception occurs. If you omit this value, Amazon Web Services SDKs will automatically generate a unique client request.

§
name: string
[src]

A unique identifier for the dimension. Choose something that describes the type and value to make it easy to remember what it does.

§
stringValues: string[]
[src]

Specifies the value or list of values for the dimension. For TOPIC_FILTER dimensions, this is a pattern used to match the MQTT topic (for example, "admin/#").

§
tags?: Tag[] | null
[src]

Metadata that can be used to manage the dimension.

§

Specifies the type of dimension. Supported types: TOPIC_FILTER.