Class: Aws::WAFRegional::Types::GetWebACLForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFRegional::Types::GetWebACLForResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafregional/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The ARN (Amazon Resource Name) of the resource for which to get the web ACL, either an application load balancer or Amazon API Gateway stage.
Instance Attribute Details
#resource_arn ⇒ String
The ARN (Amazon Resource Name) of the resource for which to get the web ACL, either an application load balancer or Amazon API Gateway stage.
The ARN should be in one of the following formats:
-
For an Application Load Balancer: ‘arn:aws:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id `
-
For an Amazon API Gateway stage: ‘arn:aws:apigateway:region::/restapis/api-id/stages/stage-name `
2419 2420 2421 2422 2423 |
# File 'lib/aws-sdk-wafregional/types.rb', line 2419 class GetWebACLForResourceRequest < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |