Method: Aws::Batch::Types::ContainerProperties#mount_points
- Defined in:
- lib/aws-sdk-batch/types.rb
#mount_points ⇒ Array<Types::MountPoint>
The mount points for data volumes in your container. This parameter maps to Volumes in the [Create a container] section of the
- Docker Remote API][2
-
and the
--volumeoption to [docker run].
[1]: docs.docker.com/engine/api/v1.23/#create-a-container [2]: docs.docker.com/engine/api/v1.23/ [3]: docs.docker.com/engine/reference/run/
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 |
# File 'lib/aws-sdk-batch/types.rb', line 2312 class ContainerProperties < Struct.new( :image, :vcpus, :memory, :command, :job_role_arn, :execution_role_arn, :volumes, :environment, :mount_points, :readonly_root_filesystem, :privileged, :ulimits, :user, :instance_type, :resource_requirements, :linux_parameters, :log_configuration, :secrets, :network_configuration, :fargate_platform_configuration, :enable_execute_command, :ephemeral_storage, :runtime_platform, :repository_credentials) SENSITIVE = [] include Aws::Structure end |