Skip to content

Commit 6f5f3a1

Browse files
author
awstools
committed
feat(client-route53resolver): Release of FirewallDomainRedirectionAction parameter on the Route 53 DNS Firewall Rule. This allows customers to configure a DNS Firewall rule to inspect all the domains in the DNS redirection chain (default) , such as CNAME, ALIAS, DNAME, etc., or just the first domain and trust the rest.
1 parent fd01ffd commit 6f5f3a1

File tree

55 files changed

+243
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+243
-6
lines changed

clients/client-route53resolver/src/commands/AssociateFirewallRuleGroupCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,8 @@ export interface AssociateFirewallRuleGroupCommandOutput extends AssociateFirewa
7878
*
7979
* @throws {@link AccessDeniedException} (client fault)
8080
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
81+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
82+
* resource policy for CloudWatch Logs.</p>
8183
*
8284
* @throws {@link ConflictException} (client fault)
8385
* <p>The requested state transition isn't valid. For example, you can't delete a firewall

clients/client-route53resolver/src/commands/AssociateResolverQueryLogConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ export interface AssociateResolverQueryLogConfigCommandOutput
7575
*
7676
* @throws {@link AccessDeniedException} (client fault)
7777
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
78+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
79+
* resource policy for CloudWatch Logs.</p>
7880
*
7981
* @throws {@link InternalServiceErrorException} (client fault)
8082
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateFirewallDomainListCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ export interface CreateFirewallDomainListCommandOutput extends CreateFirewallDom
7171
*
7272
* @throws {@link AccessDeniedException} (client fault)
7373
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
74+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
75+
* resource policy for CloudWatch Logs.</p>
7476
*
7577
* @throws {@link InternalServiceErrorException} (client fault)
7678
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateFirewallRuleCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ export interface CreateFirewallRuleCommandOutput extends CreateFirewallRuleRespo
4545
* BlockOverrideDnsType: "CNAME",
4646
* BlockOverrideTtl: Number("int"),
4747
* Name: "STRING_VALUE", // required
48+
* FirewallDomainRedirectionAction: "INSPECT_REDIRECTION_DOMAIN" || "TRUST_REDIRECTION_DOMAIN",
4849
* Qtype: "STRING_VALUE",
4950
* };
5051
* const command = new CreateFirewallRuleCommand(input);
@@ -63,6 +64,7 @@ export interface CreateFirewallRuleCommandOutput extends CreateFirewallRuleRespo
6364
* // CreatorRequestId: "STRING_VALUE",
6465
* // CreationTime: "STRING_VALUE",
6566
* // ModificationTime: "STRING_VALUE",
67+
* // FirewallDomainRedirectionAction: "INSPECT_REDIRECTION_DOMAIN" || "TRUST_REDIRECTION_DOMAIN",
6668
* // Qtype: "STRING_VALUE",
6769
* // },
6870
* // };
@@ -77,6 +79,8 @@ export interface CreateFirewallRuleCommandOutput extends CreateFirewallRuleRespo
7779
*
7880
* @throws {@link AccessDeniedException} (client fault)
7981
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
82+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
83+
* resource policy for CloudWatch Logs.</p>
8084
*
8185
* @throws {@link InternalServiceErrorException} (client fault)
8286
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateFirewallRuleGroupCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ export interface CreateFirewallRuleGroupCommandOutput extends CreateFirewallRule
7373
*
7474
* @throws {@link AccessDeniedException} (client fault)
7575
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
76+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
77+
* resource policy for CloudWatch Logs.</p>
7678
*
7779
* @throws {@link InternalServiceErrorException} (client fault)
7880
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateOutpostResolverCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ export interface CreateOutpostResolverCommandOutput extends CreateOutpostResolve
7575
*
7676
* @throws {@link AccessDeniedException} (client fault)
7777
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
78+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
79+
* resource policy for CloudWatch Logs.</p>
7880
*
7981
* @throws {@link InternalServiceErrorException} (client fault)
8082
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateResolverEndpointCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ export interface CreateResolverEndpointCommandOutput extends CreateResolverEndpo
108108
*
109109
* @throws {@link AccessDeniedException} (client fault)
110110
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
111+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
112+
* resource policy for CloudWatch Logs.</p>
111113
*
112114
* @throws {@link InternalServiceErrorException} (client fault)
113115
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateResolverQueryLogConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ export interface CreateResolverQueryLogConfigCommandOutput
8383
*
8484
* @throws {@link AccessDeniedException} (client fault)
8585
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
86+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
87+
* resource policy for CloudWatch Logs.</p>
8688
*
8789
* @throws {@link InternalServiceErrorException} (client fault)
8890
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/CreateResolverRuleCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ export interface CreateResolverRuleCommandOutput extends CreateResolverRuleRespo
9494
*
9595
* @throws {@link AccessDeniedException} (client fault)
9696
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
97+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
98+
* resource policy for CloudWatch Logs.</p>
9799
*
98100
* @throws {@link InternalServiceErrorException} (client fault)
99101
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/DeleteFirewallDomainListCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ export interface DeleteFirewallDomainListCommandOutput extends DeleteFirewallDom
6464
*
6565
* @throws {@link AccessDeniedException} (client fault)
6666
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
67+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
68+
* resource policy for CloudWatch Logs.</p>
6769
*
6870
* @throws {@link ConflictException} (client fault)
6971
* <p>The requested state transition isn't valid. For example, you can't delete a firewall

