amazonka-certificatemanager-1.6.1: Amazon Certificate Manager SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.CertificateManager.ResendValidationEmail

Contents

Description

Resends the email that requests domain ownership validation. The domain owner or an authorized representative must approve the ACM certificate before it can be issued. The certificate can be approved by clicking a link in the mail to navigate to the Amazon certificate approval website and then clicking I Approve . However, the validation email can be blocked by spam filters. Therefore, if you do not receive the original mail, you can request that the mail be resent within 72 hours of requesting the ACM certificate. If more than 72 hours have elapsed since your original request or since your last attempt to resend validation mail, you must request a new certificate. For more information about setting up your contact email addresses, see Configure Email for your Domain .

Synopsis

Creating a Request

resendValidationEmail Source #

Creates a value of ResendValidationEmail with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • rveCertificateARN - 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
  • rveDomain - The fully qualified domain name (FQDN) of the certificate that needs to be validated.
  • rveValidationDomain - 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: * adminsubdomain.example.com * administratorsubdomain.example.com * hostmastersubdomain.example.com * postmastersubdomain.example.com * webmaster@subdomain.example.com

data ResendValidationEmail Source #

See: resendValidationEmail smart constructor.

Instances
Eq ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Data ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ResendValidationEmail -> c ResendValidationEmail #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ResendValidationEmail #

toConstr :: ResendValidationEmail -> Constr #

dataTypeOf :: ResendValidationEmail -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ResendValidationEmail) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ResendValidationEmail) #

gmapT :: (forall b. Data b => b -> b) -> ResendValidationEmail -> ResendValidationEmail #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ResendValidationEmail -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ResendValidationEmail -> r #

gmapQ :: (forall d. Data d => d -> u) -> ResendValidationEmail -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ResendValidationEmail -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ResendValidationEmail -> m ResendValidationEmail #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ResendValidationEmail -> m ResendValidationEmail #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ResendValidationEmail -> m ResendValidationEmail #

Read ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Show ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Generic ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Associated Types

type Rep ResendValidationEmail :: Type -> Type #

Hashable ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

ToJSON ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

AWSRequest ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Associated Types

type Rs ResendValidationEmail :: Type #

ToHeaders ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

ToPath ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

ToQuery ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

NFData ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Methods

rnf :: ResendValidationEmail -> () #

type Rep ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

type Rep ResendValidationEmail = D1 (MetaData "ResendValidationEmail" "Network.AWS.CertificateManager.ResendValidationEmail" "amazonka-certificatemanager-1.6.1-4shwck4gg3E1zBQz4D8KdL" False) (C1 (MetaCons "ResendValidationEmail'" PrefixI True) (S1 (MetaSel (Just "_rveCertificateARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: (S1 (MetaSel (Just "_rveDomain") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_rveValidationDomain") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs ResendValidationEmail Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Request Lenses

rveCertificateARN :: Lens' ResendValidationEmail Text Source #

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

rveDomain :: Lens' ResendValidationEmail Text Source #

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

rveValidationDomain :: Lens' ResendValidationEmail Text Source #

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: * adminsubdomain.example.com * administratorsubdomain.example.com * hostmastersubdomain.example.com * postmastersubdomain.example.com * webmaster@subdomain.example.com

Destructuring the Response

resendValidationEmailResponse :: ResendValidationEmailResponse Source #

Creates a value of ResendValidationEmailResponse with the minimum fields required to make a request.

data ResendValidationEmailResponse Source #

See: resendValidationEmailResponse smart constructor.

Instances
Eq ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Data ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ResendValidationEmailResponse -> c ResendValidationEmailResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ResendValidationEmailResponse #

toConstr :: ResendValidationEmailResponse -> Constr #

dataTypeOf :: ResendValidationEmailResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c ResendValidationEmailResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ResendValidationEmailResponse) #

gmapT :: (forall b. Data b => b -> b) -> ResendValidationEmailResponse -> ResendValidationEmailResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ResendValidationEmailResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ResendValidationEmailResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> ResendValidationEmailResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ResendValidationEmailResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ResendValidationEmailResponse -> m ResendValidationEmailResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ResendValidationEmailResponse -> m ResendValidationEmailResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ResendValidationEmailResponse -> m ResendValidationEmailResponse #

Read ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Show ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Generic ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

Associated Types

type Rep ResendValidationEmailResponse :: Type -> Type #

NFData ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

type Rep ResendValidationEmailResponse Source # 
Instance details

Defined in Network.AWS.CertificateManager.ResendValidationEmail

type Rep ResendValidationEmailResponse = D1 (MetaData "ResendValidationEmailResponse" "Network.AWS.CertificateManager.ResendValidationEmail" "amazonka-certificatemanager-1.6.1-4shwck4gg3E1zBQz4D8KdL" False) (C1 (MetaCons "ResendValidationEmailResponse'" PrefixI False) (U1 :: Type -> Type))