interface BaseNamespaceProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.ServiceDiscovery.BaseNamespaceProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicediscovery#BaseNamespaceProps | 
|  Java | software.amazon.awscdk.services.servicediscovery.BaseNamespaceProps | 
|  Python | aws_cdk.aws_servicediscovery.BaseNamespaceProps | 
|  TypeScript (source) | aws-cdk-lib»aws_servicediscovery»BaseNamespaceProps | 
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 baseNamespaceProps: servicediscovery.BaseNamespaceProps = {
  name: 'name',
  // the properties below are optional
  description: 'description',
};
Properties
| Name | Type | Description | 
|---|---|---|
| name | string | A name for the Namespace. | 
| description? | string | A description of the Namespace. | 
name
Type:
string
A name for the Namespace.
description?
Type:
string
(optional, default: none)
A description of the Namespace.
