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

SMSChannelResponse

import type { SMSChannelResponse } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

Provides information about the status and settings of the SMS channel for an application.

interface SMSChannelResponse {
ApplicationId?: string | null;
CreationDate?: string | null;
Enabled?: boolean | null;
HasCredential?: boolean | null;
Id?: string | null;
IsArchived?: boolean | null;
LastModifiedBy?: string | null;
LastModifiedDate?: string | null;
Platform: string;
PromotionalMessagesPerSecond?: number | null;
SenderId?: string | null;
ShortCode?: string | null;
TransactionalMessagesPerSecond?: number | null;
Version?: number | null;
}

§Properties

§
ApplicationId?: string | null
[src]

The unique identifier for the application that the SMS channel applies to.

§
CreationDate?: string | null
[src]

The date and time, in ISO 8601 format, when the SMS channel was enabled.

§
Enabled?: boolean | null
[src]

Specifies whether the SMS channel is enabled for the application.

§
HasCredential?: boolean | null
[src]

(Not used) This property is retained only for backward compatibility.

§
Id?: string | null
[src]

(Deprecated) An identifier for the SMS channel. This property is retained only for backward compatibility.

§
IsArchived?: boolean | null
[src]

Specifies whether the SMS channel is archived.

§
LastModifiedBy?: string | null
[src]

The user who last modified the SMS channel.

§
LastModifiedDate?: string | null
[src]

The date and time, in ISO 8601 format, when the SMS channel was last modified.

§
Platform: string
[src]

The type of messaging or notification platform for the channel. For the SMS channel, this value is SMS.

§
PromotionalMessagesPerSecond?: number | null
[src]

The maximum number of promotional messages that you can send through the SMS channel each second.

§
SenderId?: string | null
[src]

The identity that displays on recipients' devices when they receive messages from the SMS channel.

§
ShortCode?: string | null
[src]

The registered short code to use when you send messages through the SMS channel.

§
TransactionalMessagesPerSecond?: number | null
[src]

The maximum number of transactional messages that you can send through the SMS channel each second.

§
Version?: number | null
[src]

The current version of the SMS channel.