interface HealthCheckReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Route53.HealthCheckReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsroute53#HealthCheckReference |
Java | software.amazon.awscdk.interfaces.route53.HealthCheckReference |
Python | aws_cdk.interfaces.aws_route53.HealthCheckReference |
TypeScript | aws-cdk-lib » interfaces » aws_route53 » HealthCheckReference |
A reference to a HealthCheck resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53 as interfaces_route53 } from 'aws-cdk-lib/interfaces';
const healthCheckReference: interfaces_route53.HealthCheckReference = {
healthCheckId: 'healthCheckId',
};
Properties
| Name | Type | Description |
|---|---|---|
| health | string | The HealthCheckId of the HealthCheck resource. |
healthCheckId
Type:
string
The HealthCheckId of the HealthCheck resource.

.NET
Go
Java
Python
TypeScript