clients/client-route53resolver/src/commands/DeleteFirewallRuleCommand.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface DeleteFirewallRuleCommandOutput extends DeleteFirewallRuleRespo
5555
* // CreatorRequestId: "STRING_VALUE",
5656
* // CreationTime: "STRING_VALUE",
5757
* // ModificationTime: "STRING_VALUE",
58+
* // FirewallDomainRedirectionAction: "INSPECT_REDIRECTION_DOMAIN" || "TRUST_REDIRECTION_DOMAIN",
5859
* // Qtype: "STRING_VALUE",
5960
* // },
6061
* // };
@@ -69,6 +70,8 @@ export interface DeleteFirewallRuleCommandOutput extends DeleteFirewallRuleRespo
6970
*
7071
* @throws {@link AccessDeniedException} (client fault)
7172
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
73+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
74+
* resource policy for CloudWatch Logs.</p>
7275
*
7376
* @throws {@link InternalServiceErrorException} (client fault)
7477
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/DeleteFirewallRuleGroupCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ export interface DeleteFirewallRuleGroupCommandOutput extends DeleteFirewallRule
6565
*
6666
* @throws {@link AccessDeniedException} (client fault)
6767
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
68+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
69+
* resource policy for CloudWatch Logs.</p>
6870
*
6971
* @throws {@link ConflictException} (client fault)
7072
* <p>The requested state transition isn't valid. For example, you can't delete a firewall

clients/client-route53resolver/src/commands/DeleteOutpostResolverCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ export interface DeleteOutpostResolverCommandOutput extends DeleteOutpostResolve
6565
*
6666
* @throws {@link AccessDeniedException} (client fault)
6767
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
68+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
69+
* resource policy for CloudWatch Logs.</p>
6870
*
6971
* @throws {@link ConflictException} (client fault)
7072
* <p>The requested state transition isn't valid. For example, you can't delete a firewall

clients/client-route53resolver/src/commands/DeleteResolverQueryLogConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ export interface DeleteResolverQueryLogConfigCommandOutput
7777
*
7878
* @throws {@link AccessDeniedException} (client fault)
7979
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
80+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
81+
* resource policy for CloudWatch Logs.</p>
8082
*
8183
* @throws {@link InternalServiceErrorException} (client fault)
8284
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/DisassociateFirewallRuleGroupCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export interface DisassociateFirewallRuleGroupCommandOutput
7272
*
7373
* @throws {@link AccessDeniedException} (client fault)
7474
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
75+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
76+
* resource policy for CloudWatch Logs.</p>
7577
*
7678
* @throws {@link ConflictException} (client fault)
7779
* <p>The requested state transition isn't valid. For example, you can't delete a firewall

