你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
SendGridOutput 接口
public interface SendGridOutput
将此值放在其值将写入 SendGrid 的参数上。 参数类型应为 OutputBinding<T>,其中 T 可以是以下类型之一:
<li>
<p>Any native Java types such as int, String, byte[] </p>
</li>
<li>
<p>Any POJO type </p>
</li>
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
String |
apiKey()
定义要写入的 SendGrid 的 API 密钥。 |
String |
dataType()
定义 Functions 运行时应如何处理参数值。 可能的值为:
|
String |
from()
定义要写入的 SendGrid 的“FROM”名称。 |
String |
name()
function.json 中使用的变量名称。 |
String |
subject()
定义要写入的 SendGrid 电子邮件的主题。 |
String |
text()
定义要写入的 SendGrid 电子邮件的内容文本。 |
String |
to()
定义要写入的 SendGrid 的“TO”电子邮件。 |
方法详细信息
apiKey
public String apiKey()
定义要写入的 SendGrid 的 API 密钥。
Returns:
dataType
public String dataType() default ""
定义 Functions 运行时应如何处理参数值。 可能的值为:
<li>
<p>"" or string: treat it as a string whose value is serialized from the parameter </p>
</li>
<li>
<p>binary: treat it as a binary data whose value comes from for example OutputBinding<byte[]> </p>
</li>
Returns:
from
public String from()
定义要写入的 SendGrid 的“FROM”名称。
Returns:
name
public String name()
function.json 中使用的变量名称。
Returns:
subject
public String subject()
定义要写入的 SendGrid 电子邮件的主题。
Returns:
text
public String text()
定义要写入的 SendGrid 电子邮件的内容文本。
Returns:
to
public String to()
定义要写入的 SendGrid 的“TO”电子邮件。
Returns: