interface ResponseElements
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ElasticLoadBalancing.Events.AWSAPICallViaCloudTrail.ResponseElements |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awselasticloadbalancing/events#AWSAPICallViaCloudTrail_ResponseElements |
Java | software.amazon.awscdk.mixins.preview.services.elasticloadbalancing.events.AWSAPICallViaCloudTrail.ResponseElements |
Python | aws_cdk.mixins_preview.aws_elasticloadbalancing.events.AWSAPICallViaCloudTrail.ResponseElements |
TypeScript | @aws-cdk/mixins-preview ยป aws_elasticloadbalancing ยป events ยป AWSAPICallViaCloudTrail ยป ResponseElements |
Type definition for ResponseElements.
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 responseElements: elasticloadbalancing_events.AWSAPICallViaCloudTrail.ResponseElements = {
dNsName: ['dNsName'],
healthCheck: {
healthyThreshold: ['healthyThreshold'],
interval: ['interval'],
target: ['target'],
timeout: ['timeout'],
unhealthyThreshold: ['unhealthyThreshold'],
},
instances: [{
instanceId: ['instanceId'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| d | string[] | dNSName property. |
| health | Health | healthCheck property. |
| instances? | Response[] | instances property. |
dNsName?
Type:
string[]
(optional, default: Do not filter on this field)
dNSName property.
Specify an array of string values to match this event if the actual value of dNSName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
healthCheck?
Type:
Health
(optional, default: Do not filter on this field)
healthCheck property.
Specify an array of string values to match this event if the actual value of healthCheck is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
instances?
Type:
Response[]
(optional, default: Do not filter on this field)
instances property.
Specify an array of string values to match this event if the actual value of instances 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