clients/client-route53resolver/src/commands/DisassociateResolverQueryLogConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ export interface DisassociateResolverQueryLogConfigCommandOutput
8484
*
8585
* @throws {@link AccessDeniedException} (client fault)
8686
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
87+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
88+
* resource policy for CloudWatch Logs.</p>
8789
*
8890
* @throws {@link InternalServiceErrorException} (client fault)
8991
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetFirewallConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export interface GetFirewallConfigCommandOutput extends GetFirewallConfigRespons
5959
*
6060
* @throws {@link AccessDeniedException} (client fault)
6161
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
62+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
63+
* resource policy for CloudWatch Logs.</p>
6264
*
6365
* @throws {@link InternalServiceErrorException} (client fault)
6466
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetFirewallDomainListCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ export interface GetFirewallDomainListCommandOutput extends GetFirewallDomainLis
6464
*
6565
* @throws {@link AccessDeniedException} (client fault)
6666
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
67+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
68+
* resource policy for CloudWatch Logs.</p>
6769
*
6870
* @throws {@link InternalServiceErrorException} (client fault)
6971
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetFirewallRuleGroupAssociationCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ export interface GetFirewallRuleGroupAssociationCommandOutput
7272
*
7373
* @throws {@link AccessDeniedException} (client fault)
7474
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
75+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
76+
* resource policy for CloudWatch Logs.</p>
7577
*
7678
* @throws {@link InternalServiceErrorException} (client fault)
7779
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetFirewallRuleGroupCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ export interface GetFirewallRuleGroupCommandOutput extends GetFirewallRuleGroupR
6565
*
6666
* @throws {@link AccessDeniedException} (client fault)
6767
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
68+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
69+
* resource policy for CloudWatch Logs.</p>
6870
*
6971
* @throws {@link InternalServiceErrorException} (client fault)
7072
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetFirewallRuleGroupPolicyCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ export interface GetFirewallRuleGroupPolicyCommandOutput extends GetFirewallRule
5454
*
5555
* @throws {@link AccessDeniedException} (client fault)
5656
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
57+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
58+
* resource policy for CloudWatch Logs.</p>
5759
*
5860
* @throws {@link InternalServiceErrorException} (client fault)
5961
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetOutpostResolverCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ export interface GetOutpostResolverCommandOutput extends GetOutpostResolverRespo
6666
*
6767
* @throws {@link AccessDeniedException} (client fault)
6868
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
69+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
70+
* resource policy for CloudWatch Logs.</p>
6971
*
7072
* @throws {@link InternalServiceErrorException} (client fault)
7173
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetResolverConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export interface GetResolverConfigCommandOutput extends GetResolverConfigRespons
5959
*
6060
* @throws {@link AccessDeniedException} (client fault)
6161
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
62+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
63+
* resource policy for CloudWatch Logs.</p>
6264
*
6365
* @throws {@link InternalServiceErrorException} (client fault)
6466
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetResolverDnssecConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ export interface GetResolverDnssecConfigCommandOutput extends GetResolverDnssecC
5858
*
5959
* @throws {@link AccessDeniedException} (client fault)
6060
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
61+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
62+
* resource policy for CloudWatch Logs.</p>
6163
*
6264
* @throws {@link InternalServiceErrorException} (client fault)
6365
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetResolverQueryLogConfigAssociationCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ export interface GetResolverQueryLogConfigAssociationCommandOutput
7070
*
7171
* @throws {@link AccessDeniedException} (client fault)
7272
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
73+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
74+
* resource policy for CloudWatch Logs.</p>
7375
*
7476
* @throws {@link InternalServiceErrorException} (client fault)
7577
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetResolverQueryLogConfigCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ export interface GetResolverQueryLogConfigCommandOutput extends GetResolverQuery
6565
*
6666
* @throws {@link AccessDeniedException} (client fault)
6767
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
68+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
69+
* resource policy for CloudWatch Logs.</p>
6870
*
6971
* @throws {@link InternalServiceErrorException} (client fault)
7072
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetResolverQueryLogConfigPolicyCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export interface GetResolverQueryLogConfigPolicyCommandOutput
5959
*
6060
* @throws {@link AccessDeniedException} (client fault)
6161
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
62+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
63+
* resource policy for CloudWatch Logs.</p>
6264
*
6365
* @throws {@link InternalServiceErrorException} (client fault)
6466
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/GetResolverRulePolicyCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ export interface GetResolverRulePolicyCommandOutput extends GetResolverRulePolic
5454
*
5555
* @throws {@link AccessDeniedException} (client fault)
5656
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
57+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
58+
* resource policy for CloudWatch Logs.</p>
5759
*
5860
* @throws {@link InternalServiceErrorException} (client fault)
5961
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/ImportFirewallDomainsCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ export interface ImportFirewallDomainsCommandOutput extends ImportFirewallDomain
7373
*
7474
* @throws {@link AccessDeniedException} (client fault)
7575
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
76+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
77+
* resource policy for CloudWatch Logs.</p>
7678
*
7779
* @throws {@link ConflictException} (client fault)
7880
* <p>The requested state transition isn't valid. For example, you can't delete a firewall

clients/client-route53resolver/src/commands/ListFirewallConfigsCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ export interface ListFirewallConfigsCommandOutput extends ListFirewallConfigsRes
6363
*
6464
* @throws {@link AccessDeniedException} (client fault)
6565
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
66+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
67+
* resource policy for CloudWatch Logs.</p>
6668
*
6769
* @throws {@link InternalServiceErrorException} (client fault)
6870
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/ListFirewallDomainListsCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ export interface ListFirewallDomainListsCommandOutput extends ListFirewallDomain
6464
*
6565
* @throws {@link AccessDeniedException} (client fault)
6666
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
67+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
68+
* resource policy for CloudWatch Logs.</p>
6769
*
6870
* @throws {@link InternalServiceErrorException} (client fault)
6971
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/ListFirewallDomainsCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ export interface ListFirewallDomainsCommandOutput extends ListFirewallDomainsRes
5959
*
6060
* @throws {@link AccessDeniedException} (client fault)
6161
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
62+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
63+
* resource policy for CloudWatch Logs.</p>
6264
*
6365
* @throws {@link InternalServiceErrorException} (client fault)
6466
* <p>We encountered an unknown error. Try again in a few minutes.</p>

clients/client-route53resolver/src/commands/ListFirewallRuleGroupAssociationsCommand.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ export interface ListFirewallRuleGroupAssociationsCommandOutput
8484
*
8585
* @throws {@link AccessDeniedException} (client fault)
8686
* <p>The current account doesn't have the IAM permissions required to perform the specified Resolver operation.</p>
87+
* <p>This error can also be thrown when a customer has reached the 5120 character limit for a
88+
* resource policy for CloudWatch Logs.</p>
8789
*
8890
* @throws {@link InternalServiceErrorException} (client fault)
8991
* <p>We encountered an unknown error. Try again in a few minutes.</p>

0 commit comments

Comments
 (0)