Interface DevEndpointCustomLibraries.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DevEndpointCustomLibraries.Builder,DevEndpointCustomLibraries>,SdkBuilder<DevEndpointCustomLibraries.Builder,DevEndpointCustomLibraries>,SdkPojo
- Enclosing class:
- DevEndpointCustomLibraries
public static interface DevEndpointCustomLibraries.Builder extends SdkPojo, CopyableBuilder<DevEndpointCustomLibraries.Builder,DevEndpointCustomLibraries>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DevEndpointCustomLibraries.BuilderextraJarsS3Path(String extraJarsS3Path)The path to one or more Java.jarfiles in an S3 bucket that should be loaded in yourDevEndpoint.DevEndpointCustomLibraries.BuilderextraPythonLibsS3Path(String extraPythonLibsS3Path)The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in yourDevEndpoint.-
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
-
extraPythonLibsS3Path
DevEndpointCustomLibraries.Builder extraPythonLibsS3Path(String extraPythonLibsS3Path)
The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in your
DevEndpoint. Multiple values must be complete paths separated by a comma.You can only use pure Python libraries with a
DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.- Parameters:
extraPythonLibsS3Path- The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in yourDevEndpoint. Multiple values must be complete paths separated by a comma.You can only use pure Python libraries with a
DevEndpoint. Libraries that rely on C extensions, such as the pandas Python data analysis library, are not currently supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
extraJarsS3Path
DevEndpointCustomLibraries.Builder extraJarsS3Path(String extraJarsS3Path)
The path to one or more Java
.jarfiles in an S3 bucket that should be loaded in yourDevEndpoint.You can only use pure Java/Scala libraries with a
DevEndpoint.- Parameters:
extraJarsS3Path- The path to one or more Java.jarfiles in an S3 bucket that should be loaded in yourDevEndpoint.You can only use pure Java/Scala libraries with a
DevEndpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-