How to use put_resolver_query_log_config_policy method in localstack

Best Python code snippet using localstack_python

client.pyi

Source:client.pyi Github

copy

Full Screen

...679 sharing the rule group.680 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/route53resolver.html#Route53Resolver.Client.put_firewall_rule_group_policy)681 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_route53resolver/client.html#put_firewall_rule_group_policy)682 """683 def put_resolver_query_log_config_policy(684 self, *, Arn: str, ResolverQueryLogConfigPolicy: str685 ) -> PutResolverQueryLogConfigPolicyResponseTypeDef:686 """687 Specifies an Amazon Web Services account that you want to share a query logging688 configuration with, the query logging configuration that you want to share, and689 the operations that you want the account to be able to perform on the690 configuration.691 [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/route53resolver.html#Route53Resolver.Client.put_resolver_query_log_config_policy)692 [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_route53resolver/client.html#put_resolver_query_log_config_policy)693 """694 def put_resolver_rule_policy(695 self, *, Arn: str, ResolverRulePolicy: str696 ) -> PutResolverRulePolicyResponseTypeDef:697 """...

Full Screen

Full Screen

__init__.py

Source:__init__.py Github

copy

Full Screen

...1137 self, context: RequestContext, arn: Arn, firewall_rule_group_policy: FirewallRuleGroupPolicy1138 ) -> PutFirewallRuleGroupPolicyResponse:1139 raise NotImplementedError1140 @handler("PutResolverQueryLogConfigPolicy")1141 def put_resolver_query_log_config_policy(1142 self,1143 context: RequestContext,1144 arn: Arn,1145 resolver_query_log_config_policy: ResolverQueryLogConfigPolicy,1146 ) -> PutResolverQueryLogConfigPolicyResponse:1147 raise NotImplementedError1148 @handler("PutResolverRulePolicy")1149 def put_resolver_rule_policy(1150 self, context: RequestContext, arn: Arn, resolver_rule_policy: ResolverRulePolicy1151 ) -> PutResolverRulePolicyResponse:1152 raise NotImplementedError1153 @handler("TagResource")1154 def tag_resource(1155 self, context: RequestContext, resource_arn: Arn, tags: TagList...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful