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 / sns / set-endpoint-attributes.rst
Size: Mime:
**To set endpoint attributes**

The following ``set-endpoint-attributes`` example disables the specified platform application endpoint. ::

    aws sns get-endpoint-attributes \
        --endpoint-arn arn:aws:sns:us-west-2:123456789012:endpoint/GCM/MyApplication/12345678-abcd-9012-efgh-345678901234 \
        --attributes Enabled=false

Output::

    {
        "Attributes": {
            "Enabled": "false",
            "Token": "EXAMPLE12345..."
        }
    }