Best Python code snippet using localstack_python
s3_metrics_configuration.py
Source:s3_metrics_configuration.py  
...118    mc_id = module.params.get('id')119    filter_prefix = module.params.get('filter_prefix')120    filter_tags = module.params.get('filter_tags')121    try:122        response = client.get_bucket_metrics_configuration(aws_retry=True, Bucket=bucket_name, Id=mc_id)123        metrics_configuration = response['MetricsConfiguration']124    except is_boto3_error_code('NoSuchConfiguration'):125        metrics_configuration = None126    except (BotoCoreError, ClientError) as e:  # pylint: disable=duplicate-except127        module.fail_json_aws(e, msg="Failed to get bucket metrics configuration")128    new_configuration = _create_metrics_configuration(mc_id, filter_prefix, filter_tags)129    if metrics_configuration:130        if metrics_configuration == new_configuration:131            module.exit_json(changed=False)132    if module.check_mode:133        module.exit_json(changed=True)134    try:135        client.put_bucket_metrics_configuration(136            aws_retry=True,137            Bucket=bucket_name,138            Id=mc_id,139            MetricsConfiguration=new_configuration140        )141    except (BotoCoreError, ClientError) as e:  # pylint: disable=duplicate-except142        module.fail_json_aws(e, msg="Failed to put bucket metrics configuration '%s'" % mc_id)143    module.exit_json(changed=True)144def delete_metrics_configuration(client, module):145    bucket_name = module.params.get('bucket_name')146    mc_id = module.params.get('id')147    try:148        client.get_bucket_metrics_configuration(aws_retry=True, Bucket=bucket_name, Id=mc_id)149    except is_boto3_error_code('NoSuchConfiguration'):150        module.exit_json(changed=False)151    except (BotoCoreError, ClientError) as e:  # pylint: disable=duplicate-except152        module.fail_json_aws(e, msg="Failed to get bucket metrics configuration")153    if module.check_mode:154        module.exit_json(changed=True)155    try:156        client.delete_bucket_metrics_configuration(aws_retry=True, Bucket=bucket_name, Id=mc_id)157    except is_boto3_error_code('NoSuchConfiguration'):158        module.exit_json(changed=False)159    except (BotoCoreError, ClientError) as e:  # pylint: disable=duplicate-except160        module.fail_json_aws(e, msg="Failed to delete bucket metrics configuration '%s'" % mc_id)161    module.exit_json(changed=True)162def main():...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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
