MountPoint

public struct MountPoint : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The path on the container to mount the host volume at.

    Declaration

    Swift

    public let containerPath: String?
  • 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.

    Declaration

    Swift

    public let readOnly: Bool?
  • The name of the volume to mount. Must be a volume name referenced in the name parameter of task definition volume.

    Declaration

    Swift

    public let sourceVolume: String?
  • Undocumented

    Declaration

    Swift

    public init(containerPath: String? = nil, readOnly: Bool? = nil, sourceVolume: String? = nil)