Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new module: s3_object_info (ansible-collections#977)
new module: s3_object_info SUMMARY Adding a new module for retrieving s3 object info. Currently supports following boto APIs get_object() get_object_acl() get_object_attributes() get_object_legal_hold() get_object_lock_configuration() get_object_retention() get_object_tagging() ISSUE TYPE New Module Pull Request COMPONENT NAME s3_object_info ADDITIONAL INFORMATION Sample Tasks: - name: Get object info amazon.aws.s3_object_info: bucket_name: "{{ bucket_name }}" object_key: "{{ object_key }}" - name: Get object info details amazon.aws.s3_object_info: bucket_name: "{{ bucket_name }}" object_key: "{{ object_key }}" object_details: object_acl: true object_tagging: true object_attributes: true object_retention: true object_attributes: - ETag - ObjectSize - StorageClass Reviewed-by: Mark Chappell <None> Reviewed-by: Alina Buzachis <None> Reviewed-by: Mandar Kulkarni <[email protected]> Reviewed-by: Mike Graves <[email protected]> Reviewed-by: Jill R <None> Reviewed-by: Gonéri Le Bouder <[email protected]>
- Loading branch information