Interface CfnDomainNameProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainNameProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.186Z")
@Stability(Stable)
public interface CfnDomainNameProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDomainName.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainNamePropsstatic final classAn implementation forCfnDomainNameProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainNameProps.Builderbuilder()The custom domain name for your API in Amazon API Gateway.default ObjectThe domain name configurations.default ObjectThe mutual TLS authentication configuration for a custom domain name.default ObjectgetTags()The collection of tags associated with a domain name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The custom domain name for your API in Amazon API Gateway.Uppercase letters are not supported.
-
getDomainNameConfigurations
The domain name configurations. -
getMutualTlsAuthentication
The mutual TLS authentication configuration for a custom domain name. -
getTags
The collection of tags associated with a domain name. -
builder
- Returns:
- a
CfnDomainNameProps.BuilderofCfnDomainNameProps
-