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