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

SupportApp

import { SupportApp } from "https://aws-api.deno.dev/v0.4/services/supportapp.ts?docs=full";
class SupportApp {
constructor(apiFactory: client.ApiFactory);
async createSlackChannelConfiguration(params: CreateSlackChannelConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteAccountAlias(opts?: client.RequestOptions): Promise<void>;
async deleteSlackChannelConfiguration(params: DeleteSlackChannelConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteSlackWorkspaceConfiguration(params: DeleteSlackWorkspaceConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async getAccountAlias(opts?: client.RequestOptions): Promise<GetAccountAliasResult>;
async listSlackChannelConfigurations(params?: ListSlackChannelConfigurationsRequest, opts?: client.RequestOptions): Promise<ListSlackChannelConfigurationsResult>;
async listSlackWorkspaceConfigurations(params?: ListSlackWorkspaceConfigurationsRequest, opts?: client.RequestOptions): Promise<ListSlackWorkspaceConfigurationsResult>;
async putAccountAlias(params: PutAccountAliasRequest, opts?: client.RequestOptions): Promise<void>;
async registerSlackWorkspaceForOrganization(params: RegisterSlackWorkspaceForOrganizationRequest, opts?: client.RequestOptions): Promise<RegisterSlackWorkspaceForOrganizationResult>;
async updateSlackChannelConfiguration(params: UpdateSlackChannelConfigurationRequest, opts?: client.RequestOptions): Promise<UpdateSlackChannelConfigurationResult>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

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

Creates a Slack channel configuration for your Amazon Web Services account.

Note: - You can add up to 5 Slack workspaces for your account. - You can add up to 20 Slack channels for your account.

A Slack channel can have up to 100 Amazon Web Services accounts. This means that only 100 accounts can add the same Slack channel to the Amazon Web Services Support App. We recommend that you only add the accounts that you need to manage support cases for your organization. This can reduce the notifications about case updates that you receive in the Slack channel.

Note: We recommend that you choose a private Slack channel so that only members in that channel have read and write access to your support cases. Anyone in your Slack channel can create, update, or resolve support cases for your account. Users require an invitation to join private channels.

§
deleteAccountAlias(opts?: client.RequestOptions): Promise<void>
[src]

Deletes an alias for an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.

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

Deletes a Slack channel configuration from your Amazon Web Services account. This operation doesn't delete your Slack channel.

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

Deletes a Slack workspace configuration from your Amazon Web Services account. This operation doesn't delete your Slack workspace.

§
getAccountAlias(opts?: client.RequestOptions): Promise<GetAccountAliasResult>
[src]

Retrieves the alias from an Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.

§

Lists the Slack channel configurations for an Amazon Web Services account.

§

Lists the Slack workspace configurations for an Amazon Web Services account.

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

Creates or updates an individual alias for each Amazon Web Services account ID. The alias appears in the Amazon Web Services Support App page of the Amazon Web Services Support Center. The alias also appears in Slack messages from the Amazon Web Services Support App.

§

Registers a Slack workspace for your Amazon Web Services account. To call this API, your account must be part of an organization in Organizations.

If you're the management account and you want to register Slack workspaces for your organization, you must complete the following tasks:

  1. Sign in to the Amazon Web Services Support Center and authorize the Slack workspaces where you want your organization to have access to. See Authorize a Slack workspace in the Amazon Web Services Support User Guide.
  2. Call the RegisterSlackWorkspaceForOrganization API to authorize each Slack workspace for the organization.

After the management account authorizes the Slack workspace, member accounts can call this API to authorize the same Slack workspace for their individual accounts. Member accounts don't need to authorize the Slack workspace manually through the Amazon Web Services Support Center.

To use the Amazon Web Services Support App, each account must then complete the following tasks:

§

Updates the configuration for a Slack channel, such as case update notifications.

§Static Properties