Enum IamRoleName
- java.lang.Object
-
- java.lang.Enum<IamRoleName>
-
- io.github.hsiehshujeng.cdk.comprehend.s3olap.IamRoleName
-
- All Implemented Interfaces:
Serializable,Comparable<IamRoleName>
@Generated(value="jsii-pacmak/1.60.1 (build 2799dc8)", date="2022-06-12T09:44:01.754Z") @Stability(Stable) public enum IamRoleName extends Enum<IamRoleName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINBILLINGCUST_SUPPORTGENERAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IamRoleNamevalueOf(String name)Returns the enum constant of this type with the specified name.static IamRoleName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL
@Stability(Stable) public static final IamRoleName GENERAL
-
ADMIN
@Stability(Stable) public static final IamRoleName ADMIN
-
BILLING
@Stability(Stable) public static final IamRoleName BILLING
-
CUST_SUPPORT
@Stability(Stable) public static final IamRoleName CUST_SUPPORT
-
-
Method Detail
-
values
public static IamRoleName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IamRoleName c : IamRoleName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IamRoleName valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-