Module Values_0.DockerSettingsSource

A collection of settings that configure the domain's Docker interaction.

Sourcetype nonrec t = {
  1. enableDockerAccess : FeatureStatus.t option;
    (*

    Indicates whether the domain can access Docker.

    *)
  2. vpcOnlyTrustedAccounts : VpcOnlyTrustedAccounts.t option;
    (*

    The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.

    *)
  3. rootlessDocker : FeatureStatus.t option;
    (*

    Indicates whether to use rootless Docker.

    *)
}
Sourceval make : ?enableDockerAccess:??? -> ?vpcOnlyTrustedAccounts:??? -> ?rootlessDocker:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of AccountId.t ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t