Enum ManagedPolicyType
- java.lang.Object
-
- java.lang.Enum<ManagedPolicyType>
-
- software.amazon.awssdk.services.datazone.model.ManagedPolicyType
-
- All Implemented Interfaces:
Serializable,Comparable<ManagedPolicyType>
@Generated("software.amazon.awssdk:codegen") public enum ManagedPolicyType extends Enum<ManagedPolicyType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ManagedPolicyTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<ManagedPolicyType>knownValues()StringtoString()static ManagedPolicyTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ManagedPolicyType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREATE_DOMAIN_UNIT
public static final ManagedPolicyType CREATE_DOMAIN_UNIT
-
OVERRIDE_DOMAIN_UNIT_OWNERS
public static final ManagedPolicyType OVERRIDE_DOMAIN_UNIT_OWNERS
-
ADD_TO_PROJECT_MEMBER_POOL
public static final ManagedPolicyType ADD_TO_PROJECT_MEMBER_POOL
-
OVERRIDE_PROJECT_OWNERS
public static final ManagedPolicyType OVERRIDE_PROJECT_OWNERS
-
CREATE_GLOSSARY
public static final ManagedPolicyType CREATE_GLOSSARY
-
CREATE_FORM_TYPE
public static final ManagedPolicyType CREATE_FORM_TYPE
-
CREATE_ASSET_TYPE
public static final ManagedPolicyType CREATE_ASSET_TYPE
-
CREATE_PROJECT
public static final ManagedPolicyType CREATE_PROJECT
-
CREATE_ENVIRONMENT_PROFILE
public static final ManagedPolicyType CREATE_ENVIRONMENT_PROFILE
-
DELEGATE_CREATE_ENVIRONMENT_PROFILE
public static final ManagedPolicyType DELEGATE_CREATE_ENVIRONMENT_PROFILE
-
CREATE_ENVIRONMENT
public static final ManagedPolicyType CREATE_ENVIRONMENT
-
UNKNOWN_TO_SDK_VERSION
public static final ManagedPolicyType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static ManagedPolicyType[] 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 (ManagedPolicyType c : ManagedPolicyType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManagedPolicyType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<ManagedPolicyType>
-
fromValue
public static ManagedPolicyType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- ManagedPolicyType corresponding to the value
-
knownValues
public static Set<ManagedPolicyType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownManagedPolicyTypes
-
-