Class: Aws::StorageGateway::Types::AttachVolumeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::StorageGateway::Types::AttachVolumeInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-storagegateway/types.rb
Overview
AttachVolumeInput
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#disk_id ⇒ String
The unique device ID or other distinguishing data that identifies the local disk used to create the volume.
-
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway that you want to attach the volume to.
-
#network_interface_id ⇒ String
The network interface of the gateway on which to expose the iSCSI target.
-
#target_name ⇒ String
The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the target ARN.
-
#volume_arn ⇒ String
The Amazon Resource Name (ARN) of the volume to attach to the specified gateway.
Instance Attribute Details
#disk_id ⇒ String
The unique device ID or other distinguishing data that identifies the local disk used to create the volume. This value is only required when you are attaching a stored volume.
488 489 490 491 492 493 494 495 496 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 488 class AttachVolumeInput < Struct.new( :gateway_arn, :target_name, :volume_arn, :network_interface_id, :disk_id) SENSITIVE = [] include Aws::Structure end |
#gateway_arn ⇒ String
The Amazon Resource Name (ARN) of the gateway that you want to attach the volume to.
488 489 490 491 492 493 494 495 496 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 488 class AttachVolumeInput < Struct.new( :gateway_arn, :target_name, :volume_arn, :network_interface_id, :disk_id) SENSITIVE = [] include Aws::Structure end |
#network_interface_id ⇒ String
The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use DescribeGatewayInformation to get a list of the network interfaces available on a gateway.
Valid Values: A valid IP address.
488 489 490 491 492 493 494 495 496 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 488 class AttachVolumeInput < Struct.new( :gateway_arn, :target_name, :volume_arn, :network_interface_id, :disk_id) SENSITIVE = [] include Aws::Structure end |
#target_name ⇒ String
The name of the iSCSI target used by an initiator to connect to a volume and used as a suffix for the target ARN. For example, specifying ‘TargetName` as myvolume results in the target ARN of `arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume`. The target name must be unique across all volumes on a gateway.
If you don’t specify a value, Storage Gateway uses the value that was previously used for this volume as the new target name.
488 489 490 491 492 493 494 495 496 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 488 class AttachVolumeInput < Struct.new( :gateway_arn, :target_name, :volume_arn, :network_interface_id, :disk_id) SENSITIVE = [] include Aws::Structure end |
#volume_arn ⇒ String
The Amazon Resource Name (ARN) of the volume to attach to the specified gateway.
488 489 490 491 492 493 494 495 496 |
# File 'lib/aws-sdk-storagegateway/types.rb', line 488 class AttachVolumeInput < Struct.new( :gateway_arn, :target_name, :volume_arn, :network_interface_id, :disk_id) SENSITIVE = [] include Aws::Structure end |