ConfigurationSet

class ConfigurationSet : KotlinCustomResource

Resource for managing an AWS SESv2 (Simple Email V2) Configuration Set.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sesv2.ConfigurationSet;
import com.pulumi.aws.sesv2.ConfigurationSetArgs;
import com.pulumi.aws.sesv2.inputs.ConfigurationSetDeliveryOptionsArgs;
import com.pulumi.aws.sesv2.inputs.ConfigurationSetReputationOptionsArgs;
import com.pulumi.aws.sesv2.inputs.ConfigurationSetSendingOptionsArgs;
import com.pulumi.aws.sesv2.inputs.ConfigurationSetSuppressionOptionsArgs;
import com.pulumi.aws.sesv2.inputs.ConfigurationSetTrackingOptionsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ConfigurationSet("example", ConfigurationSetArgs.builder()
.configurationSetName("example")
.deliveryOptions(ConfigurationSetDeliveryOptionsArgs.builder()
.tlsPolicy("REQUIRE")
.build())
.reputationOptions(ConfigurationSetReputationOptionsArgs.builder()
.reputationMetricsEnabled(false)
.build())
.sendingOptions(ConfigurationSetSendingOptionsArgs.builder()
.sendingEnabled(true)
.build())
.suppressionOptions(ConfigurationSetSuppressionOptionsArgs.builder()
.suppressedReasons(
"BOUNCE",
"COMPLAINT")
.build())
.trackingOptions(ConfigurationSetTrackingOptionsArgs.builder()
.customRedirectDomain("example.com")
.build())
.build());
}
}

Import

SESv2 (Simple Email V2) Configuration Set can be imported using the configuration_set_name, e.g.,

$ pulumi import aws:sesv2/configurationSet:ConfigurationSet example example

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the Configuration Set.

Link copied to clipboard

The name of the configuration set.

Link copied to clipboard

An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.

Link copied to clipboard

An object that defines whether or not Amazon SES can send email that you send using the configuration set.

Link copied to clipboard

An object that contains information about the suppression list preferences for your account.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A map of tags to assign to the service. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>
Link copied to clipboard

An object that defines the open and click tracking options for emails that you send using the configuration set.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard

An object that defines the VDM settings that apply to emails that you send using the configuration set.