Interface CfnDomainNameProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainNameProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)",
date="2024-09-06T01:36:22.817Z")
@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.*; 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(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomainNameProps
static final class
An implementation forCfnDomainNameProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainNameProps.Builder
builder()
The custom domain name for your API in Amazon API Gateway.default Object
The domain name configurations.default Object
The mutual TLS authentication configuration for a custom domain name.getTags()
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.
- See Also:
-
getDomainNameConfigurations
The domain name configurations.- See Also:
-
getMutualTlsAuthentication
The mutual TLS authentication configuration for a custom domain name.- See Also:
-
getTags
The collection of tags associated with a domain name.- See Also:
-
builder
- Returns:
- a
CfnDomainNameProps.Builder
ofCfnDomainNameProps
-