Class: Aws::ACM::Types::DomainValidation
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::DomainValidation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-acm/types.rb
Overview
Contains information about the validation of each domain name in the certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
A fully qualified domain name (FQDN) in the certificate.
-
#resource_record ⇒ Types::ResourceRecord
Contains the CNAME record that you add to your DNS database for domain validation.
-
#validation_domain ⇒ String
The domain name that ACM used to send domain validation emails.
-
#validation_emails ⇒ Array<String>
A list of email addresses that ACM used to send domain validation emails.
-
#validation_method ⇒ String
Specifies the domain validation method.
-
#validation_status ⇒ String
The validation status of the domain name.
Instance Attribute Details
#domain_name ⇒ String
A fully qualified domain name (FQDN) in the certificate. For example, ‘www.example.com` or `example.com`.
580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-acm/types.rb', line 580 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :validation_method) SENSITIVE = [] include Aws::Structure end |
#resource_record ⇒ Types::ResourceRecord
Contains the CNAME record that you add to your DNS database for domain validation. For more information, see [Use DNS to Validate Domain Ownership].
Note: The CNAME information that you need does not include the name of your domain. If you include your domain name in the DNS database CNAME record, validation fails. For example, if the name is “_a79865eb4cd1a6ab990a45779b4e0b96.yourdomain.com”, only “_a79865eb4cd1a6ab990a45779b4e0b96” must be used.
[1]: docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html
580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-acm/types.rb', line 580 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_domain ⇒ String
The domain name that ACM used to send domain validation emails.
580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-acm/types.rb', line 580 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_emails ⇒ Array<String>
A list of email addresses that ACM used to send domain validation emails.
580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-acm/types.rb', line 580 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_method ⇒ String
Specifies the domain validation method.
580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-acm/types.rb', line 580 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_status ⇒ String
The validation status of the domain name. This can be one of the following values:
-
‘PENDING_VALIDATION`
-
‘SUCCESS`
-
‘FAILED`
580 581 582 583 584 585 586 587 588 589 |
# File 'lib/aws-sdk-acm/types.rb', line 580 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :validation_method) SENSITIVE = [] include Aws::Structure end |