Class: Aws::NetworkFirewall::Types::UpdateProxyRulePrioritiesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFirewall::Types::UpdateProxyRulePrioritiesRequest
- Defined in:
- gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#proxy_rule_group_arn ⇒ String
The Amazon Resource Name (ARN) of a proxy rule group.
-
#proxy_rule_group_name ⇒ String
The descriptive name of the proxy rule group.
-
#rule_group_request_phase ⇒ String
Evaluation points in the traffic flow where rules are applied.
-
#rules ⇒ Array<Types::ProxyRulePriority>
proxy rule resources to update to new positions.
-
#update_token ⇒ String
A token used for optimistic locking.
Instance Attribute Details
#proxy_rule_group_arn ⇒ String
The Amazon Resource Name (ARN) of a proxy rule group.
You must specify the ARN or the name, and you can specify both.
9176 9177 9178 9179 9180 9181 9182 9183 9184 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 9176 class UpdateProxyRulePrioritiesRequest < Struct.new( :proxy_rule_group_name, :proxy_rule_group_arn, :rule_group_request_phase, :rules, :update_token) SENSITIVE = [] include Aws::Structure end |
#proxy_rule_group_name ⇒ String
The descriptive name of the proxy rule group. You can't change the name of a proxy rule group after you create it.
You must specify the ARN or the name, and you can specify both.
9176 9177 9178 9179 9180 9181 9182 9183 9184 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 9176 class UpdateProxyRulePrioritiesRequest < Struct.new( :proxy_rule_group_name, :proxy_rule_group_arn, :rule_group_request_phase, :rules, :update_token) SENSITIVE = [] include Aws::Structure end |
#rule_group_request_phase ⇒ String
Evaluation points in the traffic flow where rules are applied. There are three phases in a traffic where the rule match is applied.
9176 9177 9178 9179 9180 9181 9182 9183 9184 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 9176 class UpdateProxyRulePrioritiesRequest < Struct.new( :proxy_rule_group_name, :proxy_rule_group_arn, :rule_group_request_phase, :rules, :update_token) SENSITIVE = [] include Aws::Structure end |
#rules ⇒ Array<Types::ProxyRulePriority>
proxy rule resources to update to new positions.
9176 9177 9178 9179 9180 9181 9182 9183 9184 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 9176 class UpdateProxyRulePrioritiesRequest < Struct.new( :proxy_rule_group_name, :proxy_rule_group_arn, :rule_group_request_phase, :rules, :update_token) SENSITIVE = [] include Aws::Structure end |
#update_token ⇒ String
A token used for optimistic locking. Network Firewall returns a token to your requests that access the proxy rule group. The token marks the state of the proxy rule group resource at the time of the request.
To make changes to the proxy rule group, you provide the token in
your request. Network Firewall uses the token to ensure that the
proxy rule group hasn't changed since you last retrieved it. If it
has changed, the operation fails with an InvalidTokenException. If
this happens, retrieve the proxy rule group again to get a current
copy of it with a current token. Reapply your changes as needed,
then try the operation again using the new token.
9176 9177 9178 9179 9180 9181 9182 9183 9184 |
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 9176 class UpdateProxyRulePrioritiesRequest < Struct.new( :proxy_rule_group_name, :proxy_rule_group_arn, :rule_group_request_phase, :rules, :update_token) SENSITIVE = [] include Aws::Structure end |