Module Values.UpdateApplicationInputSource

Updates the mutable configuration settings for a Amazon GameLift Streams application resource. You can change the Description, ApplicationLogOutputUri, and ApplicationLogPaths. To update application settings, specify the application ID and provide the new values. If the operation is successful, it returns the complete updated set of settings for the application.

Sourcetype nonrec t = {
  1. identifier : Identifier.t;
    (*

    An Amazon Resource Name (ARN) or ID that uniquely identifies the application resource. Example ARN: arn:aws:gameliftstreams:us-west-2:111122223333:application/a-9ZY8X7Wv6. Example ID: a-9ZY8X7Wv6.

    *)
  2. description : Description.t option;
    (*

    A human-readable label for the application.

    *)
  3. applicationLogPaths : FilePaths.t option;
    (*

    Locations of log files that your content generates during a stream session. Enter path values that are relative to the ApplicationSourceUri location. You can specify up to 10 log paths. Amazon GameLift Streams uploads designated log files to the Amazon S3 bucket that you specify in ApplicationLogOutputUri at the end of a stream session. To retrieve stored log files, call GetStreamSession and get the LogFileLocationUri.

    *)
  4. applicationLogOutputUri : ApplicationLogOutputUri.t option;
    (*

    An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs. Required if you specify one or more ApplicationLogPaths. The log bucket must have permissions that give Amazon GameLift Streams access to write the log files. For more information, see Application log bucket permission policy in the Amazon GameLift Streams Developer Guide.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?applicationLogPaths:??? -> ?applicationLogOutputUri:??? -> identifier:Identifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of FilePath.t ] list | `String of Identifier.t ]) 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