Learn R Programming

paws.storage (version 0.1.12)

storagegateway_start_gateway: Starts a gateway that you previously shut down (see ShutdownGateway)

Description

Starts a gateway that you previously shut down (see shutdown_gateway). After the gateway starts, you can then make other API calls, your applications can read from or write to the gateway's storage volumes and you will be able to take snapshot backups.

When you make a request, you will get a 200 OK success response immediately. However, it might take some time for the gateway to be ready. You should call describe_gateway_information and check the status before making any additional API calls. For more information, see activate_gateway.

To specify which gateway to start, use the Amazon Resource Name (ARN) of the gateway in your request.

Usage

storagegateway_start_gateway(GatewayARN)

Value

A list with the following syntax:

list(
  GatewayARN = "string"
)

Arguments

GatewayARN

[required]

Request syntax

svc$start_gateway(
  GatewayARN = "string"
)

Examples

Run this code
if (FALSE) {
# Starts a gateway service that was previously shut down.
svc$start_gateway(
  GatewayARN = "arn:aws:storagegateway:us-east-1:999999999999:gateway/sgw-12A3456B"
)
}

Run the code above in your browser using DataLab