aws-cdk-lib.aws_refactorspaces.CfnService.UrlEndpointInputProperty

interface UrlEndpointInputProperty

LanguageType name
.NETAmazon.CDK.AWS.RefactorSpaces.CfnService.UrlEndpointInputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrefactorspaces#CfnService_UrlEndpointInputProperty
Javasoftware.amazon.awscdk.services.refactorspaces.CfnService.UrlEndpointInputProperty
Pythonaws_cdk.aws_refactorspaces.CfnService.UrlEndpointInputProperty
TypeScript aws-cdk-lib » aws_refactorspaces » CfnService » UrlEndpointInputProperty

The configuration for the URL endpoint type.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_refactorspaces as refactorspaces } from 'aws-cdk-lib';
const urlEndpointInputProperty: refactorspaces.CfnService.UrlEndpointInputProperty = {
  url: 'url',

  // the properties below are optional
  healthUrl: 'healthUrl',
};

Properties

NameTypeDescription
urlstringThe URL to route traffic to.
healthUrl?stringThe health check URL of the URL endpoint type.

url

Type: string

The URL to route traffic to.

The URL must be an rfc3986-formatted URL . If the host is a domain name, the name must be resolvable over the public internet. If the scheme is https , the top level domain of the host must be listed in the IANA root zone database .


healthUrl?

Type: string (optional)

The health check URL of the URL endpoint type.

If the URL is a public endpoint, the HealthUrl must also be a public endpoint. If the URL is a private endpoint inside a virtual private cloud (VPC), the health URL must also be a private endpoint, and the host must be the same as the URL.