@aws-sdk/client-wafv2 3.295.0 → 3.297.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist-types/WAFV2.d.ts +49 -0
  2. package/dist-types/WAFV2Client.d.ts +24 -4
  3. package/dist-types/commands/AssociateWebACLCommand.d.ts +16 -0
  4. package/dist-types/commands/CheckCapacityCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateIPSetCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateRegexPatternSetCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateRuleGroupCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateWebACLCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteFirewallManagerRuleGroupsCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteIPSetCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
  12. package/dist-types/commands/DeletePermissionPolicyCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteRegexPatternSetCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteRuleGroupCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteWebACLCommand.d.ts +16 -0
  16. package/dist-types/commands/DescribeManagedRuleGroupCommand.d.ts +16 -0
  17. package/dist-types/commands/DisassociateWebACLCommand.d.ts +16 -0
  18. package/dist-types/commands/GenerateMobileSdkReleaseUrlCommand.d.ts +16 -0
  19. package/dist-types/commands/GetIPSetCommand.d.ts +16 -0
  20. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +16 -0
  21. package/dist-types/commands/GetManagedRuleSetCommand.d.ts +16 -0
  22. package/dist-types/commands/GetMobileSdkReleaseCommand.d.ts +16 -0
  23. package/dist-types/commands/GetPermissionPolicyCommand.d.ts +16 -0
  24. package/dist-types/commands/GetRateBasedStatementManagedKeysCommand.d.ts +16 -0
  25. package/dist-types/commands/GetRegexPatternSetCommand.d.ts +16 -0
  26. package/dist-types/commands/GetRuleGroupCommand.d.ts +16 -0
  27. package/dist-types/commands/GetSampledRequestsCommand.d.ts +16 -0
  28. package/dist-types/commands/GetWebACLCommand.d.ts +16 -0
  29. package/dist-types/commands/GetWebACLForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/ListAvailableManagedRuleGroupVersionsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListAvailableManagedRuleGroupsCommand.d.ts +16 -0
  32. package/dist-types/commands/ListIPSetsCommand.d.ts +16 -0
  33. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +16 -0
  34. package/dist-types/commands/ListManagedRuleSetsCommand.d.ts +16 -0
  35. package/dist-types/commands/ListMobileSdkReleasesCommand.d.ts +16 -0
  36. package/dist-types/commands/ListRegexPatternSetsCommand.d.ts +16 -0
  37. package/dist-types/commands/ListResourcesForWebACLCommand.d.ts +16 -0
  38. package/dist-types/commands/ListRuleGroupsCommand.d.ts +16 -0
  39. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  40. package/dist-types/commands/ListWebACLsCommand.d.ts +16 -0
  41. package/dist-types/commands/PutLoggingConfigurationCommand.d.ts +16 -0
  42. package/dist-types/commands/PutManagedRuleSetVersionsCommand.d.ts +16 -0
  43. package/dist-types/commands/PutPermissionPolicyCommand.d.ts +16 -0
  44. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  45. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  46. package/dist-types/commands/UpdateIPSetCommand.d.ts +16 -0
  47. package/dist-types/commands/UpdateManagedRuleSetVersionExpiryDateCommand.d.ts +16 -0
  48. package/dist-types/commands/UpdateRegexPatternSetCommand.d.ts +16 -0
  49. package/dist-types/commands/UpdateRuleGroupCommand.d.ts +16 -0
  50. package/dist-types/commands/UpdateWebACLCommand.d.ts +16 -0
  51. package/dist-types/models/WAFV2ServiceException.d.ts +2 -0
  52. package/dist-types/models/models_0.d.ts +512 -29
  53. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GenerateMobileSdkReleaseUrlRequest, GenerateMobileSdkReleaseUrlResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GenerateMobileSdkReleaseUrlCommand}.
8
10
  */
9
11
  export interface GenerateMobileSdkReleaseUrlCommandInput extends GenerateMobileSdkReleaseUrlRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GenerateMobileSdkReleaseUrlCommand}.
13
17
  */
14
18
  export interface GenerateMobileSdkReleaseUrlCommandOutput extends GenerateMobileSdkReleaseUrlResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Generates a presigned download URL for the specified release of the mobile SDK.</p>
18
23
  * <p>The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see
19
24
  * <a href="https://docs.aws.amazon.com/waf/latest/developerguide/waf-application-integration.html">WAF client application integration</a> in the <i>WAF Developer Guide</i>.</p>
