Class CfnHttpNamespace

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:45.575Z") @Stability(Stable) public class CfnHttpNamespace extends CfnResource implements IInspectable
A CloudFormation AWS::ServiceDiscovery::HttpNamespace.

The HttpNamespace resource is an AWS Cloud Map resource type that contains information about an HTTP namespace. Service instances that you register using an HTTP namespace can be discovered using a DiscoverInstances request but can't be discovered 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 ** .

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.*;
 CfnHttpNamespace cfnHttpNamespace = CfnHttpNamespace.Builder.create(this, "MyCfnHttpNamespace")
         .name("name")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .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

    • CfnHttpNamespace

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

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

      @Stability(Stable) public CfnHttpNamespace(@NotNull Construct scope, @NotNull String id, @NotNull CfnHttpNamespaceProps props)
      Create a new AWS::ServiceDiscovery::HttpNamespace.

      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.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The Amazon Resource Name (ARN) of the namespace, such as arn:aws:service-discovery:us-east-1:123456789012:http-namespace/http-namespace-a1bzhi .
    • getAttrId

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

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

      @Stability(Stable) @NotNull public TagManager getTags()
      The tags for the namespace.

      Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

    • 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.