Class: Aws::StorageGateway::Types::RetrieveTapeArchiveInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-storagegateway/types.rb

Overview

Note:

When making an API call, you may pass RetrieveTapeArchiveInput data as a hash:

{
  tape_arn: "TapeARN", # required
  gateway_arn: "GatewayARN", # required
}

RetrieveTapeArchiveInput

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#gateway_arnString

The Amazon Resource Name (ARN) of the gateway you want to retrieve the virtual tape to. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

You retrieve archived virtual tapes to only one gateway and the gateway must be a tape gateway.

Returns:

  • (String)


5348
5349
5350
5351
5352
5353
# File 'lib/aws-sdk-storagegateway/types.rb', line 5348

class RetrieveTapeArchiveInput < Struct.new(
  :tape_arn,
  :gateway_arn)
  SENSITIVE = []
  include Aws::Structure
end

#tape_arnString

The Amazon Resource Name (ARN) of the virtual tape you want to retrieve from the virtual tape shelf (VTS).

Returns:

  • (String)


5348
5349
5350
5351
5352
5353
# File 'lib/aws-sdk-storagegateway/types.rb', line 5348

class RetrieveTapeArchiveInput < Struct.new(
  :tape_arn,
  :gateway_arn)
  SENSITIVE = []
  include Aws::Structure
end