aws-cdk-lib.aws_servicediscovery.CfnHttpNamespaceProps

interface CfnHttpNamespaceProps

LanguageType name
.NETAmazon.CDK.AWS.ServiceDiscovery.CfnHttpNamespaceProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsservicediscovery#CfnHttpNamespaceProps
Javasoftware.amazon.awscdk.services.servicediscovery.CfnHttpNamespaceProps
Pythonaws_cdk.aws_servicediscovery.CfnHttpNamespaceProps
TypeScript aws-cdk-lib » aws_servicediscovery » CfnHttpNamespaceProps

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 { aws_servicediscovery as servicediscovery } from 'aws-cdk-lib';
const cfnHttpNamespaceProps: servicediscovery.CfnHttpNamespaceProps = {
  name: 'name',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe name that you want to assign to this namespace.
description?stringA description for the namespace.
tags?CfnTag[]The tags for the namespace.

name

Type: string

The name that you want to assign to this namespace.


description?

Type: string (optional)

A description for the namespace.


tags?

Type: CfnTag[] (optional)

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.