Show / Hide Table of Contents

Class Configuration

Tenancy level customer email configuration details.

Inheritance
object
Configuration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.EmailService.Models
Assembly: OCI.DotNetSDK.Email.dll
Syntax
public class Configuration

Properties

CompartmentId

Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The root compartment OCID (same as the tenancy OCID)

Remarks

Required

HttpSubmitEndpoint

Declaration
[Required(ErrorMessage = "HttpSubmitEndpoint is required.")]
[JsonProperty(PropertyName = "httpSubmitEndpoint")]
public string HttpSubmitEndpoint { get; set; }
Property Value
Type Description
string

Endpoint used to submit emails via the HTTP email submission API

Remarks

Required

SmtpSubmitEndpoint

Declaration
[Required(ErrorMessage = "SmtpSubmitEndpoint is required.")]
[JsonProperty(PropertyName = "smtpSubmitEndpoint")]
public string SmtpSubmitEndpoint { get; set; }
Property Value
Type Description
string

Endpoint used to submit emails via the standard SMTP submission protocol. Note that TLS 1.2 and standard SMTP authentication is required for submission.

Remarks

Required

In this article
Back to top