Class: Aws::Route53Domains::Types::DomainSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::DomainSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-route53domains/types.rb
Overview
Summary information about one domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_renew ⇒ Boolean
Indicates whether the domain is automatically renewed upon expiration.
-
#domain_name ⇒ String
The name of the domain that the summary information applies to.
-
#expiry ⇒ Time
Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).
-
#transfer_lock ⇒ Boolean
Indicates whether a domain is locked from unauthorized transfer to another party.
Instance Attribute Details
#auto_renew ⇒ Boolean
Indicates whether the domain is automatically renewed upon expiration.
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_name ⇒ String
The name of the domain that the summary information applies to.
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 |
#expiry ⇒ Time
Expiration date of the domain in Unix time format and Coordinated Universal Time (UTC).
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_lock ⇒ Boolean
Indicates whether a domain is locked from unauthorized transfer to another party.
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 |