Class: Aws::ECRPublic::Types::SetRepositoryPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECRPublic::Types::SetRepositoryPolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecrpublic/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#force ⇒ Boolean
If the policy that you want to set on a repository policy would prevent you from setting another policy in the future, you must force the SetRepositoryPolicy operation.
-
#policy_text ⇒ String
The JSON repository policy text to apply to the repository.
-
#registry_id ⇒ String
The Amazon Web Services account ID that’s associated with the registry that contains the repository.
-
#repository_name ⇒ String
The name of the repository to receive the policy.
Instance Attribute Details
#force ⇒ Boolean
If the policy that you want to set on a repository policy would prevent you from setting another policy in the future, you must force the SetRepositoryPolicy operation. This prevents accidental repository lockouts.
1778 1779 1780 1781 1782 1783 1784 1785 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1778 class SetRepositoryPolicyRequest < Struct.new( :registry_id, :repository_name, :policy_text, :force) SENSITIVE = [] include Aws::Structure end |
#policy_text ⇒ String
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*.
[1]: docs.aws.amazon.com/AmazonECR/latest/userguide/repository-policy-examples.html
1778 1779 1780 1781 1782 1783 1784 1785 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1778 class SetRepositoryPolicyRequest < Struct.new( :registry_id, :repository_name, :policy_text, :force) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID that’s associated with the registry that contains the repository. If you do not specify a registry, the default public registry is assumed.
1778 1779 1780 1781 1782 1783 1784 1785 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1778 class SetRepositoryPolicyRequest < Struct.new( :registry_id, :repository_name, :policy_text, :force) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository to receive the policy.
1778 1779 1780 1781 1782 1783 1784 1785 |
# File 'lib/aws-sdk-ecrpublic/types.rb', line 1778 class SetRepositoryPolicyRequest < Struct.new( :registry_id, :repository_name, :policy_text, :force) SENSITIVE = [] include Aws::Structure end |