@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.260Z") @Stability(value=Stable) public interface CfnDomainNameProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
Object tags;
CfnDomainNameProps cfnDomainNameProps = CfnDomainNameProps.builder()
.domainName("domainName")
// the properties below are optional
.domainNameConfigurations(List.of(DomainNameConfigurationProperty.builder()
.certificateArn("certificateArn")
.certificateName("certificateName")
.endpointType("endpointType")
.ownershipVerificationCertificateArn("ownershipVerificationCertificateArn")
.securityPolicy("securityPolicy")
.build()))
.mutualTlsAuthentication(MutualTlsAuthenticationProperty.builder()
.truststoreUri("truststoreUri")
.truststoreVersion("truststoreVersion")
.build())
.tags(tags)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDomainNameProps.Builder
A builder for
CfnDomainNameProps |
static class |
CfnDomainNameProps.Jsii$Proxy
An implementation for
CfnDomainNameProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDomainNameProps.Builder |
builder() |
String |
getDomainName()
The custom domain name for your API in Amazon API Gateway.
|
default Object |
getDomainNameConfigurations()
The domain name configurations.
|
default Object |
getMutualTlsAuthentication()
The mutual TLS authentication configuration for a custom domain name.
|
default Object |
getTags()
The collection of tags associated with a domain name.
|
@Stability(value=Stable) @NotNull String getDomainName()
Uppercase letters are not supported.
@Stability(value=Stable) @Nullable default Object getDomainNameConfigurations()
@Stability(value=Stable) @Nullable default Object getMutualTlsAuthentication()
@Stability(value=Stable) @Nullable default Object getTags()
@Stability(value=Stable) static CfnDomainNameProps.Builder builder()
CfnDomainNameProps.Builder of CfnDomainNamePropsCopyright © 2022. All rights reserved.