import * as cdk from "../../core/lib"; import * as constructs from "constructs"; import * as cfn_parse from "../../core/lib/helpers-internal"; import { AccountReference, AcmeDomainValidationReference, AcmeEndpointReference, AcmeExternalAccountBindingReference, CertificateReference, IAccountRef, IAcmeDomainValidationRef, IAcmeEndpointRef, IAcmeExternalAccountBindingRef, ICertificateRef } from "../../interfaces/generated/aws-certificatemanager-interfaces.generated"; /** * The `AWS::CertificateManager::Account` resource defines the expiry event configuration that determines the number of days prior to expiry when ACM starts generating EventBridge events. * * @cloudformationResource AWS::CertificateManager::Account * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html */ export declare class CfnAccount extends cdk.CfnResource implements cdk.IInspectable, IAccountRef { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnAccount from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAccount; /** * Checks whether the given object is a CfnAccount */ static isCfnAccount(x: any): x is CfnAccount; /** * Object containing expiration events options associated with an AWS account . */ private _expiryEventsConfiguration; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::CertificateManager::Account`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAccountProps); get accountRef(): AccountReference; /** * Object containing expiration events options associated with an AWS account . */ get expiryEventsConfiguration(): CfnAccount.ExpiryEventsConfigurationProperty | cdk.IResolvable; /** * Object containing expiration events options associated with an AWS account . */ set expiryEventsConfiguration(value: CfnAccount.ExpiryEventsConfigurationProperty | cdk.IResolvable); /** * ID of the AWS account that owns the certificate. * * @cloudformationAttribute AccountId */ get attrAccountId(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnAccount { /** * Object containing expiration events options associated with an AWS account . * * For more information, see [ExpiryEventsConfiguration](https://docs.aws.amazon.com/acm/latest/APIReference/API_ExpiryEventsConfiguration.html) in the API reference. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-account-expiryeventsconfiguration.html */ interface ExpiryEventsConfigurationProperty { /** * This option specifies the number of days prior to certificate expiration when ACM starts generating `EventBridge` events. * * ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-account-expiryeventsconfiguration.html#cfn-certificatemanager-account-expiryeventsconfiguration-daysbeforeexpiry */ readonly daysBeforeExpiry?: number; } } /** * Properties for defining a `CfnAccount` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html */ export interface CfnAccountProps { /** * Object containing expiration events options associated with an AWS account . * * For more information, see [ExpiryEventsConfiguration](https://docs.aws.amazon.com/acm/latest/APIReference/API_ExpiryEventsConfiguration.html) in the API reference. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html#cfn-certificatemanager-account-expiryeventsconfiguration */ readonly expiryEventsConfiguration: CfnAccount.ExpiryEventsConfigurationProperty | cdk.IResolvable; } /** * The `AWS::CertificateManager::Certificate` resource requests an Certificate Manager ( ACM ) certificate that you can use to enable secure connections. * * For example, you can deploy an ACM certificate to an Elastic Load Balancer to enable HTTPS support. For more information, see [RequestCertificate](https://docs.aws.amazon.com/acm/latest/APIReference/API_RequestCertificate.html) in the Certificate Manager API Reference. * * > When you use the `AWS::CertificateManager::Certificate` resource in a CloudFormation stack, domain validation is handled automatically if all three of the following are true: The certificate domain is hosted in Amazon Route 53, the domain resides in your AWS account , and you are using DNS validation. * > * > However, if the certificate uses email validation, or if the domain is not hosted in Route 53, then the stack will remain in the `CREATE_IN_PROGRESS` state. Further stack operations are delayed until you validate the certificate request, either by acting upon the instructions in the validation email, or by adding a CNAME record to your DNS configuration. For more information, see [Option 1: DNS Validation](https://docs.aws.amazon.com/acm/latest/userguide/dns-validation.html) and [Option 2: Email Validation](https://docs.aws.amazon.com/acm/latest/userguide/email-validation.html) . * * @cloudformationResource AWS::CertificateManager::Certificate * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html */ export declare class CfnCertificate extends cdk.CfnResource implements cdk.IInspectable, ICertificateRef, cdk.ITaggable { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnCertificate from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnCertificate; /** * Checks whether the given object is a CfnCertificate */ static isCfnCertificate(x: any): x is CfnCertificate; static arnForCertificate(resource: ICertificateRef): string; /** * The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */ private _certificateAuthorityArn?; /** * You can opt out of allowing export of your certificate by specifying the `DISABLED` option. */ private _certificateExport?; /** * You can opt out of certificate transparency logging by specifying the `DISABLED` option. */ private _certificateTransparencyLoggingPreference?; /** * The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, `*.example.com` protects `www.example.com` , `site.example.com` , and `images.example.com.`. */ private _domainName; /** * Domain information that domain name registrars use to verify your identity. */ private _domainValidationOptions?; /** * Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. */ private _keyAlgorithm?; /** * Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. */ private _subjectAlternativeNames?; /** * Tag Manager which manages the tags for this resource */ readonly tags: cdk.TagManager; /** * Key-value pairs that can identify the certificate. */ private _tagsRaw?; /** * The method you want to use to validate that you own or control the domain associated with a public certificate. */ private _validationMethod?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::CertificateManager::Certificate`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnCertificateProps); get certificateRef(): CertificateReference; /** * The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */ get certificateAuthorityArn(): string | undefined; /** * The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. */ set certificateAuthorityArn(value: string | undefined); /** * You can opt out of allowing export of your certificate by specifying the `DISABLED` option. */ get certificateExport(): string | undefined; /** * You can opt out of allowing export of your certificate by specifying the `DISABLED` option. */ set certificateExport(value: string | undefined); /** * You can opt out of certificate transparency logging by specifying the `DISABLED` option. */ get certificateTransparencyLoggingPreference(): string | undefined; /** * You can opt out of certificate transparency logging by specifying the `DISABLED` option. */ set certificateTransparencyLoggingPreference(value: string | undefined); /** * The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, `*.example.com` protects `www.example.com` , `site.example.com` , and `images.example.com.`. */ get domainName(): string; /** * The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, `*.example.com` protects `www.example.com` , `site.example.com` , and `images.example.com.`. */ set domainName(value: string); /** * Domain information that domain name registrars use to verify your identity. */ get domainValidationOptions(): Array | cdk.IResolvable | undefined; /** * Domain information that domain name registrars use to verify your identity. */ set domainValidationOptions(value: Array | cdk.IResolvable | undefined); /** * Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. */ get keyAlgorithm(): string | undefined; /** * Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. */ set keyAlgorithm(value: string | undefined); /** * Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. */ get subjectAlternativeNames(): Array | undefined; /** * Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. */ set subjectAlternativeNames(value: Array | undefined); /** * Key-value pairs that can identify the certificate. */ get tagsRaw(): Array | undefined; /** * Key-value pairs that can identify the certificate. */ set tagsRaw(value: Array | undefined); /** * The method you want to use to validate that you own or control the domain associated with a public certificate. */ get validationMethod(): string | undefined; /** * The method you want to use to validate that you own or control the domain associated with a public certificate. */ set validationMethod(value: string | undefined); /** * The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. * * @cloudformationAttribute CertificateArn */ get attrCertificateArn(): string; /** * @cloudformationAttribute Id */ get attrId(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnCertificate { /** * `DomainValidationOption` is a property of the [AWS::CertificateManager::Certificate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html) resource that specifies the Certificate Manager ( ACM ) certificate domain to validate. Depending on the chosen validation method, ACM checks the domain's DNS record for a validation CNAME, or it attempts to send a validation email message to the domain owner. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html */ interface DomainValidationOptionProperty { /** * A fully qualified domain name (FQDN) in the certificate request. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html#cfn-certificatemanager-certificate-domainvalidationoption-domainname */ readonly domainName?: string; /** * The `HostedZoneId` option, which is available if you are using Route 53 as your domain registrar, causes ACM to add your CNAME to the domain record. * * Your list of `DomainValidationOptions` must contain one and only one of the domain-validation options, and the `HostedZoneId` can be used only when `DNS` is specified as your validation method. * * Use the Route 53 `ListHostedZones` API to discover IDs for available hosted zones. * * This option is required for publicly trusted certificates. * * > The `ListHostedZones` API returns IDs in the format "/hostedzone/Z111111QQQQQQQ", but CloudFormation requires the IDs to be in the format "Z111111QQQQQQQ". * * When you change your `DomainValidationOptions` , a new resource is created. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html#cfn-certificatemanager-certificate-domainvalidationoption-hostedzoneid */ readonly hostedZoneId?: string; /** * The domain name to which you want ACM to send validation emails. * * This domain name is the suffix of the email addresses that you want ACM to use. This must be the same as the `DomainName` value or a superdomain of the `DomainName` value. For example, if you request a certificate for `testing.example.com` , you can specify `example.com` as this value. In that case, ACM sends domain validation emails to the following five addresses: * * - admin@example.com * - administrator@example.com * - hostmaster@example.com * - postmaster@example.com * - webmaster@example.com * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html#cfn-certificatemanager-certificate-domainvalidationoption-validationdomain */ readonly validationDomain?: string; } } /** * Properties for defining a `CfnCertificate` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html */ export interface CfnCertificateProps { /** * The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used to issue the certificate. * * If you do not provide an ARN and you are trying to request a private certificate, ACM will attempt to issue a public certificate. For more information about private CAs, see the [AWS Private Certificate Authority](https://docs.aws.amazon.com/privateca/latest/userguide/PcaWelcome.html) user guide. The ARN must have the following form: * * `arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012` * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateauthorityarn */ readonly certificateAuthorityArn?: string; /** * You can opt out of allowing export of your certificate by specifying the `DISABLED` option. * * Allow export of your certificate by specifying the `ENABLED` option. * * If you do not specify an export preference in a new CloudFormation template, it is the same as explicitly denying export of your certificate. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificateexport */ readonly certificateExport?: string; /** * You can opt out of certificate transparency logging by specifying the `DISABLED` option. * * Opt in by specifying `ENABLED` . This setting doces not apply to private certificates. * * If you do not specify a certificate transparency logging preference on a new CloudFormation template, or if you remove the logging preference from an existing template, this is the same as explicitly enabling the preference. * * Changing the certificate transparency logging preference will update the existing resource by calling `UpdateCertificateOptions` on the certificate. This action will not create a new resource. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-certificatetransparencyloggingpreference */ readonly certificateTransparencyLoggingPreference?: string; /** * The fully qualified domain name (FQDN), such as www.example.com, with which you want to secure an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects several sites in the same domain. For example, `*.example.com` protects `www.example.com` , `site.example.com` , and `images.example.com.`. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname */ readonly domainName: string; /** * Domain information that domain name registrars use to verify your identity. * * > In order for a AWS::CertificateManager::Certificate to be provisioned and validated in CloudFormation automatically, the `DomainName` property needs to be identical to one of the `DomainName` property supplied in DomainValidationOptions, if the ValidationMethod is **DNS**. Failing to keep them like-for-like will result in failure to create the domain validation records in Route53. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainvalidationoptions */ readonly domainValidationOptions?: Array | cdk.IResolvable; /** * Specifies the algorithm of the public and private key pair that your certificate uses to encrypt data. * * RSA is the default key algorithm for ACM certificates. Elliptic Curve Digital Signature Algorithm (ECDSA) keys are smaller, offering security comparable to RSA keys but with greater computing efficiency. However, ECDSA is not supported by all network clients. Some AWS services may require RSA keys, or only support ECDSA keys of a particular size, while others allow the use of either RSA and ECDSA keys to ensure that compatibility is not broken. Check the requirements for the AWS service where you plan to deploy your certificate. For more information about selecting an algorithm, see [Key algorithms](https://docs.aws.amazon.com/acm/latest/userguide/acm-certificate-characteristics.html#algorithms-term) . * * > Algorithms supported for an ACM certificate request include: * > * > - `RSA_2048` * > - `EC_prime256v1` * > - `EC_secp384r1` * > * > Other listed algorithms are for imported certificates only. > When you request a private PKI certificate signed by a CA from AWS Private CA, the specified signing algorithm family (RSA or ECDSA) must match the algorithm family of the CA's secret key. * * Default: RSA_2048 * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-keyalgorithm */ readonly keyAlgorithm?: string; /** * Additional FQDNs to be included in the Subject Alternative Name extension of the ACM certificate. * * For example, you can add www.example.net to a certificate for which the `DomainName` field is www.example.com if users can reach your site by using either name. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-subjectalternativenames */ readonly subjectAlternativeNames?: Array; /** * Key-value pairs that can identify the certificate. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-tags */ readonly tags?: Array; /** * The method you want to use to validate that you own or control the domain associated with a public certificate. * * You can [validate with DNS](https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html) or [validate with email](https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html) . We recommend that you use DNS validation. * * If not specified, this property defaults to email validation. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-validationmethod */ readonly validationMethod?: string; } /** * Resource Type definition for AWS::CertificateManager::AcmeDomainValidation. * * @cloudformationResource AWS::CertificateManager::AcmeDomainValidation * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmedomainvalidation.html */ export declare class CfnAcmeDomainValidation extends cdk.CfnResource implements cdk.IInspectable, IAcmeDomainValidationRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnAcmeDomainValidation from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAcmeDomainValidation; /** * Checks whether the given object is a CfnAcmeDomainValidation */ static isCfnAcmeDomainValidation(x: any): x is CfnAcmeDomainValidation; static arnForAcmeDomainValidation(resource: IAcmeDomainValidationRef): string; /** * The ARN of the ACME endpoint this domain validation is associated with. */ private _acmeEndpointArn; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The domain name to validate. */ private _domainName; /** * Prevalidation method configuration. */ private _prevalidationOptions; /** * Tags associated with the domain validation. */ private _tags?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::CertificateManager::AcmeDomainValidation`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAcmeDomainValidationProps); get acmeDomainValidationRef(): AcmeDomainValidationReference; /** * The ARN of the ACME endpoint this domain validation is associated with. */ get acmeEndpointArn(): string; /** * The ARN of the ACME endpoint this domain validation is associated with. */ set acmeEndpointArn(value: string); /** * The domain name to validate. */ get domainName(): string; /** * The domain name to validate. */ set domainName(value: string); /** * Prevalidation method configuration. */ get prevalidationOptions(): cdk.IResolvable | CfnAcmeDomainValidation.PrevalidationOptionsProperty; /** * Prevalidation method configuration. */ set prevalidationOptions(value: cdk.IResolvable | CfnAcmeDomainValidation.PrevalidationOptionsProperty); /** * Tags associated with the domain validation. */ get tags(): Array | undefined; /** * Tags associated with the domain validation. */ set tags(value: Array | undefined); /** * The Amazon Resource Name (ARN) of the domain validation. * * @cloudformationAttribute Arn */ get attrArn(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnAcmeDomainValidation { /** * Prevalidation method configuration. * * Currently only DNS-based prevalidation is supported. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-prevalidationoptions.html */ interface PrevalidationOptionsProperty { /** * DNS-based prevalidation options for the domain validation. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-prevalidationoptions.html#cfn-certificatemanager-acmedomainvalidation-prevalidationoptions-dnsprevalidation */ readonly dnsPrevalidation: CfnAcmeDomainValidation.DnsPrevalidationOptionsProperty | cdk.IResolvable; } /** * DNS-based prevalidation options for the domain validation. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-dnsprevalidationoptions.html */ interface DnsPrevalidationOptionsProperty { /** * Controls which certificate types are authorized to be issued for the domain via the ACME endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-dnsprevalidationoptions.html#cfn-certificatemanager-acmedomainvalidation-dnsprevalidationoptions-domainscope */ readonly domainScope?: CfnAcmeDomainValidation.DomainScopeProperty | cdk.IResolvable; /** * The Route 53 hosted zone ID for automatic DNS record management. * * When provided, the service creates the validation DNS record on the customer's behalf. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-dnsprevalidationoptions.html#cfn-certificatemanager-acmedomainvalidation-dnsprevalidationoptions-hostedzoneid */ readonly hostedZoneId?: string; } /** * Controls which certificate types are authorized to be issued for the domain via the ACME endpoint. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-domainscope.html */ interface DomainScopeProperty { /** * Whether certificates may be issued for the exact domain. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-domainscope.html#cfn-certificatemanager-acmedomainvalidation-domainscope-exactdomain */ readonly exactDomain?: string; /** * Whether certificates may be issued for subdomains of the domain. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-domainscope.html#cfn-certificatemanager-acmedomainvalidation-domainscope-subdomains */ readonly subdomains?: string; /** * Whether wildcard certificates may be issued for the domain. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-domainscope.html#cfn-certificatemanager-acmedomainvalidation-domainscope-wildcards */ readonly wildcards?: string; } /** * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-tagsitems.html */ interface TagsItemsProperty { /** * The key name of the tag. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-tagsitems.html#cfn-certificatemanager-acmedomainvalidation-tagsitems-key */ readonly key: string; /** * The value for the tag. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmedomainvalidation-tagsitems.html#cfn-certificatemanager-acmedomainvalidation-tagsitems-value */ readonly value: string; } } /** * Properties for defining a `CfnAcmeDomainValidation` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmedomainvalidation.html */ export interface CfnAcmeDomainValidationProps { /** * The ARN of the ACME endpoint this domain validation is associated with. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmedomainvalidation.html#cfn-certificatemanager-acmedomainvalidation-acmeendpointarn */ readonly acmeEndpointArn: string; /** * The domain name to validate. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmedomainvalidation.html#cfn-certificatemanager-acmedomainvalidation-domainname */ readonly domainName: string; /** * Prevalidation method configuration. * * Currently only DNS-based prevalidation is supported. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmedomainvalidation.html#cfn-certificatemanager-acmedomainvalidation-prevalidationoptions */ readonly prevalidationOptions: cdk.IResolvable | CfnAcmeDomainValidation.PrevalidationOptionsProperty; /** * Tags associated with the domain validation. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmedomainvalidation.html#cfn-certificatemanager-acmedomainvalidation-tags */ readonly tags?: Array; } /** * Resource Type definition for AWS::CertificateManager::AcmeEndpoint. * * @cloudformationResource AWS::CertificateManager::AcmeEndpoint * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html */ export declare class CfnAcmeEndpoint extends cdk.CfnResource implements cdk.IInspectable, IAcmeEndpointRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnAcmeEndpoint from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAcmeEndpoint; /** * Checks whether the given object is a CfnAcmeEndpoint */ static isCfnAcmeEndpoint(x: any): x is CfnAcmeEndpoint; static arnForAcmeEndpoint(resource: IAcmeEndpointRef): string; /** * The authorization behavior for the ACME endpoint. */ private _authorizationBehavior; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The certificate authority configuration for the ACME endpoint. */ private _certificateAuthority; /** * Tags applied to certificates issued via this endpoint. */ private _certificateTags?; /** * Whether contact information is required for the ACME endpoint. */ private _contact?; /** * Tags associated with the ACME endpoint. */ private _tags?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::CertificateManager::AcmeEndpoint`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAcmeEndpointProps); get acmeEndpointRef(): AcmeEndpointReference; /** * The authorization behavior for the ACME endpoint. */ get authorizationBehavior(): string; /** * The authorization behavior for the ACME endpoint. */ set authorizationBehavior(value: string); /** * The certificate authority configuration for the ACME endpoint. */ get certificateAuthority(): CfnAcmeEndpoint.CertificateAuthorityProperty | cdk.IResolvable; /** * The certificate authority configuration for the ACME endpoint. */ set certificateAuthority(value: CfnAcmeEndpoint.CertificateAuthorityProperty | cdk.IResolvable); /** * Tags applied to certificates issued via this endpoint. */ get certificateTags(): Array | cdk.IResolvable | undefined; /** * Tags applied to certificates issued via this endpoint. */ set certificateTags(value: Array | cdk.IResolvable | undefined); /** * Whether contact information is required for the ACME endpoint. */ get contact(): string | undefined; /** * Whether contact information is required for the ACME endpoint. */ set contact(value: string | undefined); /** * Tags associated with the ACME endpoint. */ get tags(): Array | undefined; /** * Tags associated with the ACME endpoint. */ set tags(value: Array | undefined); /** * The Amazon Resource Name (ARN) of the ACME endpoint. * * @cloudformationAttribute AcmeEndpointArn */ get attrAcmeEndpointArn(): string; /** * The ACME directory URL for the endpoint. * * @cloudformationAttribute EndpointUrl */ get attrEndpointUrl(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnAcmeEndpoint { /** * The certificate authority configuration for the ACME endpoint. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-certificateauthority.html */ interface CertificateAuthorityProperty { /** * Configuration for the public certificate authority. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-certificateauthority.html#cfn-certificatemanager-acmeendpoint-certificateauthority-publiccertificateauthority */ readonly publicCertificateAuthority: cdk.IResolvable | CfnAcmeEndpoint.PublicCertificateAuthorityProperty; } /** * Configuration for the public certificate authority. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-publiccertificateauthority.html */ interface PublicCertificateAuthorityProperty { /** * The allowed key algorithms for certificates issued via this endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-publiccertificateauthority.html#cfn-certificatemanager-acmeendpoint-publiccertificateauthority-allowedkeyalgorithms */ readonly allowedKeyAlgorithms?: Array; } /** * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-tagsitems.html */ interface TagsItemsProperty { /** * The key name of the tag. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-tagsitems.html#cfn-certificatemanager-acmeendpoint-tagsitems-key */ readonly key: string; /** * The value for the tag. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-tagsitems.html#cfn-certificatemanager-acmeendpoint-tagsitems-value */ readonly value: string; } } /** * Properties for defining a `CfnAcmeEndpoint` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html */ export interface CfnAcmeEndpointProps { /** * The authorization behavior for the ACME endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html#cfn-certificatemanager-acmeendpoint-authorizationbehavior */ readonly authorizationBehavior: string; /** * The certificate authority configuration for the ACME endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html#cfn-certificatemanager-acmeendpoint-certificateauthority */ readonly certificateAuthority: CfnAcmeEndpoint.CertificateAuthorityProperty | cdk.IResolvable; /** * Tags applied to certificates issued via this endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html#cfn-certificatemanager-acmeendpoint-certificatetags */ readonly certificateTags?: Array | cdk.IResolvable; /** * Whether contact information is required for the ACME endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html#cfn-certificatemanager-acmeendpoint-contact */ readonly contact?: string; /** * Tags associated with the ACME endpoint. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeendpoint.html#cfn-certificatemanager-acmeendpoint-tags */ readonly tags?: Array; } /** * Resource Type definition for AWS::CertificateManager::AcmeExternalAccountBinding. * * @cloudformationResource AWS::CertificateManager::AcmeExternalAccountBinding * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html */ export declare class CfnAcmeExternalAccountBinding extends cdk.CfnResource implements cdk.IInspectable, IAcmeExternalAccountBindingRef, cdk.ITaggableV2 { /** * The CloudFormation resource type name for this resource class. */ static readonly CFN_RESOURCE_TYPE_NAME: string; /** * Build a CfnAcmeExternalAccountBinding from CloudFormation properties * * A factory method that creates a new instance of this class from an object * containing the CloudFormation properties of this resource. * Used in the @aws-cdk/cloudformation-include module. * * @internal */ static _fromCloudFormation(scope: constructs.Construct, id: string, resourceAttributes: any, options: cfn_parse.FromCloudFormationOptions): CfnAcmeExternalAccountBinding; /** * Checks whether the given object is a CfnAcmeExternalAccountBinding */ static isCfnAcmeExternalAccountBinding(x: any): x is CfnAcmeExternalAccountBinding; static arnForAcmeExternalAccountBinding(resource: IAcmeExternalAccountBindingRef): string; /** * The ARN of the ACME endpoint this binding is associated with. */ private _acmeEndpointArn; /** * Tag Manager which manages the tags for this resource */ readonly cdkTagManager: cdk.TagManager; /** * The expiration configuration for the external account binding. */ private _expiration?; /** * The IAM role ARN for cross-account access. */ private _roleArn; /** * Tags associated with the external account binding. */ private _tags?; protected readonly cfnPropertyNames: Record; /** * Create a new `AWS::CertificateManager::AcmeExternalAccountBinding`. * * @param scope Scope in which this resource is defined * @param id Construct identifier for this resource (unique in its scope) * @param props Resource properties */ constructor(scope: constructs.Construct, id: string, props: CfnAcmeExternalAccountBindingProps); get acmeExternalAccountBindingRef(): AcmeExternalAccountBindingReference; /** * The ARN of the ACME endpoint this binding is associated with. */ get acmeEndpointArn(): string; /** * The ARN of the ACME endpoint this binding is associated with. */ set acmeEndpointArn(value: string); /** * The expiration configuration for the external account binding. */ get expiration(): CfnAcmeExternalAccountBinding.ExpirationProperty | cdk.IResolvable | undefined; /** * The expiration configuration for the external account binding. */ set expiration(value: CfnAcmeExternalAccountBinding.ExpirationProperty | cdk.IResolvable | undefined); /** * The IAM role ARN for cross-account access. */ get roleArn(): string; /** * The IAM role ARN for cross-account access. */ set roleArn(value: string); /** * Tags associated with the external account binding. */ get tags(): Array | undefined; /** * Tags associated with the external account binding. */ set tags(value: Array | undefined); /** * The Amazon Resource Name (ARN) of the external account binding. * * @cloudformationAttribute AcmeExternalAccountBindingArn */ get attrAcmeExternalAccountBindingArn(): string; protected get cfnProperties(): Record; /** * Examines the CloudFormation resource and discloses attributes * * @param inspector tree inspector to collect and process attributes */ inspect(inspector: cdk.TreeInspector): void; protected renderProperties(props: Record): Record; } export declare namespace CfnAcmeExternalAccountBinding { /** * The expiration configuration for the external account binding. * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-expiration.html */ interface ExpirationProperty { /** * The time unit for the expiration value. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-expiration.html#cfn-certificatemanager-acmeexternalaccountbinding-expiration-type */ readonly type: string; /** * The expiration value. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-expiration.html#cfn-certificatemanager-acmeexternalaccountbinding-expiration-value */ readonly value: number; } /** * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-tagsitems.html */ interface TagsItemsProperty { /** * The key name of the tag. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-tagsitems.html#cfn-certificatemanager-acmeexternalaccountbinding-tagsitems-key */ readonly key: string; /** * The value for the tag. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-tagsitems.html#cfn-certificatemanager-acmeexternalaccountbinding-tagsitems-value */ readonly value: string; } } /** * Properties for defining a `CfnAcmeExternalAccountBinding` * * @struct * @stability external * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html */ export interface CfnAcmeExternalAccountBindingProps { /** * The ARN of the ACME endpoint this binding is associated with. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html#cfn-certificatemanager-acmeexternalaccountbinding-acmeendpointarn */ readonly acmeEndpointArn: string; /** * The expiration configuration for the external account binding. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html#cfn-certificatemanager-acmeexternalaccountbinding-expiration */ readonly expiration?: CfnAcmeExternalAccountBinding.ExpirationProperty | cdk.IResolvable; /** * The IAM role ARN for cross-account access. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html#cfn-certificatemanager-acmeexternalaccountbinding-rolearn */ readonly roleArn: string; /** * Tags associated with the external account binding. * * @see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html#cfn-certificatemanager-acmeexternalaccountbinding-tags */ readonly tags?: Array; } export type { IAccountRef, AccountReference }; export type { ICertificateRef, CertificateReference }; export type { IAcmeDomainValidationRef, AcmeDomainValidationReference }; export type { IAcmeEndpointRef, AcmeEndpointReference }; export type { IAcmeExternalAccountBindingRef, AcmeExternalAccountBindingReference };