Class: Aws::Route53Domains::Types::DomainSummary

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

Overview

Summary information about one domain.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_renewBoolean

Indicates whether the domain is automatically renewed upon expiration.

Returns:

  • (Boolean)


909
910
911
912
913
914
915
916
# File 'lib/aws-sdk-route53domains/types.rb', line 909

class DomainSummary < Struct.new(
  :domain_name,
  :auto_renew,
  :transfer_lock,
  :expiry)
  SENSITIVE = []
  include Aws::Structure
end

#domain_nameString

The name of the domain that the summary information applies to.

Returns:

  • (String)


909
910
911
912
913
914
915
916
# File 'lib/aws-sdk-route53domains/types.rb', line 909

class DomainSummary < Struct.new(
  :domain_name,
  :auto_renew,
  :transfer_lock,
  :expiry)
  SENSITIVE = []
  include Aws::Structure
end

#expiryTime

Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).

Returns:

  • (Time)


909
910
911
912
913
914
915
916
# File 'lib/aws-sdk-route53domains/types.rb', line 909

class DomainSummary < Struct.new(
  :domain_name,
  :auto_renew,
  :transfer_lock,
  :expiry)
  SENSITIVE = []
  include Aws::Structure
end

#transfer_lockBoolean

Indicates whether a domain is locked from unauthorized transfer to another party.

Returns:

  • (Boolean)


909
910
911
912
913
914
915
916
# File 'lib/aws-sdk-route53domains/types.rb', line 909

class DomainSummary < Struct.new(
  :domain_name,
  :auto_renew,
  :transfer_lock,
  :expiry)
  SENSITIVE = []
  include Aws::Structure
end