Try AWS Native preview for resources not in the classic version.
aws.ses.ConfigurationSet
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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={
"tlsPolicy": "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={
"customRedirectDomain": "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.
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",
},
});
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={
"tlsPolicy": "string",
},
name="string",
reputation_metrics_enabled=False,
sending_enabled=False,
tracking_options={
"customRedirectDomain": "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:
- Delivery
Options ConfigurationSet Delivery Options - 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:
- Reputation
Metrics boolEnabled - 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 ConfigurationSet Tracking Options - Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
- Delivery
Options ConfigurationSet Delivery Options Args - 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:
- Reputation
Metrics boolEnabled - 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 ConfigurationSet Tracking Options Args - Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
- delivery
Options ConfigurationSet Delivery Options - 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:
- reputation
Metrics BooleanEnabled - 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 Boolean - Whether email sending is enabled or disabled for the configuration set. The default value is
true
. - tracking
Options ConfigurationSet Tracking Options - Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
- delivery
Options ConfigurationSet Delivery Options - 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:
- reputation
Metrics booleanEnabled - 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 boolean - Whether email sending is enabled or disabled for the configuration set. The default value is
true
. - tracking
Options ConfigurationSet Tracking Options - Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
- delivery_
options ConfigurationSet Delivery Options Args - 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_ boolenabled - 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 ConfigurationSet Tracking Options Args - Domain that is used to redirect email recipients to an Amazon SES-operated domain. See below. NOTE: This functionality is best effort.
- delivery
Options 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:
- reputation
Metrics BooleanEnabled - 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 Boolean - Whether email sending is enabled or disabled for the configuration set. The default value is
true
. - tracking
Options 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.
- Last
Fresh stringStart - 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.
- Last
Fresh stringStart - 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.
- last
Fresh StringStart - 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.
- last
Fresh stringStart - 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_ strstart - 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.
- last
Fresh StringStart - 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.
- Arn string
- SES configuration set ARN.
- Delivery
Options ConfigurationSet Delivery Options - Whether messages that use the configuration set are required to use TLS. See below.
- Last
Fresh stringStart - 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:
- Reputation
Metrics boolEnabled - 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 ConfigurationSet Tracking Options - 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.
- Delivery
Options ConfigurationSet Delivery Options Args - Whether messages that use the configuration set are required to use TLS. See below.
- Last
Fresh stringStart - 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:
- Reputation
Metrics boolEnabled - 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 ConfigurationSet Tracking Options Args - 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.
- delivery
Options ConfigurationSet Delivery Options - Whether messages that use the configuration set are required to use TLS. See below.
- last
Fresh StringStart - 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:
- reputation
Metrics BooleanEnabled - 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 Boolean - Whether email sending is enabled or disabled for the configuration set. The default value is
true
. - tracking
Options ConfigurationSet Tracking Options - 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.
- delivery
Options ConfigurationSet Delivery Options - Whether messages that use the configuration set are required to use TLS. See below.
- last
Fresh stringStart - 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:
- reputation
Metrics booleanEnabled - 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 boolean - Whether email sending is enabled or disabled for the configuration set. The default value is
true
. - tracking
Options ConfigurationSet Tracking Options - 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 ConfigurationSet Delivery Options Args - Whether messages that use the configuration set are required to use TLS. See below.
- last_
fresh_ strstart - 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_ boolenabled - 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 ConfigurationSet Tracking Options Args - 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.
- delivery
Options Property Map - Whether messages that use the configuration set are required to use TLS. See below.
- last
Fresh StringStart - 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:
- reputation
Metrics BooleanEnabled - 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 Boolean - Whether email sending is enabled or disabled for the configuration set. The default value is
true
. - tracking
Options 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
- Tls
Policy 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 isOptional
, messages can be delivered in plain text if a TLS connection can't be established. Valid values:Require
orOptional
. Defaults toOptional
.
- Tls
Policy 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 isOptional
, messages can be delivered in plain text if a TLS connection can't be established. Valid values:Require
orOptional
. Defaults toOptional
.
- tls
Policy 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 isOptional
, messages can be delivered in plain text if a TLS connection can't be established. Valid values:Require
orOptional
. Defaults toOptional
.
- tls
Policy 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 isOptional
, messages can be delivered in plain text if a TLS connection can't be established. Valid values:Require
orOptional
. Defaults toOptional
.
- 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 isOptional
, messages can be delivered in plain text if a TLS connection can't be established. Valid values:Require
orOptional
. Defaults toOptional
.
- tls
Policy 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 isOptional
, messages can be delivered in plain text if a TLS connection can't be established. Valid values:Require
orOptional
. Defaults toOptional
.
ConfigurationSetTrackingOptions, ConfigurationSetTrackingOptionsArgs
- Custom
Redirect stringDomain - Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
- Custom
Redirect stringDomain - Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
- custom
Redirect StringDomain - Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
- custom
Redirect stringDomain - Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
- custom_
redirect_ strdomain - Custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain.
- custom
Redirect StringDomain - 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.
Try AWS Native preview for resources not in the classic version.