Set Repository Policy
ecr_set_repository_policy | R Documentation |
Applies a repository policy to the specified repository to control access permissions¶
Description¶
Applies a repository policy to the specified repository to control access permissions. For more information, see Amazon ECR Repository policies in the Amazon Elastic Container Registry User Guide.
Usage¶
ecr_set_repository_policy(registryId, repositoryName, policyText, force)
Arguments¶
registryId |
The Amazon Web Services account ID associated with the registry that contains the repository. If you do not specify a registry, the default registry is assumed. |
repositoryName |
[required] The name of the repository to receive the policy. |
policyText |
[required] The JSON repository policy text to apply to the repository. For more information, see Amazon ECR repository policies in the Amazon Elastic Container Registry User Guide. |
force |
If the policy you are attempting to set on a repository policy
would prevent you from setting another policy in the future, you must
force the |
Value¶
A list with the following syntax:
list(
registryId = "string",
repositoryName = "string",
policyText = "string"
)
Request syntax¶
svc$set_repository_policy(
registryId = "string",
repositoryName = "string",
policyText = "string",
force = TRUE|FALSE
)