PublicDnsNamespaceReference

class aws_cdk.interfaces.aws_servicediscovery.PublicDnsNamespaceReference(*, public_dns_namespace_arn, public_dns_namespace_id)

Bases: object

A reference to a PublicDnsNamespace resource.

Parameters:
  • public_dns_namespace_arn (str) – The ARN of the PublicDnsNamespace resource.

  • public_dns_namespace_id (str) – The Id of the PublicDnsNamespace 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.interfaces import aws_servicediscovery as interfaces_aws_servicediscovery

public_dns_namespace_reference = interfaces_aws_servicediscovery.PublicDnsNamespaceReference(
    public_dns_namespace_arn="publicDnsNamespaceArn",
    public_dns_namespace_id="publicDnsNamespaceId"
)

Attributes

public_dns_namespace_arn

The ARN of the PublicDnsNamespace resource.

public_dns_namespace_id

The Id of the PublicDnsNamespace resource.