How to use put_bucket_intelligent_tiering_configuration method in localstack

Best Python code snippet using localstack_python

Lambda_S3_update_policy.py

Source:Lambda_S3_update_policy.py Github

copy

Full Screen

...54 if (tag['Key'] == bucket_tag_key):55 if(tag['Value'] == bucket_tag_value):56 logging.info (f'TAG Match: tag key={bucket_tag_key} and tag value={bucket_tag_value} for bucket {bucketName}' )57 put_bucket_lifecycle_configuration(bucketName,lifecycle_config_settings_it ) 58 put_bucket_intelligent_tiering_configuration(bucketName, archive_policy, ID)59 except ClientError as e:60 logging.info(f'No Tags')61 logger.info(f'S3 Bucket created event handled OK')62def put_bucket_lifecycle_configuration(bucket_name, lifecycle_config):63 try:64 ok = s3_client.put_bucket_lifecycle_configuration(Bucket=bucket_name,65 LifecycleConfiguration=lifecycle_config)66 if ok:67 logger.info(f'The lifecycle configuration was set for {bucket_name}')68 else:69 logger.error(f'Could not set lifecycle configuration for {bucket_name}')70 71 except ClientError as e:72 logger.error(e)73 return False74 return True75def put_bucket_intelligent_tiering_configuration(bucket_name, archive_policy, id):76 """Set the archive tier policy for an Amazon S3 bucket77 :param bucket_name: string78 :param intel_config: dict of intelligence tier configuration settings79 :param Id = Archive ID80 :return: True if archive policy configuration was set, otherwise False81 """82 try:83 ok = s3_client.put_bucket_intelligent_tiering_configuration(Bucket=bucket_name,84 IntelligentTieringConfiguration=archive_policy, Id=id)85 if ok:86 logging.info(f'The archive configuration was set for {bucket_name}')87 else:88 logger.error(f'Could not set archive configuration for {bucket_name}')89 90 except ClientError as e:91 logging.error(e)92 return False...

Full Screen

Full Screen

Python_put_bucket_policy_configuration.py

Source:Python_put_bucket_policy_configuration.py Github

copy

Full Screen

...44 if (tag['Key'] == bucket_tag_key):45 if(tag['Value'] == bucket_tag_value):46 logging.info (f'TAG Match: tag key={bucket_tag_key} and tag value={bucket_tag_value} for bucket {bucket.name}' )47 put_bucket_lifecycle_configuration(bucket.name,lifecycle_config_settings_it ) 48 # put_bucket_intelligent_tiering_configuration(bucket.name, archive_policy, ID)49 except ClientError as e:50 logging.info(f'No Tags')51def put_bucket_lifecycle_configuration(bucket_name, lifecycle_config):52 """Set the lifecycle configuration of an Amazon S3 bucket53 :param bucket_name: string54 :param lifecycle_config: dict of lifecycle configuration settings55 :return: True if lifecycle configuration was set, otherwise False56 """57 try:58 ok = boto3_session.client('s3').put_bucket_lifecycle_configuration(Bucket=bucket_name,59 LifecycleConfiguration=lifecycle_config)60 if ok:61 logging.info(f'The lifecycle configuration was set for {bucket_name}')62 except ClientError as e:63 logging.error(e)64 return False65 return True66def put_bucket_intelligent_tiering_configuration(bucket_name, archive_policy, id):67 """Set the archive tier policy for an Amazon S3 bucket68 :param bucket_name: string69 :param intel_config: dict of intelligence tier configuration settings70 :param Id = Archive ID71 :return: True if archive policy configuration was set, otherwise False72 """73 try:74 ok = boto3_session.client('s3').put_bucket_intelligent_tiering_configuration(Bucket=bucket_name,75 IntelligentTieringConfiguration=archive_policy, Id=id)76 if ok:77 logging.info(f'The archive configuration was set for {bucket_name}')78 except ClientError as e:79 logging.error(e)80 return False81 return True82if __name__ == '__main__' :83 logging.info(f'{__file__}')...

Full Screen

Full Screen

enabled-S3_intelligent-tiering.py

Source:enabled-S3_intelligent-tiering.py Github

copy

Full Screen

...16 if response["IntelligentTieringConfigurationList"][0]["Status"] == "Enabled":17 print("Intelligent Tiering is Enabled on",bucket)18 else :19 # print("Not Found IntelligentTieringConfiguration on ",bucket)20 response = s3.put_bucket_intelligent_tiering_configuration(21 Bucket=bucket,22 Id='itc-boto',23 IntelligentTieringConfiguration={24 'Id': 'itc-boto',25 'Status': 'Enabled',26 "Tierings": [27 {28 "Days": 180,29 "AccessTier": "DEEP_ARCHIVE_ACCESS"30 },31 {32 "Days": 90,33 "AccessTier": "ARCHIVE_ACCESS"34 }...

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