Class: Aws::ACM::Types::DomainValidation
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::DomainValidation
- Defined in:
- gems/aws-sdk-acm/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 Amazon 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
.
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 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 Amazon CloudFront and issued by ACM.
This field exists only when the certificate type is AMAZON_ISSUED
and the validation method is HTTP
.
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 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.
_a79865eb4cd1a6ab990a45779b4e0b96.yourdomain.com
, only
_a79865eb4cd1a6ab990a45779b4e0b96
must be used.
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 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.
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 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.
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 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.
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 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
630 631 632 633 634 635 636 637 638 639 640 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 630 class DomainValidation < Struct.new( :domain_name, :validation_emails, :validation_domain, :validation_status, :resource_record, :http_redirect, :validation_method) SENSITIVE = [] include Aws::Structure end |