Class: AWS::Route53::CreateRequest

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

Overview

A change request to create 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 = {}) ⇒ CreateRequest

Returns a new instance of CreateRequest.

Parameters:

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


141
142
143
# File 'lib/aws/route_53/change_batch.rb', line 141

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