#[non_exhaustive]pub struct CreateInvitationsInput {
pub account_ids: Option<Vec<String>>,
pub disable_email_notification: Option<bool>,
pub message: 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.account_ids: Option<Vec<String>>
An array that lists Amazon Web Services account IDs, one for each account to send the invitation to.
disable_email_notification: Option<bool>
Specifies whether to send the invitation as an email message. If this value is false, Amazon Macie sends the invitation (as an email message) to the email address that you specified for the recipient's account when you associated the account with your account. The default value is false.
message: Option<String>
Custom text to include in the email message that contains the invitation. The text can contain as many as 80 alphanumeric characters.
Implementations§
source§impl CreateInvitationsInput
impl CreateInvitationsInput
sourcepub fn account_ids(&self) -> Option<&[String]>
pub fn account_ids(&self) -> Option<&[String]>
An array that lists Amazon Web Services account IDs, one for each account to send the invitation to.
sourcepub fn disable_email_notification(&self) -> Option<bool>
pub fn disable_email_notification(&self) -> Option<bool>
Specifies whether to send the invitation as an email message. If this value is false, Amazon Macie sends the invitation (as an email message) to the email address that you specified for the recipient's account when you associated the account with your account. The default value is false.
source§impl CreateInvitationsInput
impl CreateInvitationsInput
sourcepub fn builder() -> CreateInvitationsInputBuilder
pub fn builder() -> CreateInvitationsInputBuilder
Creates a new builder-style object to manufacture CreateInvitationsInput
.
Trait Implementations§
source§impl Clone for CreateInvitationsInput
impl Clone for CreateInvitationsInput
source§fn clone(&self) -> CreateInvitationsInput
fn clone(&self) -> CreateInvitationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateInvitationsInput
impl Debug for CreateInvitationsInput
source§impl PartialEq<CreateInvitationsInput> for CreateInvitationsInput
impl PartialEq<CreateInvitationsInput> for CreateInvitationsInput
source§fn eq(&self, other: &CreateInvitationsInput) -> bool
fn eq(&self, other: &CreateInvitationsInput) -> bool
self
and other
values to be equal, and is used
by ==
.