Class ConfigurationSet
A configuration set.
Inherited Members
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ConfigurationSet : Resource, IConfigurationSet, IResource
Syntax (vb)
Public Class ConfigurationSet
Inherits Resource
Implements IConfigurationSet, IResource
Remarks
ExampleMetadata: infused
Examples
IDedicatedIpPool myPool;
new ConfigurationSet(this, "ConfigurationSet", new ConfigurationSetProps {
CustomTrackingRedirectDomain = "track.cdk.dev",
SuppressionReasons = SuppressionReasons.COMPLAINTS_ONLY,
TlsPolicy = ConfigurationSetTlsPolicy.REQUIRE,
DedicatedIpPool = myPool
});
Synopsis
Constructors
ConfigurationSet(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
ConfigurationSet(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
ConfigurationSet(Construct, String, IConfigurationSetProps) |
Properties
ConfigurationSetName | The name of the configuration set. |
Methods
AddEventDestination(String, IConfigurationSetEventDestinationOptions) | Adds an event destination to this configuration set. |
FromConfigurationSetName(Construct, String, String) | Use an existing configuration set. |
Constructors
ConfigurationSet(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected ConfigurationSet(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
ConfigurationSet(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected ConfigurationSet(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
ConfigurationSet(Construct, String, IConfigurationSetProps)
public ConfigurationSet(Construct scope, string id, IConfigurationSetProps props = null)
Parameters
- scope Constructs.Construct
- id System.String
- props IConfigurationSetProps
Properties
ConfigurationSetName
The name of the configuration set.
public virtual string ConfigurationSetName { get; }
Property Value
System.String
Methods
AddEventDestination(String, IConfigurationSetEventDestinationOptions)
Adds an event destination to this configuration set.
public virtual ConfigurationSetEventDestination AddEventDestination(string id, IConfigurationSetEventDestinationOptions options)
Parameters
- id System.String
- options IConfigurationSetEventDestinationOptions
Returns
ConfigurationSetEventDestination
FromConfigurationSetName(Construct, String, String)
Use an existing configuration set.
public static IConfigurationSet FromConfigurationSetName(Construct scope, string id, string configurationSetName)
Parameters
- scope Constructs.Construct
- id System.String
- configurationSetName System.String
Returns
Implements
Constructs.IConstruct
Constructs.IDependable