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