Class CfnPublicDnsNamespace

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.servicediscovery.CfnPublicDnsNamespace
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:37.537Z") @Stability(Stable) public class CfnPublicDnsNamespace extends CfnResource implements IInspectable, ITaggable
Creates a public namespace based on DNS, which is visible on the internet.

The namespace defines your service naming scheme. For example, if you name your namespace example.com and name your service backend , the resulting DNS name for the service is backend.example.com . You can discover instances that were registered with a public DNS namespace by using either a DiscoverInstances request or using DNS. For the current quota on the number of namespaces that you can create using the same AWS account , see AWS Cloud Map quotas in the AWS Cloud Map Developer Guide .

The CreatePublicDnsNamespace API operation is not supported in the AWS GovCloud (US) Regions.

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.servicediscovery.*;
 CfnPublicDnsNamespace cfnPublicDnsNamespace = CfnPublicDnsNamespace.Builder.create(this, "MyCfnPublicDnsNamespace")
         .name("name")
         // the properties below are optional
         .description("description")
         .properties(PropertiesProperty.builder()
                 .dnsProperties(PublicDnsPropertiesMutableProperty.builder()
                         .soa(SOAProperty.builder()
                                 .ttl(123)
                                 .build())
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • 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

    • CfnPublicDnsNamespace

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

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

      @Stability(Stable) public CfnPublicDnsNamespace(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnPublicDnsNamespaceProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). 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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the public namespace.
    • getAttrHostedZoneId

      @Stability(Stable) @NotNull public String getAttrHostedZoneId()
      The ID for the Route 53 hosted zone that AWS Cloud Map creates when you create a namespace.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      The ID of the public namespace.
    • getCfnProperties

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

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name that you want to assign to this namespace.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name that you want to assign to this namespace.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description for the namespace.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description for the namespace.
    • getProperties

      @Stability(Stable) @Nullable public Object getProperties()
      Properties for the public DNS namespace.
    • setProperties

      @Stability(Stable) public void setProperties(@Nullable IResolvable value)
      Properties for the public DNS namespace.
    • setProperties

      @Stability(Stable) public void setProperties(@Nullable CfnPublicDnsNamespace.PropertiesProperty value)
      Properties for the public DNS namespace.
    • getTagsRaw

      @Stability(Stable) @Nullable public List<CfnTag> getTagsRaw()
      The tags for the namespace.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable List<CfnTag> value)
      The tags for the namespace.