interface HealthCheck
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancing.Events.AWSAPICallViaCloudTrail.HealthCheck |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancing/events#AWSAPICallViaCloudTrail_HealthCheck |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancing.events.AWSAPICallViaCloudTrail.HealthCheck |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancing.events.AWSAPICallViaCloudTrail.HealthCheck |
TypeScript | @aws-cdk/mixins-preview ยป aws_elasticloadbalancing ยป events ยป AWSAPICallViaCloudTrail ยป HealthCheck |
Type definition for HealthCheck.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as elasticloadbalancing_events } from '@aws-cdk/mixins-preview/aws-elasticloadbalancing';
const healthCheck: elasticloadbalancing_events.AWSAPICallViaCloudTrail.HealthCheck = {
healthyThreshold: ['healthyThreshold'],
interval: ['interval'],
target: ['target'],
timeout: ['timeout'],
unhealthyThreshold: ['unhealthyThreshold'],
};
Properties
| Name | Type | Description |
|---|---|---|
| healthy | string[] | healthyThreshold property. |
| interval? | string[] | interval property. |
| target? | string[] | target property. |
| timeout? | string[] | timeout property. |
| unhealthy | string[] | unhealthyThreshold property. |
healthyThreshold?
Type:
string[]
(optional, default: Do not filter on this field)
healthyThreshold property.
Specify an array of string values to match this event if the actual value of healthyThreshold is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
interval?
Type:
string[]
(optional, default: Do not filter on this field)
interval property.
Specify an array of string values to match this event if the actual value of interval is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
target?
Type:
string[]
(optional, default: Do not filter on this field)
target property.
Specify an array of string values to match this event if the actual value of target is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
timeout?
Type:
string[]
(optional, default: Do not filter on this field)
timeout property.
Specify an array of string values to match this event if the actual value of timeout is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
unhealthyThreshold?
Type:
string[]
(optional, default: Do not filter on this field)
unhealthyThreshold property.
Specify an array of string values to match this event if the actual value of unhealthyThreshold is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript