Interface CfnHttpNamespaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHttpNamespaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-05-15T23:29:11.100Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnHttpNamespaceProps
static final class
An implementation forCfnHttpNamespaceProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name that you want to assign to this namespace.- See Also:
-
getDescription
A description for the namespace.- See Also:
-
getTags
-
builder
- Returns:
- a
CfnHttpNamespaceProps.Builder
ofCfnHttpNamespaceProps
-