Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          1.21.11  ▾
        
         | 
**To attach a permissions policy to a repository**
The following ``put-repository-permissions-policy`` example attaches a permission policy that is defined in the policy.json file to a repository named test-repo. ::
    aws codeartifact put-repository-permissions-policy \
        --domain test-domain \
        --repository test-repo \
        --policy-document file://PATH/TO/policy.json
Output::
    {
        "policy": {
            "resourceArn": "arn:aws:codeartifact:region-id:111122223333:repository/test-domain/test-repo",
            "document": "{ ...policy document content...}",
            "revision": "MQlyyTQRASRU3HB58gBtSDHXG7Q3hvxxxxxxx="
        }
    }
For more information, see `Set a policy <https://docs.aws.amazon.com/codeartifact/latest/ug/repo-policies.html#setting-a-policy>`__ in the *AWS CodeArtifact User Guide*.