Struct aws_sdk_macie2::client::fluent_builders::CreateInvitations
source · [−]pub struct CreateInvitations { /* private fields */ }
Expand description
Fluent builder constructing a request to CreateInvitations
.
Sends an Amazon Macie membership invitation to one or more accounts.
Implementations
sourceimpl CreateInvitations
impl CreateInvitations
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<CreateInvitations, AwsResponseRetryClassifier>, SdkError<CreateInvitationsError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<CreateInvitations, AwsResponseRetryClassifier>, SdkError<CreateInvitationsError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<CreateInvitationsOutput, SdkError<CreateInvitationsError>>
pub async fn send(
self
) -> Result<CreateInvitationsOutput, SdkError<CreateInvitationsError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn account_ids(self, input: impl Into<String>) -> Self
pub fn account_ids(self, input: impl Into<String>) -> Self
Appends an item to accountIds
.
To override the contents of this collection use set_account_ids
.
An array that lists Amazon Web Services account IDs, one for each account to send the invitation to.
sourcepub fn set_account_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_account_ids(self, input: Option<Vec<String>>) -> Self
An array that lists Amazon Web Services account IDs, one for each account to send the invitation to.
sourcepub fn disable_email_notification(self, input: bool) -> Self
pub fn disable_email_notification(self, input: bool) -> Self
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.
sourcepub fn set_disable_email_notification(self, input: Option<bool>) -> Self
pub fn set_disable_email_notification(self, input: Option<bool>) -> Self
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.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
Custom text to include in the email message that contains the invitation. The text can contain as many as 80 alphanumeric characters.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
Custom text to include in the email message that contains the invitation. The text can contain as many as 80 alphanumeric characters.
Trait Implementations
sourceimpl Clone for CreateInvitations
impl Clone for CreateInvitations
sourcefn clone(&self) -> CreateInvitations
fn clone(&self) -> CreateInvitations
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more