Class: Aws::WAFV2::Types::GetWebACLResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::WAFV2::Types::GetWebACLResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-wafv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_integration_url ⇒ String
The URL to use in SDK integrations with Amazon Web Services managed rule groups.
-
#lock_token ⇒ String
A token used for optimistic locking.
-
#web_acl ⇒ Types::WebACL
The web ACL specification.
Instance Attribute Details
#application_integration_url ⇒ String
The URL to use in SDK integrations with Amazon Web Services managed rule groups. For example, you can use the integration SDKs with the account takeover prevention managed rule group ‘AWSManagedRulesATPRuleSet` and the account creation fraud prevention managed rule group `AWSManagedRulesACFPRuleSet`. This is only populated if you are using a rule group in your web ACL that integrates with your applications in this way. For more information, see [WAF client application integration] in the *WAF Developer Guide*.
[1]: docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html
3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-wafv2/types.rb', line 3535 class GetWebACLResponse < Struct.new( :web_acl, :lock_token, :application_integration_url) SENSITIVE = [] include Aws::Structure end |
#lock_token ⇒ String
A token used for optimistic locking. WAF returns a token to your ‘get` and `list` requests, to mark the state of the entity at the time of the request. To make changes to the entity associated with the token, you provide the token to operations like `update` and `delete`. WAF uses the token to ensure that no changes have been made to the entity since you last retrieved it. If a change has been made, the update fails with a `WAFOptimisticLockException`. If this happens, perform another `get`, and use the new token returned by that operation.
3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-wafv2/types.rb', line 3535 class GetWebACLResponse < Struct.new( :web_acl, :lock_token, :application_integration_url) SENSITIVE = [] include Aws::Structure end |
#web_acl ⇒ Types::WebACL
The web ACL specification. You can modify the settings in this web ACL and use it to update this web ACL or create a new one.
3535 3536 3537 3538 3539 3540 3541 |
# File 'lib/aws-sdk-wafv2/types.rb', line 3535 class GetWebACLResponse < Struct.new( :web_acl, :lock_token, :application_integration_url) SENSITIVE = [] include Aws::Structure end |