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

AttributeValue

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

Values for use in "Player" attribute key-value pairs. This object lets you specify an attribute value using any of the valid data types: string, number, string array, or data map. Each AttributeValue object can use only one of the available properties.

interface AttributeValue {
N?: number | null;
S?: string | null;
SDM?: {
[key: string]: number | null | undefined;
}
| null;
SL?: string[] | null;
}

§Properties

§
N?: number | null
[src]

For number values, expressed as double.

§
S?: string | null
[src]

For single string values. Maximum string length is 100 characters.

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

For a map of up to 10 data type:value pairs. Maximum length for each string value is 100 characters.

§
SL?: string[] | null
[src]

For a list of up to 10 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.