application_layer_automatic_responses
Creates, updates, deletes, gets or lists an application_layer_automatic_responses resource.
Overview
| Name | application_layer_automatic_responses |
| Type | Resource |
| Id | aws.shield.application_layer_automatic_responses |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update_application_layer_automatic_response | update | region, ResourceArn, Action | Updates an existing Shield Advanced automatic application layer DDoS mitigation configuration for the specified resource. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
UPDATE examples
- update_application_layer_automatic_response
Updates an existing Shield Advanced automatic application layer DDoS mitigation configuration for the specified resource.
UPDATE aws.shield.application_layer_automatic_responses
SET
ResourceArn = '{{ ResourceArn }}',
Action = '{{ Action }}'
WHERE
region = '{{ region }}' --required
AND ResourceArn = '{{ ResourceArn }}' --required
AND Action = '{{ Action }}' --required;