#[non_exhaustive]pub struct DeleteProjectMembershipInput {
pub domain_identifier: Option<String>,
pub project_identifier: Option<String>,
pub member: Option<Member>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The ID of the Amazon DataZone domain where project membership is deleted.
project_identifier: Option<String>
The ID of the Amazon DataZone project the membership to which is deleted.
member: Option<Member>
The project member whose project membership is deleted.
Implementations§
source§impl DeleteProjectMembershipInput
impl DeleteProjectMembershipInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain where project membership is deleted.
sourcepub fn project_identifier(&self) -> Option<&str>
pub fn project_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone project the membership to which is deleted.
source§impl DeleteProjectMembershipInput
impl DeleteProjectMembershipInput
sourcepub fn builder() -> DeleteProjectMembershipInputBuilder
pub fn builder() -> DeleteProjectMembershipInputBuilder
Creates a new builder-style object to manufacture DeleteProjectMembershipInput
.
Trait Implementations§
source§impl Clone for DeleteProjectMembershipInput
impl Clone for DeleteProjectMembershipInput
source§fn clone(&self) -> DeleteProjectMembershipInput
fn clone(&self) -> DeleteProjectMembershipInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DeleteProjectMembershipInput
impl Debug for DeleteProjectMembershipInput
source§impl PartialEq for DeleteProjectMembershipInput
impl PartialEq for DeleteProjectMembershipInput
source§fn eq(&self, other: &DeleteProjectMembershipInput) -> bool
fn eq(&self, other: &DeleteProjectMembershipInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteProjectMembershipInput
Auto Trait Implementations§
impl Freeze for DeleteProjectMembershipInput
impl RefUnwindSafe for DeleteProjectMembershipInput
impl Send for DeleteProjectMembershipInput
impl Sync for DeleteProjectMembershipInput
impl Unpin for DeleteProjectMembershipInput
impl UnwindSafe for DeleteProjectMembershipInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.