PrivateDnsNamespaceReference
- class aws_cdk.aws_servicediscovery.PrivateDnsNamespaceReference(*, private_dns_namespace_arn, private_dns_namespace_id)
Bases:
object
A reference to a PrivateDnsNamespace resource.
- Parameters:
private_dns_namespace_arn (
str
) – The ARN of the PrivateDnsNamespace resource.private_dns_namespace_id (
str
) – The Id of the PrivateDnsNamespace 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 private_dns_namespace_reference = servicediscovery.PrivateDnsNamespaceReference( private_dns_namespace_arn="privateDnsNamespaceArn", private_dns_namespace_id="privateDnsNamespaceId" )
Attributes
- private_dns_namespace_arn
The ARN of the PrivateDnsNamespace resource.
- private_dns_namespace_id
The Id of the PrivateDnsNamespace resource.