ApplicationArgs

data class ApplicationArgs(val applicationLogOutputUri: Output<String>? = null, val applicationLogPaths: Output<List<String>>? = null, val applicationSourceUri: Output<String>? = null, val description: Output<String>? = null, val executablePath: Output<String>? = null, val runtimeEnvironment: Output<ApplicationRuntimeEnvironmentArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ApplicationArgs>

Definition of AWS::GameLiftStreams::Application Resource Type

Constructors

Link copied to clipboard
constructor(applicationLogOutputUri: Output<String>? = null, applicationLogPaths: Output<List<String>>? = null, applicationSourceUri: Output<String>? = null, description: Output<String>? = null, executablePath: Output<String>? = null, runtimeEnvironment: Output<ApplicationRuntimeEnvironmentArgs>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val applicationLogOutputUri: Output<String>? = null

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 .

Link copied to clipboard
val applicationLogPaths: Output<List<String>>? = null

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 .

Link copied to clipboard
val applicationSourceUri: Output<String>? = null

The location of the content that you want to stream. Enter an Amazon S3 URI to a bucket that contains your game or other application. The location can have a multi-level prefix structure, but it must include all the files needed to run the content. Amazon GameLift Streams copies everything under the specified location. This value is immutable. To designate a different content location, create a new application.

Link copied to clipboard
val description: Output<String>? = null

A human-readable label for the application. You can update this value later.

Link copied to clipboard
val executablePath: Output<String>? = null

The path and file name of the executable file that launches the content for streaming. Enter a path value that is relative to the location set in ApplicationSourceUri .

Link copied to clipboard

A set of configuration settings to run the application on a stream group. This configures the operating system, and can include compatibility layers and other drivers.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

A list of labels to assign to the new application resource. Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See Tagging AWS Resources in the AWS General Reference .

Functions

Link copied to clipboard
open override fun toJava(): ApplicationArgs