Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
awscli / awscli / examples / s3api / get-object-lock-configuration.rst
Size: Mime:
**To retrieve an object lock configuration for a bucket**

The following ``get-object-lock-configuration`` example retrieves the object lock configuration for the specified bucket. ::

    aws s3api get-object-lock-configuration \
        --bucket my-bucket-with-object-lock

Output::

    {
        "ObjectLockConfiguration": {
            "ObjectLockEnabled": "Enabled",
            "Rule": {
                "DefaultRetention": {
                    "Mode": "COMPLIANCE", 
                    "Days": 50
                }
            }
        }
    }