public enum STSActions extends java.lang.Enum<STSActions> implements Action
| 列挙型定数と説明 |
|---|
AssumeRole
Action for assuming role to do cross-account access or federation.
|
AssumeRoleWithWebIdentity
Action for assuming role with web federation to get a set of temporary
security credentials for users who have been authenticated in a mobile or
web application with a web identity provider.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
java.lang.String |
getActionName()
Returns the name of this action.
|
static STSActions |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static STSActions[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final STSActions AssumeRole
public static final STSActions AssumeRoleWithWebIdentity
public static STSActions[] values()
for(STSActions c: STSActions.values()) System.out.println(c);
public static STSActions valueOf(java.lang.String name)
name - 返される列挙型定数の名前java.lang.IllegalArgumentException - 指定された名前を持つ定数を
この列挙型が持っていない場合java.lang.NullPointerException - 引数がnullの場合public java.lang.String getActionName()
ActiongetActionName インタフェース内 Action