Class CfnApplicationPropsMixin.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CfnApplicationPropsMixin>
- Enclosing class:
CfnApplicationPropsMixin
CfnApplicationPropsMixin.-
Method Summary
Modifier and TypeMethodDescriptionapplicationLogOutputUri(String applicationLogOutputUri) An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs.applicationLogPaths(List<String> applicationLogPaths) Locations of log files that your content generates during a stream session.applicationSourceUri(String applicationSourceUri) The location of the content that you want to stream.build()create()create(CfnPropertyMixinOptions options) description(String description) A human-readable label for the application.executablePath(String executablePath) The relative path and file name of the executable file that Amazon GameLift Streams will stream.runtimeEnvironment(CfnApplicationPropsMixin.RuntimeEnvironmentProperty runtimeEnvironment) A set of configuration settings to run the application on a stream group.runtimeEnvironment(IResolvable runtimeEnvironment) A set of configuration settings to run the application on a stream group.A list of labels to assign to the new application resource.
-
Method Details
-
create
@Stability(Stable) public static CfnApplicationPropsMixin.Builder create(CfnPropertyMixinOptions options) - Parameters:
options- Mixin options.- Returns:
- a new instance of
CfnApplicationPropsMixin.Builder.
-
create
- Returns:
- a new instance of
CfnApplicationPropsMixin.Builder.
-
applicationLogOutputUri
@Stability(Stable) public CfnApplicationPropsMixin.Builder applicationLogOutputUri(String applicationLogOutputUri) 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.- Parameters:
applicationLogOutputUri- An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs. This parameter is required.- Returns:
this- See Also:
-
applicationLogPaths
@Stability(Stable) public CfnApplicationPropsMixin.Builder applicationLogPaths(List<String> applicationLogPaths) Locations of log files that your content generates during a stream session.Enter path values that are relative to the
ApplicationSourceUrilocation. You can specify up to 10 log paths. Amazon GameLift Streams uploads designated log files to the Amazon S3 bucket that you specify inApplicationLogOutputUriat the end of a stream session. To retrieve stored log files, call GetStreamSession and get theLogFileLocationUri.- Parameters:
applicationLogPaths- Locations of log files that your content generates during a stream session. This parameter is required.- Returns:
this- See Also:
-
applicationSourceUri
@Stability(Stable) public CfnApplicationPropsMixin.Builder applicationSourceUri(String applicationSourceUri) 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.
The Amazon S3 bucket and the Amazon GameLift Streams application must be in the same AWS Region.
- Parameters:
applicationSourceUri- The location of the content that you want to stream. This parameter is required.- Returns:
this- See Also:
-
description
A human-readable label for the application.You can update this value later.
- Parameters:
description- A human-readable label for the application. This parameter is required.- Returns:
this- See Also:
-
executablePath
The relative path and file name of the executable file that Amazon GameLift Streams will stream.Specify a path relative to the location set in
ApplicationSourceUri. The file must be contained within the application's root folder. For Windows applications, the file must be a valid Windows executable or batch file with a filename ending in .exe, .cmd, or .bat. For Linux applications, the file must be a valid Linux binary executable or a script that contains an initial interpreter line starting with a shebang ('#!').- Parameters:
executablePath- The relative path and file name of the executable file that Amazon GameLift Streams will stream. This parameter is required.- Returns:
this- See Also:
-
runtimeEnvironment
@Stability(Stable) public CfnApplicationPropsMixin.Builder runtimeEnvironment(IResolvable runtimeEnvironment) 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.
- Parameters:
runtimeEnvironment- A set of configuration settings to run the application on a stream group. This parameter is required.- Returns:
this- See Also:
-
runtimeEnvironment
@Stability(Stable) public CfnApplicationPropsMixin.Builder runtimeEnvironment(CfnApplicationPropsMixin.RuntimeEnvironmentProperty runtimeEnvironment) 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.
- Parameters:
runtimeEnvironment- A set of configuration settings to run the application on a stream group. This parameter is required.- Returns:
this- See Also:
-
tags
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 .
- Parameters:
tags- A list of labels to assign to the new application resource. This parameter is required.- Returns:
this- See Also:
-
build
- Specified by:
buildin interfacesoftware.amazon.jsii.Builder<CfnApplicationPropsMixin>- Returns:
- a newly built instance of
CfnApplicationPropsMixin.
-