aws-sdk-wafv2 1.34.0 → 1.35.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d099f15eedfbbdd9dc24e4c5f8e702fb582a030da23809cd33a2ad516e3ff3a3
4
- data.tar.gz: 0ca782e16bcfa57e743c3dbc70c726e694332691be2f9dc8a8238f1521ab9530
3
+ metadata.gz: 4e3e10c76d8225b5be56a937527506820b8a2132d2a3e740442da28a06d0f218
4
+ data.tar.gz: 4ad816d40170387c5f52c2438a3477abcfbe52f3667ae392d270234112bf01d3
5
5
  SHA512:
6
- metadata.gz: 62ef45a3b0dbb802eaa2b0fe38d5e8b596fc204708558233b80ed6183098ffa5ec4a3b1fca965a6aec9a61fc12972bdb822991ee56b4d1ccc96c2ff168e3a285
7
- data.tar.gz: 65da37bd0740729524c7da56757c8ac9c4b581d81ce5b2ffab266273d049a8e33fd85b6a8a8d3c90e8785cd54151317ad1297abcb16e1bbf2800ce207139783d
6
+ metadata.gz: e9137dc0e7f7e99c3aa1b34e76ca3426692ae7d2d670e1fedd1a66d051d42c18d5ca6067a8327c0b030ba2e419b946328a21f859b56d970bdd2f665faf6f94fc
7
+ data.tar.gz: b4d5f86db2a1517a8cfaf226ab34b3ec382dcbd9d1d625a85697903134cfa62c9f22fe34cebb3a12e790287cd178195b837791cf54224921ebe31f6f46c09f20
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.35.0 (2022-02-10)
5
+ ------------------
6
+
7
+ * Feature - Adds support for AWS WAF Fraud Control account takeover prevention (ATP), with configuration options for the new managed rule group AWSManagedRulesATPRuleSet and support for application integration SDKs for Android and iOS mobile apps.
8
+
4
9
  1.34.0 (2022-02-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.34.0
1
+ 1.35.0
@@ -700,6 +700,18 @@ module Aws::WAFV2
700
700
  # scope_down_statement: {
701
701
  # # recursive Statement
702
702
  # },
703
+ # managed_rule_group_configs: [
704
+ # {
705
+ # login_path: "LoginPathString",
706
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
707
+ # username_field: {
708
+ # identifier: "FieldIdentifier", # required
709
+ # },
710
+ # password_field: {
711
+ # identifier: "FieldIdentifier", # required
712
+ # },
713
+ # },
714
+ # ],
703
715
  # },
704
716
  # label_match_statement: {
705
717
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -1342,6 +1354,18 @@ module Aws::WAFV2
1342
1354
  # scope_down_statement: {
1343
1355
  # # recursive Statement
1344
1356
  # },
1357
+ # managed_rule_group_configs: [
1358
+ # {
1359
+ # login_path: "LoginPathString",
1360
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
1361
+ # username_field: {
1362
+ # identifier: "FieldIdentifier", # required
1363
+ # },
1364
+ # password_field: {
1365
+ # identifier: "FieldIdentifier", # required
1366
+ # },
1367
+ # },
1368
+ # ],
1345
1369
  # },
1346
1370
  # label_match_statement: {
1347
1371
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -1855,6 +1879,18 @@ module Aws::WAFV2
1855
1879
  # scope_down_statement: {
1856
1880
  # # recursive Statement
1857
1881
  # },
1882
+ # managed_rule_group_configs: [
1883
+ # {
1884
+ # login_path: "LoginPathString",
1885
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
1886
+ # username_field: {
1887
+ # identifier: "FieldIdentifier", # required
1888
+ # },
1889
+ # password_field: {
1890
+ # identifier: "FieldIdentifier", # required
1891
+ # },
1892
+ # },
1893
+ # ],
1858
1894
  # },
1859
1895
  # label_match_statement: {
1860
1896
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -2460,6 +2496,45 @@ module Aws::WAFV2
2460
2496
  req.send_request(options)
2461
2497
  end
2462
2498
 
2499
+ # Generates a presigned download URL for the specified release of the
2500
+ # mobile SDK.
2501
+ #
2502
+ # The mobile SDK is not generally available. Customers who have access
2503
+ # to the mobile SDK can use it to establish and manage Security Token
2504
+ # Service (STS) security tokens for use in HTTP(S) requests from a
2505
+ # mobile device to WAF.
2506
+ #
2507
+ # @option params [required, String] :platform
2508
+ # The device platform.
2509
+ #
2510
+ # @option params [required, String] :release_version
2511
+ # The release version. For the latest available version, specify
2512
+ # `LATEST`.
2513
+ #
2514
+ # @return [Types::GenerateMobileSdkReleaseUrlResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2515
+ #
2516
+ # * {Types::GenerateMobileSdkReleaseUrlResponse#url #url} => String
2517
+ #
2518
+ # @example Request syntax with placeholder values
2519
+ #
2520
+ # resp = client.generate_mobile_sdk_release_url({
2521
+ # platform: "IOS", # required, accepts IOS, ANDROID
2522
+ # release_version: "VersionKeyString", # required
2523
+ # })
2524
+ #
2525
+ # @example Response structure
2526
+ #
2527
+ # resp.url #=> String
2528
+ #
2529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GenerateMobileSdkReleaseUrl AWS API Documentation
2530
+ #
2531
+ # @overload generate_mobile_sdk_release_url(params = {})
2532
+ # @param [Hash] params ({})
2533
+ def generate_mobile_sdk_release_url(params = {}, options = {})
2534
+ req = build_request(:generate_mobile_sdk_release_url, params)
2535
+ req.send_request(options)
2536
+ end
2537
+
2463
2538
  # Retrieves the specified IPSet.
2464
2539
  #
2465
2540
  # @option params [required, String] :name
@@ -2642,6 +2717,50 @@ module Aws::WAFV2
2642
2717
  req.send_request(options)
2643
2718
  end
2644
2719
 
2720
+ # Retrieves information for the specified mobile SDK release, including
2721
+ # release notes and tags.
2722
+ #
2723
+ # The mobile SDK is not generally available. Customers who have access
2724
+ # to the mobile SDK can use it to establish and manage Security Token
2725
+ # Service (STS) security tokens for use in HTTP(S) requests from a
2726
+ # mobile device to WAF.
2727
+ #
2728
+ # @option params [required, String] :platform
2729
+ # The device platform.
2730
+ #
2731
+ # @option params [required, String] :release_version
2732
+ # The release version. For the latest available version, specify
2733
+ # `LATEST`.
2734
+ #
2735
+ # @return [Types::GetMobileSdkReleaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2736
+ #
2737
+ # * {Types::GetMobileSdkReleaseResponse#mobile_sdk_release #mobile_sdk_release} => Types::MobileSdkRelease
2738
+ #
2739
+ # @example Request syntax with placeholder values
2740
+ #
2741
+ # resp = client.get_mobile_sdk_release({
2742
+ # platform: "IOS", # required, accepts IOS, ANDROID
2743
+ # release_version: "VersionKeyString", # required
2744
+ # })
2745
+ #
2746
+ # @example Response structure
2747
+ #
2748
+ # resp.mobile_sdk_release.release_version #=> String
2749
+ # resp.mobile_sdk_release.timestamp #=> Time
2750
+ # resp.mobile_sdk_release.release_notes #=> String
2751
+ # resp.mobile_sdk_release.tags #=> Array
2752
+ # resp.mobile_sdk_release.tags[0].key #=> String
2753
+ # resp.mobile_sdk_release.tags[0].value #=> String
2754
+ #
2755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetMobileSdkRelease AWS API Documentation
2756
+ #
2757
+ # @overload get_mobile_sdk_release(params = {})
2758
+ # @param [Hash] params ({})
2759
+ def get_mobile_sdk_release(params = {}, options = {})
2760
+ req = build_request(:get_mobile_sdk_release, params)
2761
+ req.send_request(options)
2762
+ end
2763
+
2645
2764
  # Returns the IAM policy that is attached to the specified rule group.
2646
2765
  #
2647
2766
  # You must be the owner of the rule group to perform this operation.
@@ -2945,6 +3064,11 @@ module Aws::WAFV2
2945
3064
  # resp.rule_group.rules[0].statement.managed_rule_group_statement.excluded_rules #=> Array
2946
3065
  # resp.rule_group.rules[0].statement.managed_rule_group_statement.excluded_rules[0].name #=> String
2947
3066
  # resp.rule_group.rules[0].statement.managed_rule_group_statement.scope_down_statement #=> Types::Statement
3067
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3068
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3069
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3070
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3071
+ # resp.rule_group.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
2948
3072
  # resp.rule_group.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
2949
3073
  # resp.rule_group.rules[0].statement.label_match_statement.key #=> String
2950
3074
  # resp.rule_group.rules[0].statement.regex_match_statement.regex_string #=> String
@@ -3138,6 +3262,7 @@ module Aws::WAFV2
3138
3262
  #
3139
3263
  # * {Types::GetWebACLResponse#web_acl #web_acl} => Types::WebACL
3140
3264
  # * {Types::GetWebACLResponse#lock_token #lock_token} => String
3265
+ # * {Types::GetWebACLResponse#application_integration_url #application_integration_url} => String
3141
3266
  #
3142
3267
  # @example Request syntax with placeholder values
3143
3268
  #
@@ -3241,6 +3366,11 @@ module Aws::WAFV2
3241
3366
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules #=> Array
3242
3367
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules[0].name #=> String
3243
3368
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.scope_down_statement #=> Types::Statement
3369
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3370
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3371
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3372
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3373
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3244
3374
  # resp.web_acl.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
3245
3375
  # resp.web_acl.rules[0].statement.label_match_statement.key #=> String
3246
3376
  # resp.web_acl.rules[0].statement.regex_match_statement.regex_string #=> String
@@ -3372,6 +3502,11 @@ module Aws::WAFV2
3372
3502
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3373
3503
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3374
3504
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "NONE", "COMPRESS_WHITE_SPACE", "HTML_ENTITY_DECODE", "LOWERCASE", "CMD_LINE", "URL_DECODE", "BASE64_DECODE", "HEX_DECODE", "MD5", "REPLACE_COMMENTS", "ESCAPE_SEQ_DECODE", "SQL_HEX_DECODE", "CSS_DECODE", "JS_DECODE", "NORMALIZE_PATH", "NORMALIZE_PATH_WIN", "REMOVE_NULLS", "REPLACE_NULLS", "BASE64_DECODE_EXT", "URL_DECODE_UNI", "UTF8_TO_UNICODE"
3505
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3506
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3507
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3508
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3509
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3375
3510
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3376
3511
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3377
3512
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -3473,6 +3608,11 @@ module Aws::WAFV2
3473
3608
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3474
3609
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3475
3610
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "NONE", "COMPRESS_WHITE_SPACE", "HTML_ENTITY_DECODE", "LOWERCASE", "CMD_LINE", "URL_DECODE", "BASE64_DECODE", "HEX_DECODE", "MD5", "REPLACE_COMMENTS", "ESCAPE_SEQ_DECODE", "SQL_HEX_DECODE", "CSS_DECODE", "JS_DECODE", "NORMALIZE_PATH", "NORMALIZE_PATH_WIN", "REMOVE_NULLS", "REPLACE_NULLS", "BASE64_DECODE_EXT", "URL_DECODE_UNI", "UTF8_TO_UNICODE"
3611
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3612
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3613
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3614
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3615
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3476
3616
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3477
3617
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3478
3618
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -3489,6 +3629,7 @@ module Aws::WAFV2
3489
3629
  # resp.web_acl.custom_response_bodies["EntityName"].content #=> String
3490
3630
  # resp.web_acl.captcha_config.immunity_time_property.immunity_time #=> Integer
3491
3631
  # resp.lock_token #=> String
3632
+ # resp.application_integration_url #=> String
3492
3633
  #
3493
3634
  # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/GetWebACL AWS API Documentation
3494
3635
  #
@@ -3608,6 +3749,11 @@ module Aws::WAFV2
3608
3749
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules #=> Array
3609
3750
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.excluded_rules[0].name #=> String
3610
3751
  # resp.web_acl.rules[0].statement.managed_rule_group_statement.scope_down_statement #=> Types::Statement
3752
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3753
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3754
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3755
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3756
+ # resp.web_acl.rules[0].statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3611
3757
  # resp.web_acl.rules[0].statement.label_match_statement.scope #=> String, one of "LABEL", "NAMESPACE"
3612
3758
  # resp.web_acl.rules[0].statement.label_match_statement.key #=> String
3613
3759
  # resp.web_acl.rules[0].statement.regex_match_statement.regex_string #=> String
@@ -3739,6 +3885,11 @@ module Aws::WAFV2
3739
3885
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3740
3886
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3741
3887
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "NONE", "COMPRESS_WHITE_SPACE", "HTML_ENTITY_DECODE", "LOWERCASE", "CMD_LINE", "URL_DECODE", "BASE64_DECODE", "HEX_DECODE", "MD5", "REPLACE_COMMENTS", "ESCAPE_SEQ_DECODE", "SQL_HEX_DECODE", "CSS_DECODE", "JS_DECODE", "NORMALIZE_PATH", "NORMALIZE_PATH_WIN", "REMOVE_NULLS", "REPLACE_NULLS", "BASE64_DECODE_EXT", "URL_DECODE_UNI", "UTF8_TO_UNICODE"
3888
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3889
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3890
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3891
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3892
+ # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3742
3893
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3743
3894
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3744
3895
  # resp.web_acl.pre_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -3840,6 +3991,11 @@ module Aws::WAFV2
3840
3991
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations #=> Array
3841
3992
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].priority #=> Integer
3842
3993
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.scope_down_statement.regex_match_statement.text_transformations[0].type #=> String, one of "NONE", "COMPRESS_WHITE_SPACE", "HTML_ENTITY_DECODE", "LOWERCASE", "CMD_LINE", "URL_DECODE", "BASE64_DECODE", "HEX_DECODE", "MD5", "REPLACE_COMMENTS", "ESCAPE_SEQ_DECODE", "SQL_HEX_DECODE", "CSS_DECODE", "JS_DECODE", "NORMALIZE_PATH", "NORMALIZE_PATH_WIN", "REMOVE_NULLS", "REPLACE_NULLS", "BASE64_DECODE_EXT", "URL_DECODE_UNI", "UTF8_TO_UNICODE"
3994
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs #=> Array
3995
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].login_path #=> String
3996
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].payload_type #=> String, one of "JSON", "FORM_ENCODED"
3997
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].username_field.identifier #=> String
3998
+ # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.managed_rule_group_statement.managed_rule_group_configs[0].password_field.identifier #=> String
3843
3999
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.arn #=> String
3844
4000
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules #=> Array
3845
4001
  # resp.web_acl.post_process_firewall_manager_rule_groups[0].firewall_manager_statement.rule_group_reference_statement.excluded_rules[0].name #=> String
