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