1. Packages
  2. AWS Classic
  3. API Docs
  4. ses
  5. ConfigurationSet

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.ses.ConfigurationSet

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    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"});
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.ses.ConfigurationSet("test", name="some-configuration-set-test")
    
    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
    	})
    }
    
    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",
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      test:
        type: aws:ses:ConfigurationSet
        properties:
          name: some-configuration-set-test
    

    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",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.ses.ConfigurationSet("test",
        name="some-configuration-set-test",
        delivery_options=aws.ses.ConfigurationSetDeliveryOptionsArgs(
            tls_policy="Require",
        ))
    
    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
    	})
    }
    
    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",
            },
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      test:
        type: aws:ses:ConfigurationSet
        properties:
          name: some-configuration-set-test
          deliveryOptions:
            tlsPolicy: Require
    

    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",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.ses.ConfigurationSet("test",
        name="some-configuration-set-test",
        tracking_options=aws.ses.ConfigurationSetTrackingOptionsArgs(
            custom_redirect_domain="sub.example.com",
        ))
    
    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
    	})
    }
    
    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",
            },
        });
    
    });
    
    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());
    
        }
    }
    
    resources:
      test:
        type: aws:ses:ConfigurationSet
        properties:
          name: some-configuration-set-test
          trackingOptions:
            customRedirectDomain: sub.example.com
    

    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 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.

    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",
        },
    });
    
    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"),
    	},
    })
    
    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());
    
    configuration_set_resource = aws.ses.ConfigurationSet("configurationSetResource",
        delivery_options=aws.ses.ConfigurationSetDeliveryOptionsArgs(
            tls_policy="string",
        ),
        name="string",
        reputation_metrics_enabled=False,
        sending_enabled=False,
        tracking_options=aws.ses.ConfigurationSetTrackingOptionsArgs(
            custom_redirect_domain="string",
        ))
    
    const configurationSetResource = new aws.ses.ConfigurationSet("configurationSetResource", {
        deliveryOptions: {
            tlsPolicy: "string",
        },
        name: "string",
        reputationMetricsEnabled: false,
        sendingEnabled: false,
        trackingOptions: {
            customRedirectDomain: "string",
        },
    });
    
    type: aws:ses:ConfigurationSet
    properties:
        deliveryOptions:
            tlsPolicy: string
        name: string
        reputationMetricsEnabled: false
        sendingEnabled: false
        trackingOptions:
            customRedirectDomain: string
    

    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:

    DeliveryOptions ConfigurationSetDeliveryOptions
    Whether messages that use the configuration set are required to use TLS. See below.
    Name 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 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 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 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 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 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)
    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.
    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 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 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 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 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 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 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
    

    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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi