@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:15.782Z") @Stability(value=Stable) public interface CfnDomainNameProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDomainNameProps.Builder
A builder for
CfnDomainNameProps |
static class |
CfnDomainNameProps.Jsii$Proxy
An implementation for
CfnDomainNameProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDomainNameProps.Builder |
builder() |
String |
getDomainName()
`AWS::ApiGatewayV2::DomainName.DomainName`.
|
default Object |
getDomainNameConfigurations()
`AWS::ApiGatewayV2::DomainName.DomainNameConfigurations`.
|
default Object |
getMutualTlsAuthentication()
`AWS::ApiGatewayV2::DomainName.MutualTlsAuthentication`.
|
default Object |
getTags()
`AWS::ApiGatewayV2::DomainName.Tags`.
|
@Stability(value=Stable) @NotNull String getDomainName()
@Stability(value=Stable) @Nullable default Object getDomainNameConfigurations()
@Stability(value=Stable) @Nullable default Object getMutualTlsAuthentication()
@Stability(value=Stable) @Nullable default Object getTags()
@Stability(value=Stable) static CfnDomainNameProps.Builder builder()
CfnDomainNameProps.Builder of CfnDomainNamePropsCopyright © 2021. All rights reserved.