interface UrlEndpointInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RefactorSpaces.Mixins.CfnServicePropsMixin.UrlEndpointInputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrefactorspaces/mixins#CfnServicePropsMixin_UrlEndpointInputProperty |
Java | software.amazon.awscdk.mixins.preview.services.refactorspaces.mixins.CfnServicePropsMixin.UrlEndpointInputProperty |
Python | aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnServicePropsMixin.UrlEndpointInputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_refactorspaces » mixins » CfnServicePropsMixin » 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 { mixins as refactorspaces_mixins } from '@aws-cdk/mixins-preview/aws-refactorspaces';
const urlEndpointInputProperty: refactorspaces_mixins.CfnServicePropsMixin.UrlEndpointInputProperty = {
healthUrl: 'healthUrl',
url: 'url',
};
Properties
| Name | Type | Description |
|---|---|---|
| health | string | The health check URL of the URL endpoint type. |
| url? | string | The URL to route traffic to. |
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.
url?
Type:
string
(optional)
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 .

.NET
Go
Java
Python
TypeScript