@@ -27,6 +32,8 @@ export interface GenerateMobileSdkReleaseUrlCommandOutput extends GenerateMobile
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GenerateMobileSdkReleaseUrlCommandInput - {@link GenerateMobileSdkReleaseUrlCommandInput}
36
+ * @returns {@link GenerateMobileSdkReleaseUrlCommandOutput}
30
37
  * @see {@link GenerateMobileSdkReleaseUrlCommandInput} for command's `input` shape.
31
38
  * @see {@link GenerateMobileSdkReleaseUrlCommandOutput} for command's `response` shape.
32
39
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -70,11 +77,20 @@ export interface GenerateMobileSdkReleaseUrlCommandOutput extends GenerateMobile
70
77
  export declare class GenerateMobileSdkReleaseUrlCommand extends $Command<GenerateMobileSdkReleaseUrlCommandInput, GenerateMobileSdkReleaseUrlCommandOutput, WAFV2ClientResolvedConfig> {
71
78
  readonly input: GenerateMobileSdkReleaseUrlCommandInput;
72
79
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
73
83
  constructor(input: GenerateMobileSdkReleaseUrlCommandInput);
74
84
  /**
75
85
  * @internal
76
86
  */
77
87
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GenerateMobileSdkReleaseUrlCommandInput, GenerateMobileSdkReleaseUrlCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
78
91
  private serialize;
92
+ /**
93
+ * @internal
94
+ */
79
95
  private deserialize;
80
96
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetIPSetRequest, GetIPSetResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetIPSetCommand}.
8
10
  */
9
11
  export interface GetIPSetCommandInput extends GetIPSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetIPSetCommand}.
13
17
  */
14
18
  export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified <a>IPSet</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetIPSetCommandInput - {@link GetIPSetCommandInput}
34
+ * @returns {@link GetIPSetCommandOutput}
28
35
  * @see {@link GetIPSetCommandInput} for command's `input` shape.
29
36
  * @see {@link GetIPSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -68,11 +75,20 @@ export interface GetIPSetCommandOutput extends GetIPSetResponse, __MetadataBeare
68
75
  export declare class GetIPSetCommand extends $Command<GetIPSetCommandInput, GetIPSetCommandOutput, WAFV2ClientResolvedConfig> {
69
76
  readonly input: GetIPSetCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: GetIPSetCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetIPSetCommandInput, GetIPSetCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetLoggingConfigurationRequest, GetLoggingConfigurationResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetLoggingConfigurationCommand}.
8
10
  */
9
11
  export interface GetLoggingConfigurationCommandInput extends GetLoggingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetLoggingConfigurationCommand}.
13
17
  */
14
18
  export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the <a>LoggingConfiguration</a> for the specified web ACL.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetLoggingConfigurationCommandInput - {@link GetLoggingConfigurationCommandInput}
34
+ * @returns {@link GetLoggingConfigurationCommandOutput}
28
35
  * @see {@link GetLoggingConfigurationCommandInput} for command's `input` shape.
29
36
  * @see {@link GetLoggingConfigurationCommandOutput} for command's `response` shape.
30
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -68,11 +75,20 @@ export interface GetLoggingConfigurationCommandOutput extends GetLoggingConfigur
68
75
  export declare class GetLoggingConfigurationCommand extends $Command<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput, WAFV2ClientResolvedConfig> {
69
76
  readonly input: GetLoggingConfigurationCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: GetLoggingConfigurationCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLoggingConfigurationCommandInput, GetLoggingConfigurationCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetManagedRuleSetRequest, GetManagedRuleSetResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetManagedRuleSetCommand}.
8
10
  */
9
11
  export interface GetManagedRuleSetCommandInput extends GetManagedRuleSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetManagedRuleSetCommand}.
13
17
  */
14
18
  export interface GetManagedRuleSetCommandOutput extends GetManagedRuleSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified managed rule set. </p>
18
23
  * <note>
19
24
  * <p>This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers. </p>
@@ -29,6 +34,8 @@ export interface GetManagedRuleSetCommandOutput extends GetManagedRuleSetRespons
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param GetManagedRuleSetCommandInput - {@link GetManagedRuleSetCommandInput}
38
+ * @returns {@link GetManagedRuleSetCommandOutput}
32
39
  * @see {@link GetManagedRuleSetCommandInput} for command's `input` shape.
33
40
  * @see {@link GetManagedRuleSetCommandOutput} for command's `response` shape.
