Class: Aws::Route53::Types::Change

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-route53/types.rb

Overview

The information for each resource record set that you want to change.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actionString

The action to perform:

  • ‘CREATE`: Creates a resource record set that has the specified values.

  • ‘DELETE`: Deletes a existing resource record set.

    To delete the resource record set that is associated with a traffic policy instance, use [DeleteTrafficPolicyInstance]. Amazon Route 53 will delete the resource record set automatically. If you delete the resource record set by using ‘ChangeResourceRecordSets`, Route 53 doesn’t automatically delete the traffic policy instance, and you’ll continue to be charged for it even though it’s no longer in use.

  • ‘UPSERT`: If a resource record set doesn’t already exist, Route 53 creates it. If a resource record set does exist, Route 53 updates it with the values in the request.

[1]: docs.aws.amazon.com/Route53/latest/APIReference/API_DeleteTrafficPolicyInstance.html

Returns:

  • (String)


610
611
612
613
614
615
# File 'lib/aws-sdk-route53/types.rb', line 610

class Change < Struct.new(
  :action,
  :resource_record_set)
  SENSITIVE = []
  include Aws::Structure
end

#resource_record_setTypes::ResourceRecordSet

Information about the resource record set to create, delete, or update.



610
611
612
613
614
615
# File 'lib/aws-sdk-route53/types.rb', line 610

class Change < Struct.new(
  :action,
  :resource_record_set)
  SENSITIVE = []
  include Aws::Structure
end