Class: Aws::StorageGateway::Types::DeleteTapeInput

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 DeleteTapeInput data as a hash:

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

DeleteTapeInput

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bypass_governance_retentionBoolean

Set to ‘TRUE` to delete an archived tape that belongs to a custom pool with tape retention lock. Only archived tapes with tape retention lock set to `governance` can be deleted. Archived tapes with tape retention lock set to `compliance` can’t be deleted.

Returns:

  • (Boolean)


2520
2521
2522
2523
2524
2525
2526
# File 'lib/aws-sdk-storagegateway/types.rb', line 2520

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

#gateway_arnString

The unique Amazon Resource Name (ARN) of the gateway that the virtual tape to delete is associated with. Use the ListGateways operation to return a list of gateways for your account and AWS Region.

Returns:

  • (String)


2520
2521
2522
2523
2524
2525
2526
# File 'lib/aws-sdk-storagegateway/types.rb', line 2520

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

#tape_arnString

The Amazon Resource Name (ARN) of the virtual tape to delete.

Returns:

  • (String)


2520
2521
2522
2523
2524
2525
2526
# File 'lib/aws-sdk-storagegateway/types.rb', line 2520

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