Class: Aws::Lightsail::Types::DeleteDomainEntryRequest

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

Overview

Note:

When making an API call, you may pass DeleteDomainEntryRequest data as a hash:

{
  domain_name: "DomainName", # required
  domain_entry: { # required
    id: "NonEmptyString",
    name: "DomainName",
    target: "string",
    is_alias: false,
    type: "DomainEntryType",
    options: {
      "DomainEntryOptionsKeys" => "string",
    },
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#domain_entryTypes::DomainEntry

An array of key-value pairs containing information about your domain entries.

Returns:



1845
1846
1847
1848
1849
# File 'lib/aws-sdk-lightsail/types.rb', line 1845

class DeleteDomainEntryRequest < Struct.new(
  :domain_name,
  :domain_entry)
  include Aws::Structure
end

#domain_nameString

The name of the domain entry to delete.

Returns:

  • (String)


1845
1846
1847
1848
1849
# File 'lib/aws-sdk-lightsail/types.rb', line 1845

class DeleteDomainEntryRequest < Struct.new(
  :domain_name,
  :domain_entry)
  include Aws::Structure
end