interface PublicDnsNamespaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ServiceDiscovery.PublicDnsNamespaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicediscovery#PublicDnsNamespaceReference |
Java | software.amazon.awscdk.interfaces.servicediscovery.PublicDnsNamespaceReference |
Python | aws_cdk.interfaces.aws_servicediscovery.PublicDnsNamespaceReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicediscovery » PublicDnsNamespaceReference |
A reference to a PublicDnsNamespace resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicediscovery as interfaces_aws_servicediscovery } from 'aws-cdk-lib/interfaces';
const publicDnsNamespaceReference: interfaces_aws_servicediscovery.PublicDnsNamespaceReference = {
publicDnsNamespaceArn: 'publicDnsNamespaceArn',
publicDnsNamespaceId: 'publicDnsNamespaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| public | string | The ARN of the PublicDnsNamespace resource. |
| public | string | The Id of the PublicDnsNamespace resource. |
publicDnsNamespaceArn
Type:
string
The ARN of the PublicDnsNamespace resource.
publicDnsNamespaceId
Type:
string
The Id of the PublicDnsNamespace resource.

.NET
Go
Java
Python
TypeScript