public static interface EmailConfiguration.Builder extends SdkPojo, CopyableBuilder<EmailConfiguration.Builder,EmailConfiguration>
| Modifier and Type | Method and Description |
|---|---|
default EmailConfiguration.Builder |
content(Consumer<EmailContent.Builder> content)
Contains the subject and message of an email.
|
EmailConfiguration.Builder |
content(EmailContent content)
Contains the subject and message of an email.
|
EmailConfiguration.Builder |
from(String from)
The email address that sends emails.
|
default EmailConfiguration.Builder |
recipients(Consumer<EmailRecipients.Builder> recipients)
Contains the information of one or more recipients who receive the emails.
|
EmailConfiguration.Builder |
recipients(EmailRecipients recipients)
Contains the information of one or more recipients who receive the emails.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildEmailConfiguration.Builder from(String from)
The email address that sends emails.
If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES.
from - The email address that sends emails. If you use the AWS IoT Events managed AWS Lambda function to manage your emails, you must verify the email address that sends emails in Amazon SES.
EmailConfiguration.Builder content(EmailContent content)
Contains the subject and message of an email.
content - Contains the subject and message of an email.default EmailConfiguration.Builder content(Consumer<EmailContent.Builder> content)
Contains the subject and message of an email.
This is a convenience that creates an instance of theEmailContent.Builder avoiding the need to
create one manually via EmailContent.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to content(EmailContent).content - a consumer that will call methods on EmailContent.Buildercontent(EmailContent)EmailConfiguration.Builder recipients(EmailRecipients recipients)
Contains the information of one or more recipients who receive the emails.
You must add the users that receive emails to your AWS SSO store.
recipients - Contains the information of one or more recipients who receive the emails. You must add the users that receive emails to your AWS SSO store.
default EmailConfiguration.Builder recipients(Consumer<EmailRecipients.Builder> recipients)
Contains the information of one or more recipients who receive the emails.
You must add the users that receive emails to your AWS SSO store.
EmailRecipients.Builder avoiding
the need to create one manually via EmailRecipients.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to recipients(EmailRecipients).recipients - a consumer that will call methods on EmailRecipients.Builderrecipients(EmailRecipients)Copyright © 2022. All rights reserved.