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 / cloudfront / get-cloud-front-origin-access-identity-config.rst
Size: Mime:
**To get a CloudFront origin access identity configuration**

The following example gets metadata about the CloudFront origin access identity
(OAI) with the ID ``E74FTE3AEXAMPLE``, including its ``ETag``. The OAI ID is
returned in the output of the
`create-cloud-front-origin-access-identity
<create-cloud-front-origin-access-identity.html>`_ and
`list-cloud-front-origin-access-identities
<list-cloud-front-origin-access-identities.html>`_ commands.

::

    aws cloudfront get-cloud-front-origin-access-identity-config --id E74FTE3AEXAMPLE

Output::

    {
        "ETag": "E2QWRUHEXAMPLE",
        "CloudFrontOriginAccessIdentityConfig": {
            "CallerReference": "cli-example",
            "Comment": "Example OAI"
        }
    }