@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 Amazon resource name (ARN) for the public certificate issued by AWS Certificate Manager .
|
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()
This ARN is used to validate custom domain ownership. It's required only if you configure mutual TLS and use either an ACM-imported or a 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 © 2023. All rights reserved.