You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ECS::Types::MountPoint

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing MountPoint as input to an Aws::Client method, you can use a vanilla Hash:

{
  source_volume: "String",
  container_path: "String",
  read_only: false,
}

Details on a volume mount point that is used in a container definition.

Instance Attribute Summary collapse

Instance Attribute Details

#container_pathString

The path on the container to mount the host volume at.

Returns:

  • (String)

    The path on the container to mount the host volume at.

#read_onlyBoolean

If this value is true, the container has read-only access to the volume. If this value is false, then the container can write to the volume. The default value is false.

Returns:

  • (Boolean)

    If this value is true, the container has read-only access to the volume.

#source_volumeString

The name of the volume to mount. Must be a volume name referenced in the name parameter of task definition volume.

Returns:

  • (String)

    The name of the volume to mount.