34
41
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -72,11 +79,20 @@ export interface GetManagedRuleSetCommandOutput extends GetManagedRuleSetRespons
72
79
  export declare class GetManagedRuleSetCommand extends $Command<GetManagedRuleSetCommandInput, GetManagedRuleSetCommandOutput, WAFV2ClientResolvedConfig> {
73
80
  readonly input: GetManagedRuleSetCommandInput;
74
81
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
+ /**
83
+ * @public
84
+ */
75
85
  constructor(input: GetManagedRuleSetCommandInput);
76
86
  /**
77
87
  * @internal
78
88
  */
79
89
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetManagedRuleSetCommandInput, GetManagedRuleSetCommandOutput>;
90
+ /**
91
+ * @internal
92
+ */
80
93
  private serialize;
94
+ /**
95
+ * @internal
96
+ */
81
97
  private deserialize;
82
98
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetMobileSdkReleaseRequest, GetMobileSdkReleaseResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetMobileSdkReleaseCommand}.
8
10
  */
9
11
  export interface GetMobileSdkReleaseCommandInput extends GetMobileSdkReleaseRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetMobileSdkReleaseCommand}.
13
17
  */
14
18
  export interface GetMobileSdkReleaseCommandOutput extends GetMobileSdkReleaseResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves information for the specified mobile SDK release, including release notes and
18
23
  * tags.</p>
19
24
  * <p>The mobile SDK is not generally available. Customers who have access to the mobile SDK can use it to establish and manage WAF tokens for use in HTTP(S) requests from a mobile device to WAF. For more information, see
@@ -28,6 +33,8 @@ export interface GetMobileSdkReleaseCommandOutput extends GetMobileSdkReleaseRes
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param GetMobileSdkReleaseCommandInput - {@link GetMobileSdkReleaseCommandInput}
37
+ * @returns {@link GetMobileSdkReleaseCommandOutput}
31
38
  * @see {@link GetMobileSdkReleaseCommandInput} for command's `input` shape.
32
39
  * @see {@link GetMobileSdkReleaseCommandOutput} for command's `response` shape.
33
40
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -71,11 +78,20 @@ export interface GetMobileSdkReleaseCommandOutput extends GetMobileSdkReleaseRes
71
78
  export declare class GetMobileSdkReleaseCommand extends $Command<GetMobileSdkReleaseCommandInput, GetMobileSdkReleaseCommandOutput, WAFV2ClientResolvedConfig> {
72
79
  readonly input: GetMobileSdkReleaseCommandInput;
73
80
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
81
+ /**
82
+ * @public
83
+ */
74
84
  constructor(input: GetMobileSdkReleaseCommandInput);
75
85
  /**
76
86
  * @internal
77
87
  */
78
88
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMobileSdkReleaseCommandInput, GetMobileSdkReleaseCommandOutput>;
89
+ /**
90
+ * @internal
91
+ */
79
92
  private serialize;
93
+ /**
94
+ * @internal
95
+ */
80
96
  private deserialize;
81
97
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetPermissionPolicyRequest, GetPermissionPolicyResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetPermissionPolicyCommand}.
8
10
  */
9
11
  export interface GetPermissionPolicyCommandInput extends GetPermissionPolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetPermissionPolicyCommand}.
13
17
  */
14
18
  export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns the IAM policy that is attached to the specified rule group.</p>
18
23
  * <p>You must be the owner of the rule group to perform this operation.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyRes
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetPermissionPolicyCommandInput - {@link GetPermissionPolicyCommandInput}
35
+ * @returns {@link GetPermissionPolicyCommandOutput}
29
36
  * @see {@link GetPermissionPolicyCommandInput} for command's `input` shape.
30
37
  * @see {@link GetPermissionPolicyCommandOutput} for command's `response` shape.
31
38
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -66,11 +73,20 @@ export interface GetPermissionPolicyCommandOutput extends GetPermissionPolicyRes
66
73
  export declare class GetPermissionPolicyCommand extends $Command<GetPermissionPolicyCommandInput, GetPermissionPolicyCommandOutput, WAFV2ClientResolvedConfig> {
67
74
  readonly input: GetPermissionPolicyCommandInput;
68
75
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
76
+ /**
77
+ * @public
78
+ */
69
79
  constructor(input: GetPermissionPolicyCommandInput);
70
80
  /**
71
81
  * @internal
72
82
  */
73
83
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPermissionPolicyCommandInput, GetPermissionPolicyCommandOutput>;
84
+ /**
85
+ * @internal
86
+ */
74
87
  private serialize;
88
+ /**
89
+ * @internal
90
+ */
75
91
  private deserialize;
76
92
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetRateBasedStatementManagedKeysRequest, GetRateBasedStatementManagedKeysResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRateBasedStatementManagedKeysCommand}.
8
10
  */
