amazonka-appstream-2.0: Amazon AppStream SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.AppStream.CreateApplication

Description

Creates an application.

Applications are an Amazon AppStream 2.0 resource that stores the details about how to launch applications on Elastic fleet streaming instances. An application consists of the launch details, icon, and display name. Applications are associated with an app block that contains the application binaries and other files. The applications assigned to an Elastic fleet are the applications users can launch.

This is only supported for Elastic fleets.

Synopsis

Creating a Request

data CreateApplication Source #

See: newCreateApplication smart constructor.

Constructors

CreateApplication' 

Fields

Instances

Instances details
ToJSON CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

ToHeaders CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

ToPath CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

ToQuery CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

AWSRequest CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Associated Types

type AWSResponse CreateApplication #

Generic CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Associated Types

type Rep CreateApplication :: Type -> Type #

Read CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Show CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

NFData CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Methods

rnf :: CreateApplication -> () #

Eq CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Hashable CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

type AWSResponse CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

type Rep CreateApplication Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

newCreateApplication Source #

Create a value of CreateApplication with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

CreateApplication, createApplication_description - The description of the application.

CreateApplication, createApplication_displayName - The display name of the application. This name is visible to users in the application catalog.

CreateApplication, createApplication_launchParameters - The launch parameters of the application.

$sel:tags:CreateApplication', createApplication_tags - The tags assigned to the application.

CreateApplication, createApplication_workingDirectory - The working directory of the application.

CreateApplication, createApplication_name - The name of the application. This name is visible to users when display name is not specified.

CreateApplication, createApplication_iconS3Location - The location in S3 of the application icon.

CreateApplication, createApplication_launchPath - The launch path of the application.

CreateApplication, createApplication_platforms - The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.

CreateApplication, createApplication_instanceFamilies - The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.

CreateApplication, createApplication_appBlockArn - The app block ARN to which the application should be associated

Request Lenses

createApplication_description :: Lens' CreateApplication (Maybe Text) Source #

The description of the application.

createApplication_displayName :: Lens' CreateApplication (Maybe Text) Source #

The display name of the application. This name is visible to users in the application catalog.

createApplication_launchParameters :: Lens' CreateApplication (Maybe Text) Source #

The launch parameters of the application.

createApplication_tags :: Lens' CreateApplication (Maybe (HashMap Text Text)) Source #

The tags assigned to the application.

createApplication_workingDirectory :: Lens' CreateApplication (Maybe Text) Source #

The working directory of the application.

createApplication_name :: Lens' CreateApplication Text Source #

The name of the application. This name is visible to users when display name is not specified.

createApplication_iconS3Location :: Lens' CreateApplication S3Location Source #

The location in S3 of the application icon.

createApplication_launchPath :: Lens' CreateApplication Text Source #

The launch path of the application.

createApplication_platforms :: Lens' CreateApplication [PlatformType] Source #

The platforms the application supports. WINDOWS_SERVER_2019 and AMAZON_LINUX2 are supported for Elastic fleets.

createApplication_instanceFamilies :: Lens' CreateApplication [Text] Source #

The instance families the application supports. Valid values are GENERAL_PURPOSE and GRAPHICS_G4.

createApplication_appBlockArn :: Lens' CreateApplication Text Source #

The app block ARN to which the application should be associated

Destructuring the Response

data CreateApplicationResponse Source #

See: newCreateApplicationResponse smart constructor.

Constructors

CreateApplicationResponse' 

Fields

Instances

Instances details
Generic CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Associated Types

type Rep CreateApplicationResponse :: Type -> Type #

Read CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Show CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

NFData CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

Eq CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

type Rep CreateApplicationResponse Source # 
Instance details

Defined in Amazonka.AppStream.CreateApplication

type Rep CreateApplicationResponse = D1 ('MetaData "CreateApplicationResponse" "Amazonka.AppStream.CreateApplication" "amazonka-appstream-2.0-2EgS7yjN1zMCngYkSFPgOd" 'False) (C1 ('MetaCons "CreateApplicationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "application") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Application)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateApplicationResponse Source #

Create a value of CreateApplicationResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:application:CreateApplicationResponse', createApplicationResponse_application - Undocumented member.

$sel:httpStatus:CreateApplicationResponse', createApplicationResponse_httpStatus - The response's http status code.

Response Lenses