interface HttpNamespaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.ServiceDiscovery.HttpNamespaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsservicediscovery#HttpNamespaceReference |
Java | software.amazon.awscdk.interfaces.servicediscovery.HttpNamespaceReference |
Python | aws_cdk.interfaces.aws_servicediscovery.HttpNamespaceReference |
TypeScript | aws-cdk-lib » interfaces » aws_servicediscovery » HttpNamespaceReference |
A reference to a HttpNamespace 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_servicediscovery } from 'aws-cdk-lib/interfaces';
const httpNamespaceReference: interfaces_servicediscovery.HttpNamespaceReference = {
httpNamespaceArn: 'httpNamespaceArn',
httpNamespaceId: 'httpNamespaceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| http | string | The ARN of the HttpNamespace resource. |
| http | string | The Id of the HttpNamespace resource. |
httpNamespaceArn
Type:
string
The ARN of the HttpNamespace resource.
httpNamespaceId
Type:
string
The Id of the HttpNamespace resource.

.NET
Go
Java
Python
TypeScript