Class: Aws::Route53Domains::Types::ResendContactReachabilityEmailResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Route53Domains::Types::ResendContactReachabilityEmailResponse
- Defined in:
- gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:email_address]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The domain name for which you requested a confirmation email.
-
#email_address ⇒ String
The email address for the registrant contact at the time that we sent the verification email.
-
#is_already_verified ⇒ Boolean
Trueif the email address for the registrant contact has already been verified, andfalseotherwise.
Instance Attribute Details
#domain_name ⇒ String
The domain name for which you requested a confirmation email.
2655 2656 2657 2658 2659 2660 2661 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2655 class ResendContactReachabilityEmailResponse < Struct.new( :domain_name, :email_address, :is_already_verified) SENSITIVE = [:email_address] include Aws::Structure end |
#email_address ⇒ String
The email address for the registrant contact at the time that we sent the verification email.
2655 2656 2657 2658 2659 2660 2661 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2655 class ResendContactReachabilityEmailResponse < Struct.new( :domain_name, :email_address, :is_already_verified) SENSITIVE = [:email_address] include Aws::Structure end |
#is_already_verified ⇒ Boolean
True if the email address for the registrant contact has already
been verified, and false otherwise. If the email address has
already been verified, we don't send another confirmation email.
2655 2656 2657 2658 2659 2660 2661 |
# File 'gems/aws-sdk-route53domains/lib/aws-sdk-route53domains/types.rb', line 2655 class ResendContactReachabilityEmailResponse < Struct.new( :domain_name, :email_address, :is_already_verified) SENSITIVE = [:email_address] include Aws::Structure end |