9
11
  export interface GetRateBasedStatementManagedKeysCommandInput extends GetRateBasedStatementManagedKeysRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRateBasedStatementManagedKeysCommand}.
13
17
  */
14
18
  export interface GetRateBasedStatementManagedKeysCommandOutput extends GetRateBasedStatementManagedKeysResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the keys that are currently blocked by a rate-based rule instance. The maximum
18
23
  * number of managed keys that can be blocked for a single rate-based rule instance is 10,000.
19
24
  * If more than 10,000 addresses exceed the rate limit, those with the highest rates are
@@ -38,6 +43,8 @@ export interface GetRateBasedStatementManagedKeysCommandOutput extends GetRateBa
38
43
  * const response = await client.send(command);
39
44
  * ```
40
45
  *
46
+ * @param GetRateBasedStatementManagedKeysCommandInput - {@link GetRateBasedStatementManagedKeysCommandInput}
47
+ * @returns {@link GetRateBasedStatementManagedKeysCommandOutput}
41
48
  * @see {@link GetRateBasedStatementManagedKeysCommandInput} for command's `input` shape.
42
49
  * @see {@link GetRateBasedStatementManagedKeysCommandOutput} for command's `response` shape.
43
50
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -81,11 +88,20 @@ export interface GetRateBasedStatementManagedKeysCommandOutput extends GetRateBa
81
88
  export declare class GetRateBasedStatementManagedKeysCommand extends $Command<GetRateBasedStatementManagedKeysCommandInput, GetRateBasedStatementManagedKeysCommandOutput, WAFV2ClientResolvedConfig> {
82
89
  readonly input: GetRateBasedStatementManagedKeysCommandInput;
83
90
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
91
+ /**
92
+ * @public
93
+ */
84
94
  constructor(input: GetRateBasedStatementManagedKeysCommandInput);
85
95
  /**
86
96
  * @internal
87
97
  */
88
98
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRateBasedStatementManagedKeysCommandInput, GetRateBasedStatementManagedKeysCommandOutput>;
99
+ /**
100
+ * @internal
101
+ */
89
102
  private serialize;
103
+ /**
104
+ * @internal
105
+ */
90
106
  private deserialize;
91
107
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetRegexPatternSetRequest, GetRegexPatternSetResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRegexPatternSetCommand}.
8
10
  */
9
11
  export interface GetRegexPatternSetCommandInput extends GetRegexPatternSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRegexPatternSetCommand}.
13
17
  */
14
18
  export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified <a>RegexPatternSet</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetRegexPatternSetCommandInput - {@link GetRegexPatternSetCommandInput}
34
+ * @returns {@link GetRegexPatternSetCommandOutput}
28
35
  * @see {@link GetRegexPatternSetCommandInput} for command's `input` shape.
29
36
  * @see {@link GetRegexPatternSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -68,11 +75,20 @@ export interface GetRegexPatternSetCommandOutput extends GetRegexPatternSetRespo
68
75
  export declare class GetRegexPatternSetCommand extends $Command<GetRegexPatternSetCommandInput, GetRegexPatternSetCommandOutput, WAFV2ClientResolvedConfig> {
69
76
  readonly input: GetRegexPatternSetCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: GetRegexPatternSetCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRegexPatternSetCommandInput, GetRegexPatternSetCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetRuleGroupRequest, GetRuleGroupResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRuleGroupCommand}.
8
10
  */
9
11
  export interface GetRuleGroupCommandInput extends GetRuleGroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRuleGroupCommand}.
13
17
  */
14
18
  export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified <a>RuleGroup</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetRuleGroupCommandInput - {@link GetRuleGroupCommandInput}
34
+ * @returns {@link GetRuleGroupCommandOutput}
28
35
  * @see {@link GetRuleGroupCommandInput} for command's `input` shape.
29
36
  * @see {@link GetRuleGroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -68,11 +75,20 @@ export interface GetRuleGroupCommandOutput extends GetRuleGroupResponse, __Metad
68
75
  export declare class GetRuleGroupCommand extends $Command<GetRuleGroupCommandInput, GetRuleGroupCommandOutput, WAFV2ClientResolvedConfig> {
69
76
  readonly input: GetRuleGroupCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: GetRuleGroupCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRuleGroupCommandInput, GetRuleGroupCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetSampledRequestsRequest, GetSampledRequestsResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetSampledRequestsCommand}.
8
10
  */
9
11
  export interface GetSampledRequestsCommandInput extends GetSampledRequestsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetSampledRequestsCommand}.
13
17
  */
14
18
  export interface GetSampledRequestsCommandOutput extends GetSampledRequestsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets detailed information about a specified number of requests--a sample--that WAF
18
23
  * randomly selects from among the first 5,000 requests that your Amazon Web Services resource received
19
24
  * during a time range that you choose. You can specify a sample size of up to 500 requests,
@@ -34,6 +39,8 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param GetSampledRequestsCommandInput - {@link GetSampledRequestsCommandInput}
43
+ * @returns {@link GetSampledRequestsCommandOutput}
37
44
  * @see {@link GetSampledRequestsCommandInput} for command's `input` shape.
38
45
  * @see {@link GetSampledRequestsCommandOutput} for command's `response` shape.
39
46
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -74,11 +81,20 @@ export interface GetSampledRequestsCommandOutput extends GetSampledRequestsRespo
74
81
  export declare class GetSampledRequestsCommand extends $Command<GetSampledRequestsCommandInput, GetSampledRequestsCommandOutput, WAFV2ClientResolvedConfig> {
75
82
  readonly input: GetSampledRequestsCommandInput;
76
83
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
84
+ /**
85
+ * @public
86
+ */
77
87
  constructor(input: GetSampledRequestsCommandInput);
78
88
  /**
79
89
  * @internal
80
90
  */
81
91
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetSampledRequestsCommandInput, GetSampledRequestsCommandOutput>;
92
+ /**
93
+ * @internal
94
+ */
82
95
  private serialize;
96
+ /**
97
+ * @internal
98
+ */
83
99
  private deserialize;
84
100
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetWebACLRequest, GetWebACLResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWebACLCommand}.
8
10
  */
9
11
  export interface GetWebACLCommandInput extends GetWebACLRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWebACLCommand}.
13
17
  */
14
18
  export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the specified <a>WebACL</a>.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWebACLCommandInput - {@link GetWebACLCommandInput}
34
+ * @returns {@link GetWebACLCommandOutput}
28
35
  * @see {@link GetWebACLCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWebACLCommandOutput} for command's `response` shape.
30
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -68,11 +75,20 @@ export interface GetWebACLCommandOutput extends GetWebACLResponse, __MetadataBea
68
75
  export declare class GetWebACLCommand extends $Command<GetWebACLCommandInput, GetWebACLCommandOutput, WAFV2ClientResolvedConfig> {
69
76
  readonly input: GetWebACLCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: GetWebACLCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWebACLCommandInput, GetWebACLCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetWebACLForResourceRequest, GetWebACLForResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, WAFV2ClientResolvedConfig } from "../WAFV2Client";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWebACLForResourceCommand}.
8
10
  */
9
11
  export interface GetWebACLForResourceCommandInput extends GetWebACLForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWebACLForResourceCommand}.
13
17
  */
14
18
  export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the <a>WebACL</a> for the specified resource. </p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWebACLForResourceCommandInput - {@link GetWebACLForResourceCommandInput}
34
+ * @returns {@link GetWebACLForResourceCommandOutput}
28
35
  * @see {@link GetWebACLForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWebACLForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link WAFV2ClientResolvedConfig | config} for WAFV2Client's `config` shape.
@@ -75,11 +82,20 @@ export interface GetWebACLForResourceCommandOutput extends GetWebACLForResourceR
75
82
  export declare class GetWebACLForResourceCommand extends $Command<GetWebACLForResourceCommandInput, GetWebACLForResourceCommandOutput, WAFV2ClientResolvedConfig> {
76
83
  readonly input: GetWebACLForResourceCommandInput;
77
84
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
85
+ /**
86
+ * @public
87
+ */
78
88
  constructor(input: GetWebACLForResourceCommandInput);
79
89
  /**
80
90
  * @internal
81
91
  */
82
92
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WAFV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWebACLForResourceCommandInput, GetWebACLForResourceCommandOutput>;
93
+ /**
94
+ * @internal
95
+ */
83
96
  private serialize;
97
+ /**
98
+ * @internal
99
+ */
84
100
  private deserialize;
85
101
  }