You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

Class: AWS::Route53::DeleteRequest

Inherits:
ChangeRequest show all
Defined in:
lib/aws/route_53/change_batch.rb

Overview

A change request to delete a resource record set.

Instance Attribute Summary

Attributes inherited from ChangeRequest

#action, #name, #type

Instance Method Summary collapse

Methods inherited from ChangeRequest

#to_hash

Constructor Details

#initialize(name, type, options = {}) ⇒ DeleteRequest

Returns a new instance of DeleteRequest

Parameters:

  • name (String)
  • type (String)
  • options (Hash) (defaults to: {})


156
157
158
# File 'lib/aws/route_53/change_batch.rb', line 156

def initialize name, type, options = {}
  super('DELETE', name, type, options)
end