Interface CodeInterpreterInvocationInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CodeInterpreterInvocationInput.Builder,CodeInterpreterInvocationInput>,SdkBuilder<CodeInterpreterInvocationInput.Builder,CodeInterpreterInvocationInput>,SdkPojo
- Enclosing class:
- CodeInterpreterInvocationInput
@Mutable @NotThreadSafe public static interface CodeInterpreterInvocationInput.Builder extends SdkPojo, CopyableBuilder<CodeInterpreterInvocationInput.Builder,CodeInterpreterInvocationInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CodeInterpreterInvocationInput.Buildercode(String code)The code for the code interpreter to use.CodeInterpreterInvocationInput.Builderfiles(String... files)Files that are uploaded for code interpreter to use.CodeInterpreterInvocationInput.Builderfiles(Collection<String> files)Files that are uploaded for code interpreter to use.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
code
CodeInterpreterInvocationInput.Builder code(String code)
The code for the code interpreter to use.
- Parameters:
code- The code for the code interpreter to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
files
CodeInterpreterInvocationInput.Builder files(Collection<String> files)
Files that are uploaded for code interpreter to use.
- Parameters:
files- Files that are uploaded for code interpreter to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
files
CodeInterpreterInvocationInput.Builder files(String... files)
Files that are uploaded for code interpreter to use.
- Parameters:
files- Files that are uploaded for code interpreter to use.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-