#[non_exhaustive]pub struct AcceptInvitationInput {
pub administrator_account_id: Option<String>,
pub invitation_id: Option<String>,
pub master_account: Option<String>,
}
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.administrator_account_id: Option<String>
The Amazon Web Services account ID for the account that sent the invitation.
invitation_id: Option<String>
The unique identifier for the invitation to accept.
master_account: Option<String>
(Deprecated) The Amazon Web Services account ID for the account that sent the invitation. This property has been replaced by the administratorAccountId property and is retained only for backward compatibility.
Implementations§
source§impl AcceptInvitationInput
impl AcceptInvitationInput
sourcepub fn administrator_account_id(&self) -> Option<&str>
pub fn administrator_account_id(&self) -> Option<&str>
The Amazon Web Services account ID for the account that sent the invitation.
sourcepub fn invitation_id(&self) -> Option<&str>
pub fn invitation_id(&self) -> Option<&str>
The unique identifier for the invitation to accept.
sourcepub fn master_account(&self) -> Option<&str>
pub fn master_account(&self) -> Option<&str>
(Deprecated) The Amazon Web Services account ID for the account that sent the invitation. This property has been replaced by the administratorAccountId property and is retained only for backward compatibility.
source§impl AcceptInvitationInput
impl AcceptInvitationInput
sourcepub fn builder() -> AcceptInvitationInputBuilder
pub fn builder() -> AcceptInvitationInputBuilder
Creates a new builder-style object to manufacture AcceptInvitationInput
.
Trait Implementations§
source§impl Clone for AcceptInvitationInput
impl Clone for AcceptInvitationInput
source§fn clone(&self) -> AcceptInvitationInput
fn clone(&self) -> AcceptInvitationInput
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 AcceptInvitationInput
impl Debug for AcceptInvitationInput
source§impl PartialEq for AcceptInvitationInput
impl PartialEq for AcceptInvitationInput
source§fn eq(&self, other: &AcceptInvitationInput) -> bool
fn eq(&self, other: &AcceptInvitationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AcceptInvitationInput
Auto Trait Implementations§
impl RefUnwindSafe for AcceptInvitationInput
impl Send for AcceptInvitationInput
impl Sync for AcceptInvitationInput
impl Unpin for AcceptInvitationInput
impl UnwindSafe for AcceptInvitationInput
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.