Interface UnusedAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UnusedAction.Builder,UnusedAction>,SdkBuilder<UnusedAction.Builder,UnusedAction>,SdkPojo
- Enclosing class:
- UnusedAction
public static interface UnusedAction.Builder extends SdkPojo, CopyableBuilder<UnusedAction.Builder,UnusedAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UnusedAction.Builderaction(String action)The action for which the unused access finding was generated.UnusedAction.BuilderlastAccessed(Instant lastAccessed)The time at which the action was last accessed.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
action
UnusedAction.Builder action(String action)
The action for which the unused access finding was generated.
- Parameters:
action- The action for which the unused access finding was generated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastAccessed
UnusedAction.Builder lastAccessed(Instant lastAccessed)
The time at which the action was last accessed.
- Parameters:
lastAccessed- The time at which the action was last accessed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-