@Stability(value=Stable)
public static interface CfnHttpApi.HttpApiDomainConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sam.*;
HttpApiDomainConfigurationProperty httpApiDomainConfigurationProperty = HttpApiDomainConfigurationProperty.builder()
.certificateArn("certificateArn")
.domainName("domainName")
// the properties below are optional
.basePath("basePath")
.endpointConfiguration("endpointConfiguration")
.mutualTlsAuthentication(MutualTlsAuthenticationProperty.builder()
.truststoreUri("truststoreUri")
.truststoreVersion(false)
.build())
.route53(Route53ConfigurationProperty.builder()
.distributedDomainName("distributedDomainName")
.evaluateTargetHealth(false)
.hostedZoneId("hostedZoneId")
.hostedZoneName("hostedZoneName")
.ipV6(false)
.build())
.securityPolicy("securityPolicy")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnHttpApi.HttpApiDomainConfigurationProperty.Builder
A builder for
CfnHttpApi.HttpApiDomainConfigurationProperty |
static class |
CfnHttpApi.HttpApiDomainConfigurationProperty.Jsii$Proxy
An implementation for
CfnHttpApi.HttpApiDomainConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnHttpApi.HttpApiDomainConfigurationProperty.Builder |
builder() |
default String |
getBasePath()
`CfnHttpApi.HttpApiDomainConfigurationProperty.BasePath`.
|
String |
getCertificateArn()
`CfnHttpApi.HttpApiDomainConfigurationProperty.CertificateArn`.
|
String |
getDomainName()
`CfnHttpApi.HttpApiDomainConfigurationProperty.DomainName`.
|
default String |
getEndpointConfiguration()
`CfnHttpApi.HttpApiDomainConfigurationProperty.EndpointConfiguration`.
|
default Object |
getMutualTlsAuthentication()
`CfnHttpApi.HttpApiDomainConfigurationProperty.MutualTlsAuthentication`.
|
default Object |
getRoute53()
`CfnHttpApi.HttpApiDomainConfigurationProperty.Route53`.
|
default String |
getSecurityPolicy()
`CfnHttpApi.HttpApiDomainConfigurationProperty.SecurityPolicy`.
|
@Stability(value=Stable) @NotNull String getCertificateArn()
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default String getBasePath()
@Stability(value=Stable) @Nullable default String getEndpointConfiguration()
@Stability(value=Stable) @Nullable default Object getMutualTlsAuthentication()
@Stability(value=Stable) @Nullable default Object getRoute53()
@Stability(value=Stable) @Nullable default String getSecurityPolicy()
@Stability(value=Stable) static CfnHttpApi.HttpApiDomainConfigurationProperty.Builder builder()
Copyright © 2023. All rights reserved.