Class: AWS::EC2::AttachmentCollection
- Inherits:
-
Object
- Object
- AWS::EC2::AttachmentCollection
- Includes:
- Enumerable
- Defined in:
- lib/aws/ec2/attachment_collection.rb
Overview
Represents the collection of attachments for an Amazon EBS volume.
Instance Attribute Summary collapse
-
#volume ⇒ Object
readonly
Returns the value of attribute volume.
Instance Method Summary collapse
Instance Attribute Details
#volume ⇒ Object (readonly)
Returns the value of attribute volume.
31 32 33 |
# File 'lib/aws/ec2/attachment_collection.rb', line 31 def volume @volume end |
Instance Method Details
#each {|attachment| ... } ⇒ nil
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/aws/ec2/attachment_collection.rb', line 42 def each &block volume..each do |item| instance = Instance.new(item.instance_id, :config => config) = Attachment.new(self.volume, instance, item.device, :config => config) yield() end nil end |