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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass MountPoint data as a 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)


3401
3402
3403
3404
3405
3406
# File 'lib/aws-sdk-ecs/types.rb', line 3401

class MountPoint < Struct.new(
  :source_volume,
  :container_path,
  :read_only)
  include Aws::Structure
end

#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)


3401
3402
3403
3404
3405
3406
# File 'lib/aws-sdk-ecs/types.rb', line 3401

class MountPoint < Struct.new(
  :source_volume,
  :container_path,
  :read_only)
  include Aws::Structure
end

#source_volumeString

The name of the volume to mount.

Returns:

  • (String)


3401
3402
3403
3404
3405
3406
# File 'lib/aws-sdk-ecs/types.rb', line 3401

class MountPoint < Struct.new(
  :source_volume,
  :container_path,
  :read_only)
  include Aws::Structure
end