Deployment.UpdateStages.WithTemplate インターフェイス

public static interface Deployment.UpdateStages.WithTemplate

テンプレートを変更できるデプロイ更新プログラム。

メソッドの概要

修飾子と型 メソッドと説明
abstract Update withTemplate(Object template)

テンプレートを Java オブジェクトとして指定します。

abstract Update withTemplate(String templateJson)

テンプレートを JSON 文字列として指定します。

abstract Update withTemplateLink(String uri, String contentVersion)

テンプレートを URL として指定します。

メソッドの詳細

withTemplate

public abstract Deployment.Update withTemplate(Object template)

テンプレートを Java オブジェクトとして指定します。

Parameters:

template - Java オブジェクト

Returns:

デプロイ更新プログラムの次のステージ

withTemplate

public abstract Deployment.Update withTemplate(String templateJson)

テンプレートを JSON 文字列として指定します。

Parameters:

templateJson - JSON 文字列

Returns:

デプロイ更新プログラムの次のステージ

Throws:

java.io.IOException - シリアル化/逆シリアル化からスローされた例外

withTemplateLink

public abstract Deployment.Update withTemplateLink(String uri, String contentVersion)

テンプレートを URL として指定します。

Parameters:

uri - リモート テンプレート ファイルの場所
contentVersion - テンプレート ファイルのバージョン

Returns:

デプロイ更新プログラムの次のステージ

適用対象