Create Configuration Set
pinpointemail_create_configuration_set | R Documentation |
Create a configuration set¶
Description¶
Create a configuration set. Configuration sets are groups of rules that you can apply to the emails you send using Amazon Pinpoint. You apply a configuration set to an email by including a reference to the configuration set in the headers of the email. When you apply a configuration set to an email, all of the rules in that configuration set are applied to the email.
Usage¶
pinpointemail_create_configuration_set(ConfigurationSetName,
TrackingOptions, DeliveryOptions, ReputationOptions, SendingOptions,
Tags)
Arguments¶
ConfigurationSetName |
[required] The name of the configuration set. |
TrackingOptions |
An object that defines the open and click tracking options for emails that you send using the configuration set. |
DeliveryOptions |
An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set. |
ReputationOptions |
An object that defines whether or not Amazon Pinpoint collects reputation metrics for the emails that you send that use the configuration set. |
SendingOptions |
An object that defines whether or not Amazon Pinpoint can send email that you send using the configuration set. |
Tags |
An array of objects that define the tags (keys and values) that you want to associate with the configuration set. |
Value¶
An empty list.
Request syntax¶
svc$create_configuration_set(
ConfigurationSetName = "string",
TrackingOptions = list(
CustomRedirectDomain = "string"
),
DeliveryOptions = list(
TlsPolicy = "REQUIRE"|"OPTIONAL",
SendingPoolName = "string"
),
ReputationOptions = list(
ReputationMetricsEnabled = TRUE|FALSE,
LastFreshStart = as.POSIXct(
"2015-01-01"
)
),
SendingOptions = list(
SendingEnabled = TRUE|FALSE
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)