Class: Aws::Glue::Types::DevEndpointCustomLibraries
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DevEndpointCustomLibraries
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Custom libraries to be loaded into a development endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#extra_jars_s3_path ⇒ String
The path to one or more Java
.jarfiles in an S3 bucket that should be loaded in yourDevEndpoint. -
#extra_python_libs_s3_path ⇒ String
The paths to one or more Python libraries in an Amazon Simple Storage Service (Amazon S3) bucket that should be loaded in your
DevEndpoint.
Instance Attribute Details
#extra_jars_s3_path ⇒ String
The path to one or more Java .jar files in an S3 bucket that
should be loaded in your DevEndpoint.
DevEndpoint.
10277 10278 10279 10280 10281 10282 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10277 class DevEndpointCustomLibraries < Struct.new( :extra_python_libs_s3_path, :extra_jars_s3_path) SENSITIVE = [] include Aws::Structure end |
#extra_python_libs_s3_path ⇒ String
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.
DevEndpoint.
Libraries that rely on C extensions, such as the pandas Python
data analysis library, are not currently supported.
10277 10278 10279 10280 10281 10282 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 10277 class DevEndpointCustomLibraries < Struct.new( :extra_python_libs_s3_path, :extra_jars_s3_path) SENSITIVE = [] include Aws::Structure end |