Class InvokeWithResponseStreamCompleteEvent.BuilderImpl
- java.lang.Object
-
- software.amazon.awssdk.services.lambda.model.InvokeWithResponseStreamCompleteEvent.BuilderImpl
-
- All Implemented Interfaces:
SdkPojo
,InvokeWithResponseStreamCompleteEvent.Builder
,Buildable
,CopyableBuilder<InvokeWithResponseStreamCompleteEvent.Builder,InvokeWithResponseStreamCompleteEvent>
,SdkBuilder<InvokeWithResponseStreamCompleteEvent.Builder,InvokeWithResponseStreamCompleteEvent>
- Enclosing class:
- InvokeWithResponseStreamCompleteEvent
protected static class InvokeWithResponseStreamCompleteEvent.BuilderImpl extends Object implements InvokeWithResponseStreamCompleteEvent.Builder
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
BuilderImpl()
protected
BuilderImpl(InvokeWithResponseStreamCompleteEvent model)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InvokeWithResponseStreamCompleteEvent
build()
InvokeWithResponseStreamCompleteEvent.Builder
errorCode(String errorCode)
An error code.InvokeWithResponseStreamCompleteEvent.Builder
errorDetails(String errorDetails)
The details of any returned error.String
getErrorCode()
String
getErrorDetails()
String
getLogResult()
InvokeWithResponseStreamCompleteEvent.Builder
logResult(String logResult)
The last 4 KB of the execution log, which is base64-encoded.List<SdkField<?>>
sdkFields()
void
setErrorCode(String errorCode)
void
setErrorDetails(String errorDetails)
void
setLogResult(String logResult)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields
-
-
-
-
Constructor Detail
-
BuilderImpl
protected BuilderImpl()
-
BuilderImpl
protected BuilderImpl(InvokeWithResponseStreamCompleteEvent model)
-
-
Method Detail
-
getErrorCode
public final String getErrorCode()
-
setErrorCode
public final void setErrorCode(String errorCode)
-
errorCode
public final InvokeWithResponseStreamCompleteEvent.Builder errorCode(String errorCode)
Description copied from interface:InvokeWithResponseStreamCompleteEvent.Builder
An error code.
- Specified by:
errorCode
in interfaceInvokeWithResponseStreamCompleteEvent.Builder
- Parameters:
errorCode
- An error code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getErrorDetails
public final String getErrorDetails()
-
setErrorDetails
public final void setErrorDetails(String errorDetails)
-
errorDetails
public final InvokeWithResponseStreamCompleteEvent.Builder errorDetails(String errorDetails)
Description copied from interface:InvokeWithResponseStreamCompleteEvent.Builder
The details of any returned error.
- Specified by:
errorDetails
in interfaceInvokeWithResponseStreamCompleteEvent.Builder
- Parameters:
errorDetails
- The details of any returned error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
getLogResult
public final String getLogResult()
-
setLogResult
public final void setLogResult(String logResult)
-
logResult
public final InvokeWithResponseStreamCompleteEvent.Builder logResult(String logResult)
Description copied from interface:InvokeWithResponseStreamCompleteEvent.Builder
The last 4 KB of the execution log, which is base64-encoded.
- Specified by:
logResult
in interfaceInvokeWithResponseStreamCompleteEvent.Builder
- Parameters:
logResult
- The last 4 KB of the execution log, which is base64-encoded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
build
public InvokeWithResponseStreamCompleteEvent build()
- Specified by:
build
in interfaceBuildable
- Specified by:
build
in interfaceSdkBuilder<InvokeWithResponseStreamCompleteEvent.Builder,InvokeWithResponseStreamCompleteEvent>
-
-