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:49.424Z")
@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.appsync.*;
CfnDomainNameProps cfnDomainNameProps = CfnDomainNameProps.builder()
.certificateArn("certificateArn")
.domainName("domainName")
// the properties below are optional
.description("description")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainNamePropsstatic final classAn implementation forCfnDomainNameProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainNameProps.Builderbuilder()The Amazon Resource Name (ARN) of the certificate.default StringThe decription for your domain name.The domain name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateArn
The Amazon Resource Name (ARN) of the certificate.This will be an AWS Certificate Manager certificate.
-
getDomainName
The domain name. -
getDescription
The decription for your domain name. -
builder
- Returns:
- a
CfnDomainNameProps.BuilderofCfnDomainNameProps
-