HttpNamespaceReference
- class aws_cdk.aws_servicediscovery.HttpNamespaceReference(*, http_namespace_arn, http_namespace_id)
Bases:
object
A reference to a HttpNamespace resource.
- Parameters:
http_namespace_arn (
str
) – The ARN of the HttpNamespace resource.http_namespace_id (
str
) – The Id of the HttpNamespace resource.
- 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 http_namespace_reference = servicediscovery.HttpNamespaceReference( http_namespace_arn="httpNamespaceArn", http_namespace_id="httpNamespaceId" )
Attributes
- http_namespace_arn
The ARN of the HttpNamespace resource.
- http_namespace_id
The Id of the HttpNamespace resource.