#[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
sourceimpl DeleteRepositoryPermissionsPolicyInput
impl DeleteRepositoryPermissionsPolicyInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteRepositoryPermissionsPolicy, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteRepositoryPermissionsPolicy, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DeleteRepositoryPermissionsPolicy
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteRepositoryPermissionsPolicyInput
.
sourceimpl 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.
Trait Implementations
sourceimpl Clone for DeleteRepositoryPermissionsPolicyInput
impl Clone for DeleteRepositoryPermissionsPolicyInput
sourcefn clone(&self) -> DeleteRepositoryPermissionsPolicyInput
fn clone(&self) -> DeleteRepositoryPermissionsPolicyInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<DeleteRepositoryPermissionsPolicyInput> for DeleteRepositoryPermissionsPolicyInput
impl PartialEq<DeleteRepositoryPermissionsPolicyInput> for DeleteRepositoryPermissionsPolicyInput
sourcefn eq(&self, other: &DeleteRepositoryPermissionsPolicyInput) -> bool
fn eq(&self, other: &DeleteRepositoryPermissionsPolicyInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DeleteRepositoryPermissionsPolicyInput) -> bool
fn ne(&self, other: &DeleteRepositoryPermissionsPolicyInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DeleteRepositoryPermissionsPolicyInput
Auto Trait Implementations
impl RefUnwindSafe for DeleteRepositoryPermissionsPolicyInput
impl Send for DeleteRepositoryPermissionsPolicyInput
impl Sync for DeleteRepositoryPermissionsPolicyInput
impl Unpin for DeleteRepositoryPermissionsPolicyInput
impl UnwindSafe for DeleteRepositoryPermissionsPolicyInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more