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

CreateRoleAliasRequest

import type { CreateRoleAliasRequest } from "https://aws-api.deno.dev/v0.3/services/iot.ts?docs=full";
interface CreateRoleAliasRequest {
credentialDurationSeconds?: number | null;
roleAlias: string;
roleArn: string;
tags?: Tag[] | null;
}

§Properties

§
credentialDurationSeconds?: number | null
[src]

How long (in seconds) the credentials will be valid. The default value is 3,600 seconds.

§
roleAlias: string
[src]

The role alias that points to a role ARN. This allows you to change the role without having to update the device.

§
roleArn: string
[src]

The role ARN.

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

Metadata which can be used to manage the role alias.

Note: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."