@Stability(value=Stable)
public static interface CfnDomainName.DomainNameConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
DomainNameConfiguration is a property of the AWS::ApiGatewayV2::DomainName resource.
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.*;
DomainNameConfigurationProperty domainNameConfigurationProperty = DomainNameConfigurationProperty.builder()
.certificateArn("certificateArn")
.certificateName("certificateName")
.endpointType("endpointType")
.ownershipVerificationCertificateArn("ownershipVerificationCertificateArn")
.securityPolicy("securityPolicy")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDomainName.DomainNameConfigurationProperty.Builder
A builder for
CfnDomainName.DomainNameConfigurationProperty |
static class |
CfnDomainName.DomainNameConfigurationProperty.Jsii$Proxy
An implementation for
CfnDomainName.DomainNameConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDomainName.DomainNameConfigurationProperty.Builder |
builder() |
default String |
getCertificateArn()
An AWS -managed certificate that will be used by the edge-optimized endpoint for this domain name.
|
default String |
getCertificateName()
The user-friendly name of the certificate that will be used by the edge-optimized endpoint for this domain name.
|
default String |
getEndpointType()
The endpoint type.
|
default String |
getOwnershipVerificationCertificateArn()
The ARN of the public certificate issued by ACM to validate ownership of your custom domain.
|
default String |
getSecurityPolicy()
The Transport Layer Security (TLS) version of the security policy for this domain name.
|
@Stability(value=Stable) @Nullable default String getCertificateArn()
AWS Certificate Manager is the only supported source.
@Stability(value=Stable) @Nullable default String getCertificateName()
@Stability(value=Stable) @Nullable default String getEndpointType()
@Stability(value=Stable) @Nullable default String getOwnershipVerificationCertificateArn()
Only required when configuring mutual TLS and using an ACM imported or private CA certificate ARN as the RegionalCertificateArn.
@Stability(value=Stable) @Nullable default String getSecurityPolicy()
The valid values are TLS_1_0 and TLS_1_2 .
@Stability(value=Stable) static CfnDomainName.DomainNameConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.