1. Packages
  2. AWS
  3. API Docs
  4. ses
  5. ConfigurationSet
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.ses.ConfigurationSet

Explore with Pulumi AI

Provides an SES configuration set resource.

Example Usage

Basic Example

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const test = new aws.ses.ConfigurationSet("test", {name: "some-configuration-set-test"});
Copy
import pulumi
import pulumi_aws as aws

test = aws.ses.ConfigurationSet("test", name="some-configuration-set-test")
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ses"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ses.NewConfigurationSet(ctx, "test", &ses.ConfigurationSetArgs{
			Name: pulumi.String("some-configuration-set-test"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var test = new Aws.Ses.ConfigurationSet("test", new()
    {
        Name = "some-configuration-set-test",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ses.ConfigurationSet;
import com.pulumi.aws.ses.ConfigurationSetArgs;
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 test = new ConfigurationSet("test", ConfigurationSetArgs.builder()
            .name("some-configuration-set-test")
            .build());

    }
}
Copy
resources:
  test:
    type: aws:ses:ConfigurationSet
    properties:
      name: some-configuration-set-test
Copy

Require TLS Connections

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const test = new aws.ses.ConfigurationSet("test", {
    name: "some-configuration-set-test",
    deliveryOptions: {
        tlsPolicy: "Require",
    },
});
Copy
import pulumi
import pulumi_aws as aws

test = aws.ses.ConfigurationSet("test",
    name="some-configuration-set-test",
    delivery_options={
        "tls_policy": "Require",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ses"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ses.NewConfigurationSet(ctx, "test", &ses.ConfigurationSetArgs{
			Name: pulumi.String("some-configuration-set-test"),
			DeliveryOptions: &ses.ConfigurationSetDeliveryOptionsArgs{
				TlsPolicy: pulumi.String("Require"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var test = new Aws.Ses.ConfigurationSet("test", new()
    {
        Name = "some-configuration-set-test",
        DeliveryOptions = new Aws.Ses.Inputs.ConfigurationSetDeliveryOptionsArgs
        {
            TlsPolicy = "Require",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ses.ConfigurationSet;
import com.pulumi.aws.ses.ConfigurationSetArgs;
import com.pulumi.aws.ses.inputs.ConfigurationSetDeliveryOptionsArgs;
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 test = new ConfigurationSet("test", ConfigurationSetArgs.builder()
            .name("some-configuration-set-test")
            .deliveryOptions(ConfigurationSetDeliveryOptionsArgs.builder()
                .tlsPolicy("Require")
                .build())
            .build());

    }
}
Copy
resources:
  test:
    type: aws:ses:ConfigurationSet
    properties:
      name: some-configuration-set-test
      deliveryOptions:
        tlsPolicy: Require
Copy

Tracking Options

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const test = new aws.ses.ConfigurationSet("test", {
    name: "some-configuration-set-test",
    trackingOptions: {
        customRedirectDomain: "sub.example.com",
    },
});
Copy
import pulumi
import pulumi_aws as aws

test = aws.ses.ConfigurationSet("test",
    name="some-configuration-set-test",
    tracking_options={
        "custom_redirect_domain": "sub.example.com",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ses"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ses.NewConfigurationSet(ctx, "test", &ses.ConfigurationSetArgs{
			Name: pulumi.String("some-configuration-set-test"),
			TrackingOptions: &ses.ConfigurationSetTrackingOptionsArgs{
				CustomRedirectDomain: pulumi.String("sub.example.com"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var test = new Aws.Ses.ConfigurationSet("test", new()
    {
        Name = "some-configuration-set-test",
        TrackingOptions = new Aws.Ses.Inputs.ConfigurationSetTrackingOptionsArgs
        {
            CustomRedirectDomain = "sub.example.com",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ses.ConfigurationSet;
import com.pulumi.aws.ses.ConfigurationSetArgs;
import com.pulumi.aws.ses.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 test = new ConfigurationSet("test", ConfigurationSetArgs.builder()
            .name("some-configuration-set-test")
            .trackingOptions(ConfigurationSetTrackingOptionsArgs.builder()
                .customRedirectDomain("sub.example.com")
                .build())
            .build());

    }
}
Copy
resources:
  test:
    type: aws:ses:ConfigurationSet
    properties:
      name: some-configuration-set-test
      trackingOptions:
        customRedirectDomain: sub.example.com
Copy

Create ConfigurationSet Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ConfigurationSet(name: string, args?: ConfigurationSetArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationSet(resource_name: str,
                     args: Optional[ConfigurationSetArgs] = None,
                     opts: Optional[ResourceOptions] = None)

@overload
def ConfigurationSet(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     delivery_options: Optional[ConfigurationSetDeliveryOptionsArgs] = None,
                     name: Optional[str] = None,
                     reputation_metrics_enabled: Optional[bool] = None,
                     sending_enabled: Optional[bool] = None,
                     tracking_options: Optional[ConfigurationSetTrackingOptionsArgs] = None)
func NewConfigurationSet(ctx *Context, name string, args *ConfigurationSetArgs, opts ...ResourceOption) (*ConfigurationSet, error)
public ConfigurationSet(string name, ConfigurationSetArgs? args = null, CustomResourceOptions? opts = null)
public ConfigurationSet(String name, ConfigurationSetArgs args)
public ConfigurationSet(String name, ConfigurationSetArgs args, CustomResourceOptions options)
type: aws:ses:ConfigurationSet
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. ConfigurationSetArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var configurationSetResource = new Aws.Ses.ConfigurationSet("configurationSetResource", new()
{
    DeliveryOptions = new Aws.Ses.Inputs.ConfigurationSetDeliveryOptionsArgs
    {
        TlsPolicy = "string",
    },
    Name = "string",
    ReputationMetricsEnabled = false,
    SendingEnabled = false,
    TrackingOptions = new Aws.Ses.Inputs.ConfigurationSetTrackingOptionsArgs
    {
        CustomRedirectDomain = "string",
    },
});
Copy
example, err := ses.NewConfigurationSet(ctx, "configurationSetResource", &ses.ConfigurationSetArgs{
	DeliveryOptions: &ses.ConfigurationSetDeliveryOptionsArgs{
		TlsPolicy: pulumi.String("string"),
	},
	Name:                     pulumi.String("string"),
	ReputationMetricsEnabled: pulumi.Bool(false),
	SendingEnabled:           pulumi.Bool(false),
	TrackingOptions: &ses.ConfigurationSetTrackingOptionsArgs{
		CustomRedirectDomain: pulumi.String("string"),
	},
})
Copy
var configurationSetResource = new ConfigurationSet("configurationSetResource", ConfigurationSetArgs.builder()
    .deliveryOptions(ConfigurationSetDeliveryOptionsArgs.builder()
        .tlsPolicy("string")
        .build())
    .name("string")
    .reputationMetricsEnabled(false)
    .sendingEnabled(false)
    .trackingOptions(ConfigurationSetTrackingOptionsArgs.builder()
        .customRedirectDomain("string")
        .build())
    .build());
Copy
configuration_set_resource = aws.ses.ConfigurationSet("configurationSetResource",
    delivery_options={
        "tls_policy": "string",
    },
    name="string",
    reputation_metrics_enabled=False,
    sending_enabled=False,
    tracking_options={
        "custom_redirect_domain": "string",
    })
Copy
const configurationSetResource = new aws.ses.ConfigurationSet("configurationSetResource", {
    deliveryOptions: {
        tlsPolicy: "string",
    },
    name: "string",
    reputationMetricsEnabled: false,
    sendingEnabled: false,
    trackingOptions: {
        customRedirectDomain: "string",
    },
});
Copy
type: aws:ses:ConfigurationSet
properties:
    deliveryOptions:
        tlsPolicy: string
    name: string
    reputationMetricsEnabled: false
    sendingEnabled: false
    trackingOptions:
        customRedirectDomain: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ConfigurationSet resource accepts the following input properties:

DeliveryOptions ConfigurationSetDeliveryOptions
Whether messages that use the configuration set are required to use TLS. See below.
Name Changes to this property will trigger replacement. string

Name of the configuration set.

The following argument is optional:

ReputationMetricsEnabled bool
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
SendingEnabled bool
Whether email sending is enabled or disabled for the configuration set. The default value is true.
TrackingOptions ConfigurationSetTrackingOptions
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
DeliveryOptions ConfigurationSetDeliveryOptionsArgs
Whether messages that use the configuration set are required to use TLS. See below.
Name Changes to this property will trigger replacement. string

Name of the configuration set.

The following argument is optional:

ReputationMetricsEnabled bool
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
SendingEnabled bool
Whether email sending is enabled or disabled for the configuration set. The default value is true.
TrackingOptions ConfigurationSetTrackingOptionsArgs
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
deliveryOptions ConfigurationSetDeliveryOptions
Whether messages that use the configuration set are required to use TLS. See below.
name Changes to this property will trigger replacement. String

Name of the configuration set.

The following argument is optional:

reputationMetricsEnabled Boolean
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sendingEnabled Boolean
Whether email sending is enabled or disabled for the configuration set. The default value is true.
trackingOptions ConfigurationSetTrackingOptions
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
deliveryOptions ConfigurationSetDeliveryOptions
Whether messages that use the configuration set are required to use TLS. See below.
name Changes to this property will trigger replacement. string

Name of the configuration set.

The following argument is optional:

reputationMetricsEnabled boolean
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sendingEnabled boolean
Whether email sending is enabled or disabled for the configuration set. The default value is true.
trackingOptions ConfigurationSetTrackingOptions
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
delivery_options ConfigurationSetDeliveryOptionsArgs
Whether messages that use the configuration set are required to use TLS. See below.
name Changes to this property will trigger replacement. str

Name of the configuration set.

The following argument is optional:

reputation_metrics_enabled bool
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sending_enabled bool
Whether email sending is enabled or disabled for the configuration set. The default value is true.
tracking_options ConfigurationSetTrackingOptionsArgs
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
deliveryOptions Property Map
Whether messages that use the configuration set are required to use TLS. See below.
name Changes to this property will trigger replacement. String

Name of the configuration set.

The following argument is optional:

reputationMetricsEnabled Boolean
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sendingEnabled Boolean
Whether email sending is enabled or disabled for the configuration set. The default value is true.
trackingOptions Property Map
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.

Outputs

All input properties are implicitly available as output properties. Additionally, the ConfigurationSet resource produces the following output properties:

Arn string
SES configuration set ARN.
Id string
The provider-assigned unique ID for this managed resource.
LastFreshStart string
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
Arn string
SES configuration set ARN.
Id string
The provider-assigned unique ID for this managed resource.
LastFreshStart string
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
arn String
SES configuration set ARN.
id String
The provider-assigned unique ID for this managed resource.
lastFreshStart String
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
arn string
SES configuration set ARN.
id string
The provider-assigned unique ID for this managed resource.
lastFreshStart string
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
arn str
SES configuration set ARN.
id str
The provider-assigned unique ID for this managed resource.
last_fresh_start str
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
arn String
SES configuration set ARN.
id String
The provider-assigned unique ID for this managed resource.
lastFreshStart String
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.

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,
        delivery_options: Optional[ConfigurationSetDeliveryOptionsArgs] = None,
        last_fresh_start: Optional[str] = None,
        name: Optional[str] = None,
        reputation_metrics_enabled: Optional[bool] = None,
        sending_enabled: Optional[bool] = None,
        tracking_options: Optional[ConfigurationSetTrackingOptionsArgs] = 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)
resources:  _:    type: aws:ses:ConfigurationSet    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Arn string
SES configuration set ARN.
DeliveryOptions ConfigurationSetDeliveryOptions
Whether messages that use the configuration set are required to use TLS. See below.
LastFreshStart string
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
Name Changes to this property will trigger replacement. string

Name of the configuration set.

The following argument is optional:

ReputationMetricsEnabled bool
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
SendingEnabled bool
Whether email sending is enabled or disabled for the configuration set. The default value is true.
TrackingOptions ConfigurationSetTrackingOptions
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
Arn string
SES configuration set ARN.
DeliveryOptions ConfigurationSetDeliveryOptionsArgs
Whether messages that use the configuration set are required to use TLS. See below.
LastFreshStart string
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
Name Changes to this property will trigger replacement. string

Name of the configuration set.

The following argument is optional:

ReputationMetricsEnabled bool
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
SendingEnabled bool
Whether email sending is enabled or disabled for the configuration set. The default value is true.
TrackingOptions ConfigurationSetTrackingOptionsArgs
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
arn String
SES configuration set ARN.
deliveryOptions ConfigurationSetDeliveryOptions
Whether messages that use the configuration set are required to use TLS. See below.
lastFreshStart String
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
name Changes to this property will trigger replacement. String

Name of the configuration set.

The following argument is optional:

reputationMetricsEnabled Boolean
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sendingEnabled Boolean
Whether email sending is enabled or disabled for the configuration set. The default value is true.
trackingOptions ConfigurationSetTrackingOptions
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
arn string
SES configuration set ARN.
deliveryOptions ConfigurationSetDeliveryOptions
Whether messages that use the configuration set are required to use TLS. See below.
lastFreshStart string
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
name Changes to this property will trigger replacement. string

Name of the configuration set.

The following argument is optional:

reputationMetricsEnabled boolean
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sendingEnabled boolean
Whether email sending is enabled or disabled for the configuration set. The default value is true.
trackingOptions ConfigurationSetTrackingOptions
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
arn str
SES configuration set ARN.
delivery_options ConfigurationSetDeliveryOptionsArgs
Whether messages that use the configuration set are required to use TLS. See below.
last_fresh_start str
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
name Changes to this property will trigger replacement. str

Name of the configuration set.

The following argument is optional:

reputation_metrics_enabled bool
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sending_enabled bool
Whether email sending is enabled or disabled for the configuration set. The default value is true.
tracking_options ConfigurationSetTrackingOptionsArgs
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
arn String
SES configuration set ARN.
deliveryOptions Property Map
Whether messages that use the configuration set are required to use TLS. See below.
lastFreshStart String
Date and time at which the reputation metrics for the configuration set were last reset. Resetting these metrics is known as a fresh start.
name Changes to this property will trigger replacement. String

Name of the configuration set.

The following argument is optional:

reputationMetricsEnabled Boolean
Whether or not Amazon SES publishes reputation metrics for the configuration set, such as bounce and complaint rates, to Amazon CloudWatch. The default value is false.
sendingEnabled Boolean
Whether email sending is enabled or disabled for the configuration set. The default value is true.
trackingOptions Property Map
Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.

Supporting Types

ConfigurationSetDeliveryOptions
, ConfigurationSetDeliveryOptionsArgs

TlsPolicy string
Whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is Require, messages are only delivered if a TLS connection can be established. If the value is Optional, messages can be delivered in plain text if a TLS connection can't be established. Valid values: Require or Optional. Defaults to Optional.
TlsPolicy string
Whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is Require, messages are only delivered if a TLS connection can be established. If the value is Optional, messages can be delivered in plain text if a TLS connection can't be established. Valid values: Require or Optional. Defaults to Optional.
tlsPolicy String
Whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is Require, messages are only delivered if a TLS connection can be established. If the value is Optional, messages can be delivered in plain text if a TLS connection can't be established. Valid values: Require or Optional. Defaults to Optional.
tlsPolicy string
Whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is Require, messages are only delivered if a TLS connection can be established. If the value is Optional, messages can be delivered in plain text if a TLS connection can't be established. Valid values: Require or Optional. Defaults to Optional.
tls_policy str
Whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is Require, messages are only delivered if a TLS connection can be established. If the value is Optional, messages can be delivered in plain text if a TLS connection can't be established. Valid values: Require or Optional. Defaults to Optional.
tlsPolicy String
Whether messages that use the configuration set are required to use Transport Layer Security (TLS). If the value is Require, messages are only delivered if a TLS connection can be established. If the value is Optional, messages can be delivered in plain text if a TLS connection can't be established. Valid values: Require or Optional. Defaults to Optional.

ConfigurationSetTrackingOptions
, ConfigurationSetTrackingOptionsArgs

CustomRedirectDomain string
Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
CustomRedirectDomain string
Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
customRedirectDomain String
Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
customRedirectDomain string
Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
custom_redirect_domain str
Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
customRedirectDomain String
Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.

Import

Using pulumi import, import SES Configuration Sets using their name. For example:

$ pulumi import aws:ses/configurationSet:ConfigurationSet test some-configuration-set-test
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.