@@ -4205,6 +4361,59 @@ module Aws::WAFV2
4205
4361
  req.send_request(options)
4206
4362
  end
4207
4363
 
4364
+ # Retrieves a list of the available releases for the mobile SDK and the
4365
+ # specified device platform.
4366
+ #
4367
+ # The mobile SDK is not generally available. Customers who have access
4368
+ # to the mobile SDK can use it to establish and manage Security Token
4369
+ # Service (STS) security tokens for use in HTTP(S) requests from a
4370
+ # mobile device to WAF.
4371
+ #
4372
+ # @option params [required, String] :platform
4373
+ # The device platform to retrieve the list for.
4374
+ #
4375
+ # @option params [String] :next_marker
4376
+ # When you request a list of objects with a `Limit` setting, if the
4377
+ # number of objects that are still available for retrieval exceeds the
4378
+ # limit, WAF returns a `NextMarker` value in the response. To retrieve
4379
+ # the next batch of objects, provide the marker from the prior call in
4380
+ # your next request.
4381
+ #
4382
+ # @option params [Integer] :limit
4383
+ # The maximum number of objects that you want WAF to return for this
4384
+ # request. If more objects are available, in the response, WAF provides
4385
+ # a `NextMarker` value that you can use in a subsequent call to get the
4386
+ # next batch of objects.
4387
+ #
4388
+ # @return [Types::ListMobileSdkReleasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4389
+ #
4390
+ # * {Types::ListMobileSdkReleasesResponse#release_summaries #release_summaries} => Array<Types::ReleaseSummary>
4391
+ # * {Types::ListMobileSdkReleasesResponse#next_marker #next_marker} => String
4392
+ #
4393
+ # @example Request syntax with placeholder values
4394
+ #
4395
+ # resp = client.list_mobile_sdk_releases({
4396
+ # platform: "IOS", # required, accepts IOS, ANDROID
4397
+ # next_marker: "NextMarker",
4398
+ # limit: 1,
4399
+ # })
4400
+ #
4401
+ # @example Response structure
4402
+ #
4403
+ # resp.release_summaries #=> Array
4404
+ # resp.release_summaries[0].release_version #=> String
4405
+ # resp.release_summaries[0].timestamp #=> Time
4406
+ # resp.next_marker #=> String
4407
+ #
4408
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29/ListMobileSdkReleases AWS API Documentation
4409
+ #
4410
+ # @overload list_mobile_sdk_releases(params = {})
4411
+ # @param [Hash] params ({})
4412
+ def list_mobile_sdk_releases(params = {}, options = {})
4413
+ req = build_request(:list_mobile_sdk_releases, params)
4414
+ req.send_request(options)
4415
+ end
4416
+
4208
4417
  # Retrieves an array of RegexPatternSetSummary objects for the regex
