Try AWS Native preview for resources not in the classic version.
aws.sesv2.ConfigurationSet
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Resource for managing an AWS SESv2 (Simple Email V2) Configuration Set.
Example Usage
Basic Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.SesV2.ConfigurationSet("example", new()
{
ConfigurationSetName = "example",
DeliveryOptions = new Aws.SesV2.Inputs.ConfigurationSetDeliveryOptionsArgs
{
TlsPolicy = "REQUIRE",
},
ReputationOptions = new Aws.SesV2.Inputs.ConfigurationSetReputationOptionsArgs
{
ReputationMetricsEnabled = false,
},
SendingOptions = new Aws.SesV2.Inputs.ConfigurationSetSendingOptionsArgs
{
SendingEnabled = true,
},
SuppressionOptions = new Aws.SesV2.Inputs.ConfigurationSetSuppressionOptionsArgs
{
SuppressedReasons = new[]
{
"BOUNCE",
"COMPLAINT",
},
},
TrackingOptions = new Aws.SesV2.Inputs.ConfigurationSetTrackingOptionsArgs
{
CustomRedirectDomain = "example.com",
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/sesv2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := sesv2.NewConfigurationSet(ctx, "example", &sesv2.ConfigurationSetArgs{
ConfigurationSetName: pulumi.String("example"),
DeliveryOptions: &sesv2.ConfigurationSetDeliveryOptionsArgs{
TlsPolicy: pulumi.String("REQUIRE"),
},
ReputationOptions: &sesv2.ConfigurationSetReputationOptionsArgs{
ReputationMetricsEnabled: pulumi.Bool(false),
},
SendingOptions: &sesv2.ConfigurationSetSendingOptionsArgs{
SendingEnabled: pulumi.Bool(true),
},
SuppressionOptions: &sesv2.ConfigurationSetSuppressionOptionsArgs{
SuppressedReasons: pulumi.StringArray{
pulumi.String("BOUNCE"),
pulumi.String("COMPLAINT"),
},
},
TrackingOptions: &sesv2.ConfigurationSetTrackingOptionsArgs{
CustomRedirectDomain: pulumi.String("example.com"),
},
})
if err != nil {
return err
}
return nil
})
}
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 pulumi
import pulumi_aws as aws
example = aws.sesv2.ConfigurationSet("example",
configuration_set_name="example",
delivery_options=aws.sesv2.ConfigurationSetDeliveryOptionsArgs(
tls_policy="REQUIRE",
),
reputation_options=aws.sesv2.ConfigurationSetReputationOptionsArgs(
reputation_metrics_enabled=False,
),
sending_options=aws.sesv2.ConfigurationSetSendingOptionsArgs(
sending_enabled=True,
),
suppression_options=aws.sesv2.ConfigurationSetSuppressionOptionsArgs(
suppressed_reasons=[
"BOUNCE",
"COMPLAINT",
],
),
tracking_options=aws.sesv2.ConfigurationSetTrackingOptionsArgs(
custom_redirect_domain="example.com",
))
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.sesv2.ConfigurationSet("example", {
configurationSetName: "example",
deliveryOptions: {
tlsPolicy: "REQUIRE",
},
reputationOptions: {
reputationMetricsEnabled: false,
},
sendingOptions: {
sendingEnabled: true,
},
suppressionOptions: {
suppressedReasons: [
"BOUNCE",
"COMPLAINT",
],
},
trackingOptions: {
customRedirectDomain: "example.com",
},
});
resources:
example:
type: aws:sesv2:ConfigurationSet
properties:
configurationSetName: example
deliveryOptions:
tlsPolicy: REQUIRE
reputationOptions:
reputationMetricsEnabled: false
sendingOptions:
sendingEnabled: true
suppressionOptions:
suppressedReasons:
- BOUNCE
- COMPLAINT
trackingOptions:
customRedirectDomain: example.com
Create ConfigurationSet Resource
new ConfigurationSet(name: string, args: ConfigurationSetArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration_set_name: Optional[str] = None,
delivery_options: Optional[ConfigurationSetDeliveryOptionsArgs] = None,
reputation_options: Optional[ConfigurationSetReputationOptionsArgs] = None,
sending_options: Optional[ConfigurationSetSendingOptionsArgs] = None,
suppression_options: Optional[ConfigurationSetSuppressionOptionsArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tracking_options: Optional[ConfigurationSetTrackingOptionsArgs] = None,
vdm_options: Optional[ConfigurationSetVdmOptionsArgs] = None)
@overload
def ConfigurationSet(resource_name: str,
args: ConfigurationSetArgs,
opts: Optional[ResourceOptions] = None)
func NewConfigurationSet(ctx *Context, name string, args ConfigurationSetArgs, opts ...ResourceOption) (*ConfigurationSet, error)
public ConfigurationSet(string name, ConfigurationSetArgs args, CustomResourceOptions? opts = null)
public ConfigurationSet(String name, ConfigurationSetArgs args)
public ConfigurationSet(String name, ConfigurationSetArgs args, CustomResourceOptions options)
type: aws:sesv2:ConfigurationSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConfigurationSetArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConfigurationSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationSetArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
ConfigurationSet Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ConfigurationSet resource accepts the following input properties:
- Configuration
Set stringName The name of the configuration set.
- Delivery
Options ConfigurationSet Delivery Options An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- Reputation
Options ConfigurationSet Reputation Options An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- Sending
Options ConfigurationSet Sending Options An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- Suppression
Options ConfigurationSet Suppression Options An object that contains information about the suppression list preferences for your account.
- Dictionary<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.- Tracking
Options ConfigurationSet Tracking Options An object that defines the open and click tracking options for emails that you send using the configuration set.
- Vdm
Options ConfigurationSet Vdm Options An object that defines the VDM settings that apply to emails that you send using the configuration set.
- Configuration
Set stringName The name of the configuration set.
- Delivery
Options ConfigurationSet Delivery Options Args An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- Reputation
Options ConfigurationSet Reputation Options Args An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- Sending
Options ConfigurationSet Sending Options Args An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- Suppression
Options ConfigurationSet Suppression Options Args An object that contains information about the suppression list preferences for your account.
- 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.- Tracking
Options ConfigurationSet Tracking Options Args An object that defines the open and click tracking options for emails that you send using the configuration set.
- Vdm
Options ConfigurationSet Vdm Options Args An object that defines the VDM settings that apply to emails that you send using the configuration set.
- configuration
Set StringName The name of the configuration set.
- delivery
Options ConfigurationSet Delivery Options An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation
Options ConfigurationSet Reputation Options An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending
Options ConfigurationSet Sending Options An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression
Options ConfigurationSet Suppression Options An object that contains information about the suppression list preferences for your account.
- 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.- tracking
Options ConfigurationSet Tracking Options An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm
Options ConfigurationSet Vdm Options An object that defines the VDM settings that apply to emails that you send using the configuration set.
- configuration
Set stringName The name of the configuration set.
- delivery
Options ConfigurationSet Delivery Options An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation
Options ConfigurationSet Reputation Options An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending
Options ConfigurationSet Sending Options An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression
Options ConfigurationSet Suppression Options An object that contains information about the suppression list preferences for your account.
- {[key: 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.- tracking
Options ConfigurationSet Tracking Options An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm
Options ConfigurationSet Vdm Options An object that defines the VDM settings that apply to emails that you send using the configuration set.
- configuration_
set_ strname The name of the configuration set.
- delivery_
options ConfigurationSet Delivery Options Args An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation_
options ConfigurationSet Reputation Options Args An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending_
options ConfigurationSet Sending Options Args An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression_
options ConfigurationSet Suppression Options Args An object that contains information about the suppression list preferences for your account.
- Mapping[str, str]
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.- tracking_
options ConfigurationSet Tracking Options Args An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm_
options ConfigurationSet Vdm Options Args An object that defines the VDM settings that apply to emails that you send using the configuration set.
- configuration
Set StringName The name of the configuration set.
- delivery
Options Property Map An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation
Options Property Map An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending
Options Property Map An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression
Options Property Map An object that contains information about the suppression list preferences for your account.
- Map<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.- tracking
Options Property Map An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm
Options Property Map An object that defines the VDM settings that apply to emails that you send using the configuration set.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationSet resource produces the following output properties:
Look up Existing ConfigurationSet Resource
Get an existing ConfigurationSet resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConfigurationSetState, opts?: CustomResourceOptions): ConfigurationSet
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
configuration_set_name: Optional[str] = None,
delivery_options: Optional[ConfigurationSetDeliveryOptionsArgs] = None,
reputation_options: Optional[ConfigurationSetReputationOptionsArgs] = None,
sending_options: Optional[ConfigurationSetSendingOptionsArgs] = None,
suppression_options: Optional[ConfigurationSetSuppressionOptionsArgs] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
tracking_options: Optional[ConfigurationSetTrackingOptionsArgs] = None,
vdm_options: Optional[ConfigurationSetVdmOptionsArgs] = None) -> ConfigurationSet
func GetConfigurationSet(ctx *Context, name string, id IDInput, state *ConfigurationSetState, opts ...ResourceOption) (*ConfigurationSet, error)
public static ConfigurationSet Get(string name, Input<string> id, ConfigurationSetState? state, CustomResourceOptions? opts = null)
public static ConfigurationSet get(String name, Output<String> id, ConfigurationSetState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
ARN of the Configuration Set.
- Configuration
Set stringName The name of the configuration set.
- Delivery
Options ConfigurationSet Delivery Options An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- Reputation
Options ConfigurationSet Reputation Options An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- Sending
Options ConfigurationSet Sending Options An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- Suppression
Options ConfigurationSet Suppression Options An object that contains information about the suppression list preferences for your account.
- Dictionary<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.- Dictionary<string, string>
Please use
tags
instead.- Tracking
Options ConfigurationSet Tracking Options An object that defines the open and click tracking options for emails that you send using the configuration set.
- Vdm
Options ConfigurationSet Vdm Options An object that defines the VDM settings that apply to emails that you send using the configuration set.
- Arn string
ARN of the Configuration Set.
- Configuration
Set stringName The name of the configuration set.
- Delivery
Options ConfigurationSet Delivery Options Args An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- Reputation
Options ConfigurationSet Reputation Options Args An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- Sending
Options ConfigurationSet Sending Options Args An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- Suppression
Options ConfigurationSet Suppression Options Args An object that contains information about the suppression list preferences for your account.
- 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.- map[string]string
Please use
tags
instead.- Tracking
Options ConfigurationSet Tracking Options Args An object that defines the open and click tracking options for emails that you send using the configuration set.
- Vdm
Options ConfigurationSet Vdm Options Args An object that defines the VDM settings that apply to emails that you send using the configuration set.
- arn String
ARN of the Configuration Set.
- configuration
Set StringName The name of the configuration set.
- delivery
Options ConfigurationSet Delivery Options An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation
Options ConfigurationSet Reputation Options An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending
Options ConfigurationSet Sending Options An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression
Options ConfigurationSet Suppression Options An object that contains information about the suppression list preferences for your account.
- 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.- Map<String,String>
Please use
tags
instead.- tracking
Options ConfigurationSet Tracking Options An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm
Options ConfigurationSet Vdm Options An object that defines the VDM settings that apply to emails that you send using the configuration set.
- arn string
ARN of the Configuration Set.
- configuration
Set stringName The name of the configuration set.
- delivery
Options ConfigurationSet Delivery Options An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation
Options ConfigurationSet Reputation Options An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending
Options ConfigurationSet Sending Options An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression
Options ConfigurationSet Suppression Options An object that contains information about the suppression list preferences for your account.
- {[key: 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.- {[key: string]: string}
Please use
tags
instead.- tracking
Options ConfigurationSet Tracking Options An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm
Options ConfigurationSet Vdm Options An object that defines the VDM settings that apply to emails that you send using the configuration set.
- arn str
ARN of the Configuration Set.
- configuration_
set_ strname The name of the configuration set.
- delivery_
options ConfigurationSet Delivery Options Args An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation_
options ConfigurationSet Reputation Options Args An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending_
options ConfigurationSet Sending Options Args An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression_
options ConfigurationSet Suppression Options Args An object that contains information about the suppression list preferences for your account.
- Mapping[str, str]
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.- Mapping[str, str]
Please use
tags
instead.- tracking_
options ConfigurationSet Tracking Options Args An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm_
options ConfigurationSet Vdm Options Args An object that defines the VDM settings that apply to emails that you send using the configuration set.
- arn String
ARN of the Configuration Set.
- configuration
Set StringName The name of the configuration set.
- delivery
Options Property Map An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
- reputation
Options Property Map An object that defines whether or not Amazon SES collects reputation metrics for the emails that you send that use the configuration set.
- sending
Options Property Map An object that defines whether or not Amazon SES can send email that you send using the configuration set.
- suppression
Options Property Map An object that contains information about the suppression list preferences for your account.
- Map<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.- Map<String>
Please use
tags
instead.- tracking
Options Property Map An object that defines the open and click tracking options for emails that you send using the configuration set.
- vdm
Options Property Map An object that defines the VDM settings that apply to emails that you send using the configuration set.
Supporting Types
ConfigurationSetDeliveryOptions, ConfigurationSetDeliveryOptionsArgs
- Sending
Pool stringName The name of the dedicated IP pool to associate with the configuration set.
- Tls
Policy string Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). Valid values:
REQUIRE
,OPTIONAL
.
- Sending
Pool stringName The name of the dedicated IP pool to associate with the configuration set.
- Tls
Policy string Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). Valid values:
REQUIRE
,OPTIONAL
.
- sending
Pool StringName The name of the dedicated IP pool to associate with the configuration set.
- tls
Policy String Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). Valid values:
REQUIRE
,OPTIONAL
.
- sending
Pool stringName The name of the dedicated IP pool to associate with the configuration set.
- tls
Policy string Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). Valid values:
REQUIRE
,OPTIONAL
.
- sending_
pool_ strname The name of the dedicated IP pool to associate with the configuration set.
- tls_
policy str Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). Valid values:
REQUIRE
,OPTIONAL
.
- sending
Pool StringName The name of the dedicated IP pool to associate with the configuration set.
- tls
Policy String Specifies whether messages that use the configuration set are required to use Transport Layer Security (TLS). Valid values:
REQUIRE
,OPTIONAL
.
ConfigurationSetReputationOptions, ConfigurationSetReputationOptionsArgs
- Last
Fresh stringStart The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
- Reputation
Metrics boolEnabled If
true
, tracking of reputation metrics is enabled for the configuration set. Iffalse
, tracking of reputation metrics is disabled for the configuration set.
- Last
Fresh stringStart The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
- Reputation
Metrics boolEnabled If
true
, tracking of reputation metrics is enabled for the configuration set. Iffalse
, tracking of reputation metrics is disabled for the configuration set.
- last
Fresh StringStart The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
- reputation
Metrics BooleanEnabled If
true
, tracking of reputation metrics is enabled for the configuration set. Iffalse
, tracking of reputation metrics is disabled for the configuration set.
- last
Fresh stringStart The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
- reputation
Metrics booleanEnabled If
true
, tracking of reputation metrics is enabled for the configuration set. Iffalse
, tracking of reputation metrics is disabled for the configuration set.
- last_
fresh_ strstart The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
- reputation_
metrics_ boolenabled If
true
, tracking of reputation metrics is enabled for the configuration set. Iffalse
, tracking of reputation metrics is disabled for the configuration set.
- last
Fresh StringStart The date and time (in Unix time) when the reputation metrics were last given a fresh start. When your account is given a fresh start, your reputation metrics are calculated starting from the date of the fresh start.
- reputation
Metrics BooleanEnabled If
true
, tracking of reputation metrics is enabled for the configuration set. Iffalse
, tracking of reputation metrics is disabled for the configuration set.
ConfigurationSetSendingOptions, ConfigurationSetSendingOptionsArgs
- Sending
Enabled bool If
true
, email sending is enabled for the configuration set. Iffalse
, email sending is disabled for the configuration set.
- Sending
Enabled bool If
true
, email sending is enabled for the configuration set. Iffalse
, email sending is disabled for the configuration set.
- sending
Enabled Boolean If
true
, email sending is enabled for the configuration set. Iffalse
, email sending is disabled for the configuration set.
- sending
Enabled boolean If
true
, email sending is enabled for the configuration set. Iffalse
, email sending is disabled for the configuration set.
- sending_
enabled bool If
true
, email sending is enabled for the configuration set. Iffalse
, email sending is disabled for the configuration set.
- sending
Enabled Boolean If
true
, email sending is enabled for the configuration set. Iffalse
, email sending is disabled for the configuration set.
ConfigurationSetSuppressionOptions, ConfigurationSetSuppressionOptionsArgs
- Suppressed
Reasons List<string> A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values:
BOUNCE
,COMPLAINT
.
- Suppressed
Reasons []string A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values:
BOUNCE
,COMPLAINT
.
- suppressed
Reasons List<String> A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values:
BOUNCE
,COMPLAINT
.
- suppressed
Reasons string[] A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values:
BOUNCE
,COMPLAINT
.
- suppressed_
reasons Sequence[str] A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values:
BOUNCE
,COMPLAINT
.
- suppressed
Reasons List<String> A list that contains the reasons that email addresses are automatically added to the suppression list for your account. Valid values:
BOUNCE
,COMPLAINT
.
ConfigurationSetTrackingOptions, ConfigurationSetTrackingOptionsArgs
- Custom
Redirect stringDomain The domain to use for tracking open and click events.
- Custom
Redirect stringDomain The domain to use for tracking open and click events.
- custom
Redirect StringDomain The domain to use for tracking open and click events.
- custom
Redirect stringDomain The domain to use for tracking open and click events.
- custom_
redirect_ strdomain The domain to use for tracking open and click events.
- custom
Redirect StringDomain The domain to use for tracking open and click events.
ConfigurationSetVdmOptions, ConfigurationSetVdmOptionsArgs
- Dashboard
Options ConfigurationSet Vdm Options Dashboard Options Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- Guardian
Options ConfigurationSet Vdm Options Guardian Options Specifies additional settings for your VDM configuration as applicable to the Guardian.
- Dashboard
Options ConfigurationSet Vdm Options Dashboard Options Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- Guardian
Options ConfigurationSet Vdm Options Guardian Options Specifies additional settings for your VDM configuration as applicable to the Guardian.
- dashboard
Options ConfigurationSet Vdm Options Dashboard Options Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- guardian
Options ConfigurationSet Vdm Options Guardian Options Specifies additional settings for your VDM configuration as applicable to the Guardian.
- dashboard
Options ConfigurationSet Vdm Options Dashboard Options Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- guardian
Options ConfigurationSet Vdm Options Guardian Options Specifies additional settings for your VDM configuration as applicable to the Guardian.
- dashboard_
options ConfigurationSet Vdm Options Dashboard Options Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- guardian_
options ConfigurationSet Vdm Options Guardian Options Specifies additional settings for your VDM configuration as applicable to the Guardian.
- dashboard
Options Property Map Specifies additional settings for your VDM configuration as applicable to the Dashboard.
- guardian
Options Property Map Specifies additional settings for your VDM configuration as applicable to the Guardian.
ConfigurationSetVdmOptionsDashboardOptions, ConfigurationSetVdmOptionsDashboardOptionsArgs
- Engagement
Metrics string Specifies the status of your VDM engagement metrics collection. Valid values:
ENABLED
,DISABLED
.
- Engagement
Metrics string Specifies the status of your VDM engagement metrics collection. Valid values:
ENABLED
,DISABLED
.
- engagement
Metrics String Specifies the status of your VDM engagement metrics collection. Valid values:
ENABLED
,DISABLED
.
- engagement
Metrics string Specifies the status of your VDM engagement metrics collection. Valid values:
ENABLED
,DISABLED
.
- engagement_
metrics str Specifies the status of your VDM engagement metrics collection. Valid values:
ENABLED
,DISABLED
.
- engagement
Metrics String Specifies the status of your VDM engagement metrics collection. Valid values:
ENABLED
,DISABLED
.
ConfigurationSetVdmOptionsGuardianOptions, ConfigurationSetVdmOptionsGuardianOptionsArgs
- string
Specifies the status of your VDM optimized shared delivery. Valid values:
ENABLED
,DISABLED
.
- string
Specifies the status of your VDM optimized shared delivery. Valid values:
ENABLED
,DISABLED
.
- String
Specifies the status of your VDM optimized shared delivery. Valid values:
ENABLED
,DISABLED
.
- string
Specifies the status of your VDM optimized shared delivery. Valid values:
ENABLED
,DISABLED
.
- str
Specifies the status of your VDM optimized shared delivery. Valid values:
ENABLED
,DISABLED
.
- String
Specifies the status of your VDM optimized shared delivery. Valid values:
ENABLED
,DISABLED
.
Import
Using pulumi import
, import SESv2 (Simple Email V2) Configuration Set using the configuration_set_name
. For example:
$ pulumi import aws:sesv2/configurationSet:ConfigurationSet example example
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.