Interface CfnHttpNamespaceProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnHttpNamespaceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.577Z") @Stability(Stable) public interface CfnHttpNamespaceProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnHttpNamespace.

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.*;
 CfnHttpNamespaceProps cfnHttpNamespaceProps = CfnHttpNamespaceProps.builder()
         .name("name")
         // the properties below are optional
         .description("description")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getName

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

      @Stability(Stable) @Nullable default String getDescription()
      A description for the namespace.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> 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.

    • builder

      @Stability(Stable) static CfnHttpNamespaceProps.Builder builder()
      Returns:
      a CfnHttpNamespaceProps.Builder of CfnHttpNamespaceProps