CfnHttpNamespaceProps
- class aws_cdk.aws_servicediscovery.CfnHttpNamespaceProps(*, name, description=None, tags=None)
- Bases: - object- Properties for defining a - CfnHttpNamespace.- Parameters:
- name ( - str) – The name that you want to assign to this namespace.
- description ( - Optional[- str]) – A description for the namespace.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – 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.
 
- See:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_servicediscovery as servicediscovery cfn_http_namespace_props = servicediscovery.CfnHttpNamespaceProps( name="name", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] ) - Attributes - description
- A description for the namespace. 
 - name
- The name that you want to assign to this namespace. 
 - tags
- 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.