Enum HttpsPolicy
HTTPS policy option for the protocol of the open and click tracking links for your custom redirect domain.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public enum HttpsPolicy
Syntax (vb)
Public Enum HttpsPolicy
Remarks
ExampleMetadata: infused
Examples
new ConfigurationSet(this, "ConfigurationSet", new ConfigurationSetProps {
CustomTrackingRedirectDomain = "track.cdk.dev",
CustomTrackingHttpsPolicy = HttpsPolicy.REQUIRE
});
Synopsis
Fields
OPTIONAL | Open tracking links will be wrapped using HTTP. |
REQUIRE | Open and Click tracking links will both be wrapped using HTTPS. |
REQUIRE_OPEN_ONLY | Open tracking links will be wrapped using HTTPS. |
Fields
Name | Description |
---|---|
OPTIONAL | Open tracking links will be wrapped using HTTP. |
REQUIRE | Open and Click tracking links will both be wrapped using HTTPS. |
REQUIRE_OPEN_ONLY | Open tracking links will be wrapped using HTTPS. |