ApplicationLayerAutomaticResponseArgs constructor

const ApplicationLayerAutomaticResponseArgs({
  1. required Input<String> action,
  2. required Input<String> resourceArn,
  3. Input<ApplicationLayerAutomaticResponseTimeouts?>? timeouts,
})

Creates a new ApplicationLayerAutomaticResponseArgs. action One of COUNT or BLOCK resourceArn ARN of the resource to protect (Cloudfront Distributions and ALBs only at this time). timeouts Optional.

Implementation

const ApplicationLayerAutomaticResponseArgs({
  required this.action,
  required this.resourceArn,
  this.timeouts,
});