Class ActionIdentifier
- java.lang.Object
-
- software.amazon.awssdk.services.verifiedpermissions.model.ActionIdentifier
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<ActionIdentifier.Builder,ActionIdentifier>
@Generated("software.amazon.awssdk:codegen") public final class ActionIdentifier extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ActionIdentifier.Builder,ActionIdentifier>
Contains information about an action for a request for which an authorization decision is made.
This data type is used as a request parameter to the IsAuthorized, BatchIsAuthorized , and IsAuthorizedWithToken operations.
Example:
{ "actionId": "<action name>", "actionType": "Action" }- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceActionIdentifier.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringactionId()The ID of an action.StringactionType()The type of an action.static ActionIdentifier.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()List<SdkField<?>>sdkFields()static Class<? extends ActionIdentifier.Builder>serializableBuilderClass()ActionIdentifier.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
actionType
public final String actionType()
The type of an action.
- Returns:
- The type of an action.
-
actionId
public final String actionId()
The ID of an action.
- Returns:
- The ID of an action.
-
toBuilder
public ActionIdentifier.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<ActionIdentifier.Builder,ActionIdentifier>
-
builder
public static ActionIdentifier.Builder builder()
-
serializableBuilderClass
public static Class<? extends ActionIdentifier.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-