interface RuntimeEnvironmentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.GameLiftStreams.Mixins.CfnApplicationPropsMixin.RuntimeEnvironmentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsgameliftstreams/mixins#CfnApplicationPropsMixin_RuntimeEnvironmentProperty |
Java | software.amazon.awscdk.mixins.preview.services.gameliftstreams.mixins.CfnApplicationPropsMixin.RuntimeEnvironmentProperty |
Python | aws_cdk.mixins_preview.aws_gameliftstreams.mixins.CfnApplicationPropsMixin.RuntimeEnvironmentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_gameliftstreams » mixins » CfnApplicationPropsMixin » RuntimeEnvironmentProperty |
Configuration settings that identify the operating system for an application resource.
This can also include a compatibility layer and other drivers.
A runtime environment can be one of the following:
For Linux applications
Ubuntu 22.04 LTS (
Type=UBUNTU, Version=22_04_LTS)For Windows applications
Microsoft Windows Server 2022 Base (
Type=WINDOWS, Version=2022)Proton 9.0-2 (
Type=PROTON, Version=20250516)Proton 8.0-5 (
Type=PROTON, Version=20241007)Proton 8.0-2c (
Type=PROTON, Version=20230704)
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as gameliftstreams_mixins } from '@aws-cdk/mixins-preview/aws-gameliftstreams';
const runtimeEnvironmentProperty: gameliftstreams_mixins.CfnApplicationPropsMixin.RuntimeEnvironmentProperty = {
type: 'type',
version: 'version',
};
Properties
| Name | Type | Description |
|---|---|---|
| type? | string | The operating system and other drivers. |
| version? | string | Versioned container environment for the application operating system. |
type?
Type:
string
(optional)
The operating system and other drivers.
For Proton, this also includes the Proton compatibility layer.
version?
Type:
string
(optional)
Versioned container environment for the application operating system.

.NET
Go
Java
Python
TypeScript