@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-27T20:28:49.156Z") @Stability(value=Stable) public enum AuthType extends Enum<AuthType>
| Enum Constant and Description |
|---|
IAM_ROLE
Use the IAM role associated with the current state machine for authorization.
|
NO_AUTH
Call the API direclty with no authorization method.
|
RESOURCE_POLICY
Use the resource policy of the API for authorization.
|
| Modifier and Type | Method and Description |
|---|---|
static AuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final AuthType NO_AUTH
@Stability(value=Stable) public static final AuthType IAM_ROLE
@Stability(value=Stable) public static final AuthType RESOURCE_POLICY
public static AuthType[] values()
for (AuthType c : AuthType.values()) System.out.println(c);
public static AuthType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.