Module Values.AwsEcsClusterConfigurationExecuteCommandConfigurationDetailsSource

Contains the run command configuration for the cluster.

Sourcetype nonrec t = {
  1. kmsKeyId : NonEmptyString.t option;
    (*

    The identifier of the KMS key that is used to encrypt the data between the local client and the container.

    *)
  2. logConfiguration : AwsEcsClusterConfigurationExecuteCommandConfigurationLogConfigurationDetails.t option;
    (*

    The log configuration for the results of the run command actions. Required if Logging is NONE.

    *)
  3. logging : NonEmptyString.t option;
    (*

    The log setting to use for redirecting logs for run command results.

    *)
}
Sourceval make : ?kmsKeyId:??? -> ?logConfiguration:??? -> ?logging:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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