interface DomainScopeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeDomainValidation.DomainScopeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeDomainValidation_DomainScopeProperty |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeDomainValidation.DomainScopeProperty |
Python | aws_cdk.aws_certificatemanager.CfnAcmeDomainValidation.DomainScopeProperty |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeDomainValidation » DomainScopeProperty |
Controls which certificate types are authorized to be issued for the domain via the ACME endpoint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_certificatemanager as certificatemanager } from 'aws-cdk-lib';
const domainScopeProperty: certificatemanager.CfnAcmeDomainValidation.DomainScopeProperty = {
exactDomain: 'exactDomain',
subdomains: 'subdomains',
wildcards: 'wildcards',
};
Properties
| Name | Type | Description |
|---|---|---|
| exact | string | Whether certificates may be issued for the exact domain. |
| subdomains? | string | Whether certificates may be issued for subdomains of the domain. |
| wildcards? | string | Whether wildcard certificates may be issued for the domain. |
exactDomain?
Type:
string
(optional)
Whether certificates may be issued for the exact domain.
subdomains?
Type:
string
(optional)
Whether certificates may be issued for subdomains of the domain.
wildcards?
Type:
string
(optional)
Whether wildcard certificates may be issued for the domain.

.NET
Go
Java
Python
TypeScript