4209
4418
  # pattern sets that you manage.
4210
4419
  #
@@ -5476,6 +5685,18 @@ module Aws::WAFV2
5476
5685
  # scope_down_statement: {
5477
5686
  # # recursive Statement
5478
5687
  # },
5688
+ # managed_rule_group_configs: [
5689
+ # {
5690
+ # login_path: "LoginPathString",
5691
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
5692
+ # username_field: {
5693
+ # identifier: "FieldIdentifier", # required
5694
+ # },
5695
+ # password_field: {
5696
+ # identifier: "FieldIdentifier", # required
5697
+ # },
5698
+ # },
5699
+ # ],
5479
5700
  # },
5480
5701
  # label_match_statement: {
5481
5702
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -6001,6 +6222,18 @@ module Aws::WAFV2
6001
6222
  # scope_down_statement: {
6002
6223
  # # recursive Statement
6003
6224
  # },
6225
+ # managed_rule_group_configs: [
6226
+ # {
6227
+ # login_path: "LoginPathString",
6228
+ # payload_type: "JSON", # accepts JSON, FORM_ENCODED
6229
+ # username_field: {
6230
+ # identifier: "FieldIdentifier", # required
6231
+ # },
6232
+ # password_field: {
6233
+ # identifier: "FieldIdentifier", # required
6234
+ # },
6235
+ # },
6236
+ # ],
6004
6237
  # },
6005
6238
  # label_match_statement: {
6006
6239
  # scope: "LABEL", # required, accepts LABEL, NAMESPACE
@@ -6163,7 +6396,7 @@ module Aws::WAFV2
6163
6396
  params: params,
6164
6397
  config: config)
6165
6398
  context[:gem_name] = 'aws-sdk-wafv2'
6166
- context[:gem_version] = '1.34.0'
6399
+ context[:gem_version] = '1.35.0'
6167
6400
  Seahorse::Client::Request.new(handlers, context)
6168
6401
  end
6169
6402