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.
-
#http_redirect ⇒ Types::HttpRedirect
Contains information for HTTP-based domain validation of certificates requested through CloudFront and issued by ACM.
-
#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`.
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :validation_method) SENSITIVE = [] include Aws::Structure end |
#http_redirect ⇒ Types::HttpRedirect
Contains information for HTTP-based domain validation of certificates requested through CloudFront and issued by ACM. This field exists only when the certificate type is ‘AMAZON_ISSUED` and the validation method is `HTTP`.
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :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
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_domain ⇒ String
The domain name that ACM used to send domain validation emails.
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_emails ⇒ Array<String>
A list of email addresses that ACM used to send domain validation emails.
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :validation_method) SENSITIVE = [] include Aws::Structure end |
#validation_method ⇒ String
Specifies the domain validation method.
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :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
609 610 611 612 613 614 615 616 617 618 619 |
# File 'lib/aws-sdk-acm/types.rb', line 609 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :validation_method) SENSITIVE = [] include Aws::Structure end |