Class CfnDomainName

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:49.420Z") @Stability(Stable) public class CfnDomainName extends CfnResource implements IInspectable
A CloudFormation AWS::AppSync::DomainName.

The AWS::AppSync::DomainName resource creates a DomainNameConfig object to configure a custom domain.

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.*;
 CfnDomainName cfnDomainName = CfnDomainName.Builder.create(this, "MyCfnDomainName")
         .certificateArn("certificateArn")
         .domainName("domainName")
         // the properties below are optional
         .description("description")
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnDomainName

      protected CfnDomainName(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnDomainName

      protected CfnDomainName(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnDomainName

      @Stability(Stable) public CfnDomainName(@NotNull Construct scope, @NotNull String id, @NotNull CfnDomainNameProps props)
      Create a new AWS::AppSync::DomainName.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrAppSyncDomainName

      @Stability(Stable) @NotNull public String getAttrAppSyncDomainName()
      The domain name provided by AWS AppSync .
    • getAttrDomainName

      @Stability(Stable) @NotNull public String getAttrDomainName()
      The domain name.
    • getAttrHostedZoneId

      @Stability(Stable) @NotNull public String getAttrHostedZoneId()
      The ID of your Amazon RouteĀ 53 hosted zone.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCertificateArn

      @Stability(Stable) @NotNull public String getCertificateArn()
      The Amazon Resource Name (ARN) of the certificate.

      This will be an AWS Certificate Manager certificate.

    • setCertificateArn

      @Stability(Stable) public void setCertificateArn(@NotNull String value)
      The Amazon Resource Name (ARN) of the certificate.

      This will be an AWS Certificate Manager certificate.

    • getDomainName

      @Stability(Stable) @NotNull public String getDomainName()
      The domain name.
    • setDomainName

      @Stability(Stable) public void setDomainName(@NotNull String value)
      The domain name.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      The decription for your domain name.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      The decription for your domain name.