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

PinpointSMSVoice

import { PinpointSMSVoice } from "https://aws-api.deno.dev/v0.4/services/pinpointsmsvoice.ts?docs=full";
class PinpointSMSVoice {
constructor(apiFactory: client.ApiFactory);
async createConfigurationSet(params?: CreateConfigurationSetRequest, opts?: client.RequestOptions): Promise<void>;
async createConfigurationSetEventDestination(params: CreateConfigurationSetEventDestinationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteConfigurationSet(params: DeleteConfigurationSetRequest, opts?: client.RequestOptions): Promise<void>;
async deleteConfigurationSetEventDestination(params: DeleteConfigurationSetEventDestinationRequest, opts?: client.RequestOptions): Promise<void>;
async getConfigurationSetEventDestinations(params: GetConfigurationSetEventDestinationsRequest, opts?: client.RequestOptions): Promise<GetConfigurationSetEventDestinationsResponse>;
async listConfigurationSets(params?: ListConfigurationSetsRequest, opts?: client.RequestOptions): Promise<ListConfigurationSetsResponse>;
async sendVoiceMessage(params?: SendVoiceMessageRequest, opts?: client.RequestOptions): Promise<SendVoiceMessageResponse>;
async updateConfigurationSetEventDestination(params: UpdateConfigurationSetEventDestinationRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new PinpointSMSVoice(apiFactory: client.ApiFactory)
[src]

§Methods

§
createConfigurationSet(params?: CreateConfigurationSetRequest, opts?: client.RequestOptions): Promise<void>
[src]

Create a new configuration set. After you create the configuration set, you can add one or more event destinations to it.

§
createConfigurationSetEventDestination(params: CreateConfigurationSetEventDestinationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Create a new event destination in a configuration set.

§
deleteConfigurationSet(params: DeleteConfigurationSetRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes an existing configuration set.

§
deleteConfigurationSetEventDestination(params: DeleteConfigurationSetEventDestinationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Deletes an event destination in a configuration set.

§

Obtain information about an event destination, including the types of events it reports, the Amazon Resource Name (ARN) of the destination, and the name of the event destination.

§

List all of the configuration sets associated with your Amazon Pinpoint account in the current region.

§

Create a new voice message and send it to a recipient's phone number.

§
updateConfigurationSetEventDestination(params: UpdateConfigurationSetEventDestinationRequest, opts?: client.RequestOptions): Promise<void>
[src]

Update an event destination in a configuration set. An event destination is a location that you publish information about your voice calls to. For example, you can log an event to an Amazon CloudWatch destination when a call fails.

§Static Properties