Class: Aws::CodeArtifact::Types::PutRepositoryPermissionsPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeArtifact::Types::PutRepositoryPermissionsPolicyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeartifact/types.rb
Overview
When making an API call, you may pass PutRepositoryPermissionsPolicyRequest data as a hash:
{
domain: "DomainName", # required
domain_owner: "AccountId",
repository: "RepositoryName", # required
policy_revision: "PolicyRevision",
policy_document: "PolicyDocument", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain containing the repository to set the resource policy on.
-
#domain_owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain.
-
#policy_document ⇒ String
A valid displayable JSON Aspen policy string to be set as the access control resource policy on the provided repository.
-
#policy_revision ⇒ String
Sets the revision of the resource policy that specifies permissions to access the repository.
-
#repository ⇒ String
The name of the repository to set the resource policy on.
Instance Attribute Details
#domain ⇒ String
The name of the domain containing the repository to set the resource policy on.
3065 3066 3067 3068 3069 3070 3071 3072 3073 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3065 class PutRepositoryPermissionsPolicyRequest < Struct.new( :domain, :domain_owner, :repository, :policy_revision, :policy_document) SENSITIVE = [] include Aws::Structure end |
#domain_owner ⇒ String
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
3065 3066 3067 3068 3069 3070 3071 3072 3073 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3065 class PutRepositoryPermissionsPolicyRequest < Struct.new( :domain, :domain_owner, :repository, :policy_revision, :policy_document) SENSITIVE = [] include Aws::Structure end |
#policy_document ⇒ String
A valid displayable JSON Aspen policy string to be set as the access control resource policy on the provided repository.
3065 3066 3067 3068 3069 3070 3071 3072 3073 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3065 class PutRepositoryPermissionsPolicyRequest < Struct.new( :domain, :domain_owner, :repository, :policy_revision, :policy_document) SENSITIVE = [] include Aws::Structure end |
#policy_revision ⇒ String
Sets the revision of the resource policy that specifies permissions to access the repository. This revision is used for optimistic locking, which prevents others from overwriting your changes to the repository's resource policy.
3065 3066 3067 3068 3069 3070 3071 3072 3073 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3065 class PutRepositoryPermissionsPolicyRequest < Struct.new( :domain, :domain_owner, :repository, :policy_revision, :policy_document) SENSITIVE = [] include Aws::Structure end |
#repository ⇒ String
The name of the repository to set the resource policy on.
3065 3066 3067 3068 3069 3070 3071 3072 3073 |
# File 'lib/aws-sdk-codeartifact/types.rb', line 3065 class PutRepositoryPermissionsPolicyRequest < Struct.new( :domain, :domain_owner, :repository, :policy_revision, :policy_document) SENSITIVE = [] include Aws::Structure end |