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

SMS

import { SMS } from "https://aws-api.deno.dev/v0.4/services/sms.ts?docs=full";
class SMS {
constructor(apiFactory: client.ApiFactory);
async createApp(params?: CreateAppRequest, opts?: client.RequestOptions): Promise<CreateAppResponse>;
async createReplicationJob(params: CreateReplicationJobRequest, opts?: client.RequestOptions): Promise<CreateReplicationJobResponse>;
async deleteApp(params?: DeleteAppRequest, opts?: client.RequestOptions): Promise<void>;
async deleteAppLaunchConfiguration(params?: DeleteAppLaunchConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteAppReplicationConfiguration(params?: DeleteAppReplicationConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteAppValidationConfiguration(params: DeleteAppValidationConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async deleteReplicationJob(params: DeleteReplicationJobRequest, opts?: client.RequestOptions): Promise<void>;
async deleteServerCatalog(opts?: client.RequestOptions): Promise<void>;
async disassociateConnector(params: DisassociateConnectorRequest, opts?: client.RequestOptions): Promise<void>;
async generateChangeSet(params?: GenerateChangeSetRequest, opts?: client.RequestOptions): Promise<GenerateChangeSetResponse>;
async generateTemplate(params?: GenerateTemplateRequest, opts?: client.RequestOptions): Promise<GenerateTemplateResponse>;
async getApp(params?: GetAppRequest, opts?: client.RequestOptions): Promise<GetAppResponse>;
async getAppLaunchConfiguration(params?: GetAppLaunchConfigurationRequest, opts?: client.RequestOptions): Promise<GetAppLaunchConfigurationResponse>;
async getAppReplicationConfiguration(params?: GetAppReplicationConfigurationRequest, opts?: client.RequestOptions): Promise<GetAppReplicationConfigurationResponse>;
async getAppValidationConfiguration(params: GetAppValidationConfigurationRequest, opts?: client.RequestOptions): Promise<GetAppValidationConfigurationResponse>;
async getAppValidationOutput(params: GetAppValidationOutputRequest, opts?: client.RequestOptions): Promise<GetAppValidationOutputResponse>;
async getConnectors(params?: GetConnectorsRequest, opts?: client.RequestOptions): Promise<GetConnectorsResponse>;
async getReplicationJobs(params?: GetReplicationJobsRequest, opts?: client.RequestOptions): Promise<GetReplicationJobsResponse>;
async getReplicationRuns(params: GetReplicationRunsRequest, opts?: client.RequestOptions): Promise<GetReplicationRunsResponse>;
async getServers(params?: GetServersRequest, opts?: client.RequestOptions): Promise<GetServersResponse>;
async importAppCatalog(params?: ImportAppCatalogRequest, opts?: client.RequestOptions): Promise<void>;
async importServerCatalog(opts?: client.RequestOptions): Promise<void>;
async launchApp(params?: LaunchAppRequest, opts?: client.RequestOptions): Promise<void>;
async listApps(params?: ListAppsRequest, opts?: client.RequestOptions): Promise<ListAppsResponse>;
async notifyAppValidationOutput(params: NotifyAppValidationOutputRequest, opts?: client.RequestOptions): Promise<void>;
async putAppLaunchConfiguration(params?: PutAppLaunchConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async putAppReplicationConfiguration(params?: PutAppReplicationConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async putAppValidationConfiguration(params: PutAppValidationConfigurationRequest, opts?: client.RequestOptions): Promise<void>;
async startAppReplication(params?: StartAppReplicationRequest, opts?: client.RequestOptions): Promise<void>;
async startOnDemandAppReplication(params: StartOnDemandAppReplicationRequest, opts?: client.RequestOptions): Promise<void>;
async startOnDemandReplicationRun(params: StartOnDemandReplicationRunRequest, opts?: client.RequestOptions): Promise<StartOnDemandReplicationRunResponse>;
async stopAppReplication(params?: StopAppReplicationRequest, opts?: client.RequestOptions): Promise<void>;
async terminateApp(params?: TerminateAppRequest, opts?: client.RequestOptions): Promise<void>;
async updateApp(params?: UpdateAppRequest, opts?: client.RequestOptions): Promise<UpdateAppResponse>;
async updateReplicationJob(params: UpdateReplicationJobRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

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

§Methods

§
createApp(params?: CreateAppRequest, opts?: client.RequestOptions): Promise<CreateAppResponse>
[src]

Creates an application. An application consists of one or more server groups. Each server group contain one or more servers.

§

Creates a replication job. The replication job schedules periodic replication runs to replicate your server to Amazon Web Services. Each replication run creates an Amazon Machine Image (AMI).

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

Deletes the specified application. Optionally deletes the launched stack associated with the application and all Server Migration Service replication jobs for servers in the application.

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

Deletes the launch configuration for the specified application.

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

Deletes the replication configuration for the specified application.

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

Deletes the validation configuration for the specified application.

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

Deletes the specified replication job.

After you delete a replication job, there are no further replication runs. Amazon Web Services deletes the contents of the Amazon S3 bucket used to store Server Migration Service artifacts. The AMIs created by the replication runs are not deleted.

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

Deletes all servers from your server catalog.

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

Disassociates the specified connector from Server Migration Service.

After you disassociate a connector, it is no longer available to support replication jobs.

§

Generates a target change set for a currently launched stack and writes it to an Amazon S3 object in the customer’s Amazon S3 bucket.

§

Generates an CloudFormation template based on the current launch configuration and writes it to an Amazon S3 object in the customer’s Amazon S3 bucket.

§
getApp(params?: GetAppRequest, opts?: client.RequestOptions): Promise<GetAppResponse>
[src]

Retrieve information about the specified application.

§

Retrieves the application launch configuration associated with the specified application.

§

Retrieves the application replication configuration associated with the specified application.

§

Retrieves information about a configuration for validating an application.

§

Retrieves output from validating an application.

§

Describes the connectors registered with the Server Migration Service.

§

Describes the specified replication job or all of your replication jobs.

§

Describes the replication runs for the specified replication job.

§
getServers(params?: GetServersRequest, opts?: client.RequestOptions): Promise<GetServersResponse>
[src]

Describes the servers in your server catalog.

Before you can describe your servers, you must import them using "ImportServerCatalog".

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

Allows application import from Migration Hub.

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

Gathers a complete list of on-premises servers. Connectors must be installed and monitoring all servers to import.

This call returns immediately, but might take additional time to retrieve all the servers.

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

Launches the specified application as a stack in CloudFormation.

§
listApps(params?: ListAppsRequest, opts?: client.RequestOptions): Promise<ListAppsResponse>
[src]

Retrieves summaries for all applications.

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

Provides information to Server Migration Service about whether application validation is successful.

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

Creates or updates the launch configuration for the specified application.

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

Creates or updates the replication configuration for the specified application.

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

Creates or updates a validation configuration for the specified application.

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

Starts replicating the specified application by creating replication jobs for each server in the application.

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

Starts an on-demand replication run for the specified application.

§

Starts an on-demand replication run for the specified replication job. This replication run starts immediately. This replication run is in addition to the ones already scheduled.

There is a limit on the number of on-demand replications runs that you can request in a 24-hour period.

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

Stops replicating the specified application by deleting the replication job for each server in the application.

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

Terminates the stack for the specified application.

§
updateApp(params?: UpdateAppRequest, opts?: client.RequestOptions): Promise<UpdateAppResponse>
[src]

Updates the specified application.

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

Updates the specified settings for the specified replication job.

§Static Properties