Interface DebugSession.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DebugSession.Builder,DebugSession>,SdkBuilder<DebugSession.Builder,DebugSession>,SdkPojo
- Enclosing class:
- DebugSession
public static interface DebugSession.Builder extends SdkPojo, CopyableBuilder<DebugSession.Builder,DebugSession>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DebugSession.BuildersessionEnabled(Boolean sessionEnabled)Specifies if session debugging is enabled for this build.DebugSession.BuildersessionTarget(String sessionTarget)Contains the identifier of the Session Manager session used for the build.-
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
-
sessionEnabled
DebugSession.Builder sessionEnabled(Boolean sessionEnabled)
Specifies if session debugging is enabled for this build.
- Parameters:
sessionEnabled- Specifies if session debugging is enabled for this build.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sessionTarget
DebugSession.Builder sessionTarget(String sessionTarget)
Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.
- Parameters:
sessionTarget- Contains the identifier of the Session Manager session used for the build. To work with the paused build, you open this session to examine, control, and resume the build.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-