ExAws.SES.create_contact_list
You're seeing just the function
create_contact_list
, go back to ExAws.SES module for more information.
Specs
create_contact_list(String.t(), opts :: [create_contact_list_opt()]) :: ExAws.Operation.JSON.t()
Create a contact list via the SES V2 API, see (https://docs.aws.amazon.com/ses/latest/APIReference-V2/).
Examples
ExAws.SES.create_contact_list(
"Test list",
"Test description",
tags: [%{"Key" => "environment", "Value" => "test"}],
topics: [
%{
"TopicName": "test_topic"
"DisplayName": "Test topic",
"Description": "Test discription",
"DefaultSubscriptionStatus": "OPT_IN",
}
]
)