interface CfnHttpNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceDiscovery.Mixins.CfnHttpNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicediscovery/mixins#CfnHttpNamespaceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicediscovery.mixins.CfnHttpNamespaceMixinProps |
Python | aws_cdk.mixins_preview.aws_servicediscovery.mixins.CfnHttpNamespaceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicediscovery » mixins » CfnHttpNamespaceMixinProps |
Properties for CfnHttpNamespacePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as servicediscovery_mixins } from '@aws-cdk/mixins-preview/aws-servicediscovery';
const cfnHttpNamespaceMixinProps: servicediscovery_mixins.CfnHttpNamespaceMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for the namespace. |
| name? | string | The name that you want to assign to this namespace. |
| tags? | Cfn[] | The tags for the namespace. |
description?
Type:
string
(optional)
A description for the namespace.
name?
Type:
string
(optional)
The name that you want to assign to this namespace.
tags?
Type:
Cfn[]
(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.

.NET
Go
Java
Python
TypeScript