Struct aws_sdk_codeartifact::operation::delete_repository_permissions_policy::DeleteRepositoryPermissionsPolicyInput
source · #[non_exhaustive]pub struct DeleteRepositoryPermissionsPolicyInput {
pub domain: Option<String>,
pub domain_owner: Option<String>,
pub repository: Option<String>,
pub policy_revision: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain: Option<String>
The name of the domain that contains the repository associated with the resource policy to be deleted.
domain_owner: Option<String>
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
repository: Option<String>
The name of the repository that is associated with the resource policy to be deleted
policy_revision: Option<String>
The revision of the repository's resource policy to be deleted. This revision is used for optimistic locking, which prevents others from accidentally overwriting your changes to the repository's resource policy.
Implementations§
source§impl DeleteRepositoryPermissionsPolicyInput
impl DeleteRepositoryPermissionsPolicyInput
sourcepub fn domain(&self) -> Option<&str>
pub fn domain(&self) -> Option<&str>
The name of the domain that contains the repository associated with the resource policy to be deleted.
sourcepub fn domain_owner(&self) -> Option<&str>
pub fn domain_owner(&self) -> Option<&str>
The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces.
sourcepub fn repository(&self) -> Option<&str>
pub fn repository(&self) -> Option<&str>
The name of the repository that is associated with the resource policy to be deleted
sourcepub fn policy_revision(&self) -> Option<&str>
pub fn policy_revision(&self) -> Option<&str>
The revision of the repository's resource policy to be deleted. This revision is used for optimistic locking, which prevents others from accidentally overwriting your changes to the repository's resource policy.
source§impl DeleteRepositoryPermissionsPolicyInput
impl DeleteRepositoryPermissionsPolicyInput
sourcepub fn builder() -> DeleteRepositoryPermissionsPolicyInputBuilder
pub fn builder() -> DeleteRepositoryPermissionsPolicyInputBuilder
Creates a new builder-style object to manufacture DeleteRepositoryPermissionsPolicyInput
.
Trait Implementations§
source§impl Clone for DeleteRepositoryPermissionsPolicyInput
impl Clone for DeleteRepositoryPermissionsPolicyInput
source§fn clone(&self) -> DeleteRepositoryPermissionsPolicyInput
fn clone(&self) -> DeleteRepositoryPermissionsPolicyInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DeleteRepositoryPermissionsPolicyInput
impl PartialEq for DeleteRepositoryPermissionsPolicyInput
source§fn eq(&self, other: &DeleteRepositoryPermissionsPolicyInput) -> bool
fn eq(&self, other: &DeleteRepositoryPermissionsPolicyInput) -> bool
self
and other
values to be equal, and is used
by ==
.