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