Class: Aws::ACM::Types::ResendValidationEmailRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-acm/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_arnString

String that contains the ARN of the requested certificate. The certificate ARN is generated and returned by the RequestCertificate action as soon as the request is made. By default, using this parameter causes email to be sent to all top-level domains you specified in the certificate request. The ARN must be of the form:

‘arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012`

Returns:

  • (String)


1432
1433
1434
1435
1436
1437
1438
# File 'lib/aws-sdk-acm/types.rb', line 1432

class ResendValidationEmailRequest < Struct.new(
  :certificate_arn,
  :domain,
  :validation_domain)
  SENSITIVE = []
  include Aws::Structure
end

#domainString

The fully qualified domain name (FQDN) of the certificate that needs to be validated.

Returns:

  • (String)


1432
1433
1434
1435
1436
1437
1438
# File 'lib/aws-sdk-acm/types.rb', line 1432

class ResendValidationEmailRequest < Struct.new(
  :certificate_arn,
  :domain,
  :validation_domain)
  SENSITIVE = []
  include Aws::Structure
end

#validation_domainString

The base validation domain that will act as the suffix of the email addresses that are used to send the emails. This must be the same as the ‘Domain` value or a superdomain of the `Domain` value. For example, if you requested a certificate for `site.subdomain.example.com` and specify a ValidationDomain of `subdomain.example.com`, ACM sends email to the domain registrant, technical contact, and administrative contact in WHOIS and the following five addresses:

Returns:

  • (String)


1432
1433
1434
1435
1436
1437
1438
# File 'lib/aws-sdk-acm/types.rb', line 1432

class ResendValidationEmailRequest < Struct.new(
  :certificate_arn,
  :domain,
  :validation_domain)
  SENSITIVE = []
  include Aws::Structure
end