Best Python code snippet using localstack_python
lambda_function.py
Source:lambda_function.py
...35 logging.info("certificate arn: %s" % arn)36 rs = {}37 while True:38 try:39 for d in acm_client.describe_certificate(CertificateArn=arn)['Certificate']['DomainValidationOptions']:40 rs[d['ResourceRecord']['Name']] = d['ResourceRecord']['Value']41 break42 except KeyError:43 if (context.get_remaining_time_in_millis() / 1000.00) > 20.0:44 print('waiting for ResourceRecord to be available')45 time.sleep(15)46 else:47 logging.error('timed out waiting for ResourceRecord')48 status = cfnresponse.FAILED49 time.sleep(15)50 rs = [{'Action': 'CREATE', 'ResourceRecordSet': {'Name': r, 'Type': 'CNAME', 'TTL': 600,'ResourceRecords': [{'Value': rs[r]}]}} for r in rs.keys()]51 try:52 r53_client.change_resource_record_sets(HostedZoneId=event['ResourceProperties']['HostedZoneId'], ChangeBatch={'Changes': rs})53 except Exception as e:54 if not str(e).endswith('but it already exists'):55 raise56 while 'PENDING_VALIDATION' in [v['ValidationStatus'] for v in acm_client.describe_certificate(CertificateArn=arn)['Certificate']['DomainValidationOptions']]:57 print('waiting for validation to complete')58 if (context.get_remaining_time_in_millis() / 1000.00) > 20.0:59 time.sleep(15)60 else:61 logging.error('validation timed out')62 status = cfnresponse.FAILED63 for r in [v for v in acm_client.describe_certificate(CertificateArn=arn)['Certificate']['DomainValidationOptions']]:64 if r['ValidationStatus'] != 'SUCCESS':65 logging.debug(r)66 status = cfnresponse.FAILED67 reason = 'One or more domains failed to validate'68 logging.error(reason)69 data['Arn'] = arn70 # delay as long as possible to give the cert a chance to propogate71 while context.get_remaining_time_in_millis() / 1000.00 > 10.0:72 time.sleep(5)73 elif event['RequestType'] == 'Update':74 reason = 'Exception: Stack updates are not supported'75 logging.error(reason)76 status = cfnresponse.FAILED77 physical_resource_id = event['PhysicalResourceId']78 elif event['RequestType'] == 'Delete':79 physical_resource_id=event['PhysicalResourceId']80 if not re.match(r'arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]+:[\w+=,.@-]+(/[\w+=,.@-]+)*', physical_resource_id):81 logging.info("PhysicalId is not an acm arn, assuming creation never happened and skipping delete")82 else:83 rs={}84 for d in acm_client.describe_certificate(CertificateArn=physical_resource_id)['Certificate']['DomainValidationOptions']:85 rs[d['ResourceRecord']['Name']] = d['ResourceRecord']['Value']86 rs = [{'Action': 'DELETE', 'ResourceRecordSet': {'Name': r, 'Type': 'CNAME', 'TTL': 600,'ResourceRecords': [{'Value': rs[r]}]}} for r in rs.keys()]87 try:88 r53_client.change_resource_record_sets(HostedZoneId=event['ResourceProperties']['HostedZoneId'], ChangeBatch={'Changes': rs})89 except r53_client.exceptions.InvalidChangeBatch as e:90 pass91 time.sleep(30)92 try:93 acm_client.delete_certificate(CertificateArn=physical_resource_id)94 except acm_client.exceptions.ResourceInUseException as e:95 time.sleep(60)96 acm_client.delete_certificate(CertificateArn=physical_resource_id)97 except Exception as e:98 logging.error('Exception: %s' % e, exc_info=True)...
describe_certificate.py
Source:describe_certificate.py
...18# Create ACM client19acm = boto3.client('acm')2021# Describe the specified certificate.22response = acm.describe_certificate(23 CertificateArn='arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012'24)25print(response)26 27 28# snippet-end:[acm.python.describe_certificate.complete]29# snippet-comment:[These are tags for the AWS doc team's sample catalog. Do not remove.]30# snippet-sourcedescription:[describe_certificate.py demonstrates how to retrieve detailed metadata about the specified AWS Certificate Manager certificate.]31# snippet-keyword:[Python]32# snippet-sourcesyntax:[python]33# snippet-sourcesyntax:[python]34# snippet-keyword:[AWS SDK for Python (Boto3)]35# snippet-keyword:[Code Sample]36# snippet-keyword:[AWS Certificate Manager]
...
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!!