Class: Aws::StorageGateway::Types::AddCacheInput

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

{
  gateway_arn: "GatewayARN", # required
  disk_ids: ["DiskId"], # required
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#disk_idsArray<String>

An array of strings that identify disks that are to be configured as working storage. Each string has a minimum length of 1 and maximum length of 300. You can get the disk IDs from the ListLocalDisks API.

Returns:

  • (Array<String>)


193
194
195
196
197
198
# File 'lib/aws-sdk-storagegateway/types.rb', line 193

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

#gateway_arnString

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

Returns:

  • (String)


193
194
195
196
197
198
# File 'lib/aws-sdk-storagegateway/types.rb', line 193

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