amazonka-gamesparks-2.0: Amazon GameSparks 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.GamesParks

Description

Derived from API version 2021-08-17 of the AWS service descriptions, licensed under Apache 2.0.

Synopsis

Service Configuration

defaultService :: Service Source #

API version 2021-08-17 of the Amazon GameSparks SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by GamesParks.

AccessDeniedException

_AccessDeniedException :: AsError a => Fold a ServiceError Source #

You do not have sufficient access to perform this action.

ConflictException

_ConflictException :: AsError a => Fold a ServiceError Source #

The resource already exists, or another operation is in progress.

InternalServerException

_InternalServerException :: AsError a => Fold a ServiceError Source #

The service encountered an internal error.

ResourceNotFoundException

_ResourceNotFoundException :: AsError a => Fold a ServiceError Source #

The resource specified in the request does not exist.

ServiceQuotaExceededException

_ServiceQuotaExceededException :: AsError a => Fold a ServiceError Source #

The request would result in exceeding service quota.

ThrottlingException

_ThrottlingException :: AsError a => Fold a ServiceError Source #

The request throughput limit was exceeded.

ValidationException

_ValidationException :: AsError a => Fold a ServiceError Source #

One of the parameters in the request is invalid.

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

CreateGame

data CreateGame Source #

See: newCreateGame smart constructor.

Instances

Instances details
ToJSON CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

ToHeaders CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Methods

toHeaders :: CreateGame -> [Header] #

ToPath CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

ToQuery CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

AWSRequest CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Associated Types

type AWSResponse CreateGame #

Generic CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Associated Types

type Rep CreateGame :: Type -> Type #

Read CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Show CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

NFData CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Methods

rnf :: CreateGame -> () #

Eq CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Hashable CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

type AWSResponse CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

type Rep CreateGame Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

type Rep CreateGame = D1 ('MetaData "CreateGame" "Amazonka.GamesParks.CreateGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "CreateGame'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newCreateGame Source #

Create a value of CreateGame 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:clientToken:CreateGame', createGame_clientToken - A client-defined token. With an active client token in the request, this action is idempotent.

CreateGame, createGame_description - The description of the game.

CreateGame, createGame_tags - The list of tags to apply to the game.

$sel:gameName:CreateGame', createGame_gameName - The name of the game.

data CreateGameResponse Source #

See: newCreateGameResponse smart constructor.

Instances

Instances details
Generic CreateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Associated Types

type Rep CreateGameResponse :: Type -> Type #

Read CreateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Show CreateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

NFData CreateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

Methods

rnf :: CreateGameResponse -> () #

Eq CreateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

type Rep CreateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateGame

type Rep CreateGameResponse = D1 ('MetaData "CreateGameResponse" "Amazonka.GamesParks.CreateGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "CreateGameResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "game") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateGameResponse Source #

Create a value of CreateGameResponse 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:game:CreateGameResponse', createGameResponse_game - Details about the game that was created.

$sel:httpStatus:CreateGameResponse', createGameResponse_httpStatus - The response's http status code.

CreateSnapshot

data CreateSnapshot Source #

See: newCreateSnapshot smart constructor.

Constructors

CreateSnapshot' (Maybe Text) Text 

Instances

Instances details
ToJSON CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

ToHeaders CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

ToPath CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

ToQuery CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

AWSRequest CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Associated Types

type AWSResponse CreateSnapshot #

Generic CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Associated Types

type Rep CreateSnapshot :: Type -> Type #

Read CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Show CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

NFData CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Methods

rnf :: CreateSnapshot -> () #

Eq CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Hashable CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

type AWSResponse CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

type Rep CreateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

type Rep CreateSnapshot = D1 ('MetaData "CreateSnapshot" "Amazonka.GamesParks.CreateSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "CreateSnapshot'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newCreateSnapshot Source #

Create a value of CreateSnapshot 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:

CreateSnapshot, createSnapshot_description - The description of the snapshot.

$sel:gameName:CreateSnapshot', createSnapshot_gameName - The name of the game.

data CreateSnapshotResponse Source #

See: newCreateSnapshotResponse smart constructor.

Instances

Instances details
Generic CreateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Associated Types

type Rep CreateSnapshotResponse :: Type -> Type #

Read CreateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Show CreateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

NFData CreateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

Methods

rnf :: CreateSnapshotResponse -> () #

Eq CreateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

type Rep CreateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateSnapshot

type Rep CreateSnapshotResponse = D1 ('MetaData "CreateSnapshotResponse" "Amazonka.GamesParks.CreateSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "CreateSnapshotResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "snapshot") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SnapshotDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateSnapshotResponse Source #

Create a value of CreateSnapshotResponse 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:snapshot:CreateSnapshotResponse', createSnapshotResponse_snapshot - Properties that provide details of the created snapshot.

$sel:httpStatus:CreateSnapshotResponse', createSnapshotResponse_httpStatus - The response's http status code.

CreateStage

data CreateStage Source #

See: newCreateStage smart constructor.

Instances

Instances details
ToJSON CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

ToHeaders CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Methods

toHeaders :: CreateStage -> [Header] #

ToPath CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

ToQuery CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

AWSRequest CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Associated Types

type AWSResponse CreateStage #

Generic CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Associated Types

type Rep CreateStage :: Type -> Type #

Read CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Show CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

NFData CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Methods

rnf :: CreateStage -> () #

Eq CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Hashable CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

type AWSResponse CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

type Rep CreateStage Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

newCreateStage Source #

Create a value of CreateStage 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:clientToken:CreateStage', createStage_clientToken - A client-defined token. With an active client token in the request, this action is idempotent.

CreateStage, createStage_description - The description of the stage.

CreateStage, createStage_tags - The list of tags to apply to the stage.

$sel:gameName:CreateStage', createStage_gameName - The name of the game.

CreateStage, createStage_role - The Amazon Resource Name (ARN) of the role to run the game with. This role can be a game-defined role or the default role that GameSparks created.

$sel:stageName:CreateStage', createStage_stageName - The name of the stage.

data CreateStageResponse Source #

See: newCreateStageResponse smart constructor.

Instances

Instances details
Generic CreateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Associated Types

type Rep CreateStageResponse :: Type -> Type #

Read CreateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Show CreateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

NFData CreateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

Methods

rnf :: CreateStageResponse -> () #

Eq CreateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

type Rep CreateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.CreateStage

type Rep CreateStageResponse = D1 ('MetaData "CreateStageResponse" "Amazonka.GamesParks.CreateStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "CreateStageResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "stage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StageDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newCreateStageResponse Source #

Create a value of CreateStageResponse 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:stage:CreateStageResponse', createStageResponse_stage - Properties that describe the stage.

$sel:httpStatus:CreateStageResponse', createStageResponse_httpStatus - The response's http status code.

DeleteGame

data DeleteGame Source #

See: newDeleteGame smart constructor.

Constructors

DeleteGame' Text 

Instances

Instances details
ToHeaders DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Methods

toHeaders :: DeleteGame -> [Header] #

ToPath DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

ToQuery DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

AWSRequest DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Associated Types

type AWSResponse DeleteGame #

Generic DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Associated Types

type Rep DeleteGame :: Type -> Type #

Read DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Show DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

NFData DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Methods

rnf :: DeleteGame -> () #

Eq DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Hashable DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

type AWSResponse DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

type Rep DeleteGame Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

type Rep DeleteGame = D1 ('MetaData "DeleteGame" "Amazonka.GamesParks.DeleteGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DeleteGame'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteGame Source #

Create a value of DeleteGame 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:gameName:DeleteGame', deleteGame_gameName - The name of the game to delete.

data DeleteGameResponse Source #

See: newDeleteGameResponse smart constructor.

Constructors

DeleteGameResponse' Int 

Instances

Instances details
Generic DeleteGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Associated Types

type Rep DeleteGameResponse :: Type -> Type #

Read DeleteGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Show DeleteGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

NFData DeleteGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

Methods

rnf :: DeleteGameResponse -> () #

Eq DeleteGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

type Rep DeleteGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteGame

type Rep DeleteGameResponse = D1 ('MetaData "DeleteGameResponse" "Amazonka.GamesParks.DeleteGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DeleteGameResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteGameResponse Source #

Create a value of DeleteGameResponse 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:httpStatus:DeleteGameResponse', deleteGameResponse_httpStatus - The response's http status code.

DeleteStage

data DeleteStage Source #

See: newDeleteStage smart constructor.

Constructors

DeleteStage' Text Text 

Instances

Instances details
ToHeaders DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Methods

toHeaders :: DeleteStage -> [Header] #

ToPath DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

ToQuery DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

AWSRequest DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Associated Types

type AWSResponse DeleteStage #

Generic DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Associated Types

type Rep DeleteStage :: Type -> Type #

Read DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Show DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

NFData DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Methods

rnf :: DeleteStage -> () #

Eq DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Hashable DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

type AWSResponse DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

type Rep DeleteStage Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

type Rep DeleteStage = D1 ('MetaData "DeleteStage" "Amazonka.GamesParks.DeleteStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DeleteStage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newDeleteStage Source #

Create a value of DeleteStage 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:gameName:DeleteStage', deleteStage_gameName - The name of the game.

$sel:stageName:DeleteStage', deleteStage_stageName - The name of the stage to delete.

data DeleteStageResponse Source #

See: newDeleteStageResponse smart constructor.

Instances

Instances details
Generic DeleteStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Associated Types

type Rep DeleteStageResponse :: Type -> Type #

Read DeleteStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Show DeleteStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

NFData DeleteStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

Methods

rnf :: DeleteStageResponse -> () #

Eq DeleteStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

type Rep DeleteStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DeleteStage

type Rep DeleteStageResponse = D1 ('MetaData "DeleteStageResponse" "Amazonka.GamesParks.DeleteStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DeleteStageResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newDeleteStageResponse Source #

Create a value of DeleteStageResponse 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:httpStatus:DeleteStageResponse', deleteStageResponse_httpStatus - The response's http status code.

DisconnectPlayer

data DisconnectPlayer Source #

See: newDisconnectPlayer smart constructor.

Instances

Instances details
ToJSON DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

ToHeaders DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

ToPath DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

ToQuery DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

AWSRequest DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Associated Types

type AWSResponse DisconnectPlayer #

Generic DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Associated Types

type Rep DisconnectPlayer :: Type -> Type #

Read DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Show DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

NFData DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Methods

rnf :: DisconnectPlayer -> () #

Eq DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Hashable DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

type AWSResponse DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

type Rep DisconnectPlayer Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

type Rep DisconnectPlayer = D1 ('MetaData "DisconnectPlayer" "Amazonka.GamesParks.DisconnectPlayer" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DisconnectPlayer'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "playerId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newDisconnectPlayer Source #

Create a value of DisconnectPlayer 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:gameName:DisconnectPlayer', disconnectPlayer_gameName - The name of the game.

$sel:playerId:DisconnectPlayer', disconnectPlayer_playerId - The unique identifier representing a player.

$sel:stageName:DisconnectPlayer', disconnectPlayer_stageName - The name of the stage.

data DisconnectPlayerResponse Source #

See: newDisconnectPlayerResponse smart constructor.

Instances

Instances details
Generic DisconnectPlayerResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Associated Types

type Rep DisconnectPlayerResponse :: Type -> Type #

Read DisconnectPlayerResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Show DisconnectPlayerResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

NFData DisconnectPlayerResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

Eq DisconnectPlayerResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

type Rep DisconnectPlayerResponse Source # 
Instance details

Defined in Amazonka.GamesParks.DisconnectPlayer

type Rep DisconnectPlayerResponse = D1 ('MetaData "DisconnectPlayerResponse" "Amazonka.GamesParks.DisconnectPlayer" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DisconnectPlayerResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "disconnectFailures") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: (S1 ('MetaSel ('Just "disconnectSuccesses") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newDisconnectPlayerResponse Source #

Create a value of DisconnectPlayerResponse 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:disconnectFailures:DisconnectPlayerResponse', disconnectPlayerResponse_disconnectFailures - The list of the connection ids that could not be disconnected.

$sel:disconnectSuccesses:DisconnectPlayerResponse', disconnectPlayerResponse_disconnectSuccesses - The list of the connection ids that were disconnected.

$sel:httpStatus:DisconnectPlayerResponse', disconnectPlayerResponse_httpStatus - The response's http status code.

ExportSnapshot

data ExportSnapshot Source #

See: newExportSnapshot smart constructor.

Constructors

ExportSnapshot' Text Text 

Instances

Instances details
ToHeaders ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

ToPath ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

ToQuery ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

AWSRequest ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Associated Types

type AWSResponse ExportSnapshot #

Generic ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Associated Types

type Rep ExportSnapshot :: Type -> Type #

Read ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Show ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

NFData ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Methods

rnf :: ExportSnapshot -> () #

Eq ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Hashable ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

type AWSResponse ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

type Rep ExportSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

type Rep ExportSnapshot = D1 ('MetaData "ExportSnapshot" "Amazonka.GamesParks.ExportSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ExportSnapshot'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newExportSnapshot Source #

Create a value of ExportSnapshot 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:gameName:ExportSnapshot', exportSnapshot_gameName - The name of the game.

ExportSnapshot, exportSnapshot_snapshotId - The identifier of the snapshot to export.

data ExportSnapshotResponse Source #

See: newExportSnapshotResponse smart constructor.

Instances

Instances details
Generic ExportSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Associated Types

type Rep ExportSnapshotResponse :: Type -> Type #

Read ExportSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Show ExportSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

NFData ExportSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

Methods

rnf :: ExportSnapshotResponse -> () #

Eq ExportSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

type Rep ExportSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ExportSnapshot

type Rep ExportSnapshotResponse = D1 ('MetaData "ExportSnapshotResponse" "Amazonka.GamesParks.ExportSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ExportSnapshotResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "s3Url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newExportSnapshotResponse Source #

Create a value of ExportSnapshotResponse 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:

ExportSnapshotResponse, exportSnapshotResponse_s3Url - The presigned URL for the snapshot data.

This URL will be available for 10 minutes, and can be used to download the snapshot content. If the URL expires, a new one can be requested using the same operation.

$sel:httpStatus:ExportSnapshotResponse', exportSnapshotResponse_httpStatus - The response's http status code.

GetExtension

data GetExtension Source #

See: newGetExtension smart constructor.

Constructors

GetExtension' Text Text 

Instances

Instances details
ToHeaders GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

ToPath GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

ToQuery GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

AWSRequest GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Associated Types

type AWSResponse GetExtension #

Generic GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Associated Types

type Rep GetExtension :: Type -> Type #

Read GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Show GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

NFData GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Methods

rnf :: GetExtension -> () #

Eq GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Hashable GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

type AWSResponse GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

type Rep GetExtension Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

type Rep GetExtension = D1 ('MetaData "GetExtension" "Amazonka.GamesParks.GetExtension" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetExtension'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetExtension Source #

Create a value of GetExtension 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:

GetExtension, getExtension_name - The name of the extension.

GetExtension, getExtension_namespace - The namespace (qualifier) of the extension.

data GetExtensionResponse Source #

See: newGetExtensionResponse smart constructor.

Instances

Instances details
Generic GetExtensionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Associated Types

type Rep GetExtensionResponse :: Type -> Type #

Read GetExtensionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Show GetExtensionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

NFData GetExtensionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

Methods

rnf :: GetExtensionResponse -> () #

Eq GetExtensionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

type Rep GetExtensionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtension

type Rep GetExtensionResponse = D1 ('MetaData "GetExtensionResponse" "Amazonka.GamesParks.GetExtension" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetExtensionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "extension") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExtensionDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetExtensionResponse Source #

Create a value of GetExtensionResponse 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:extension:GetExtensionResponse', getExtensionResponse_extension - Details about the extension.

$sel:httpStatus:GetExtensionResponse', getExtensionResponse_httpStatus - The response's http status code.

GetExtensionVersion

data GetExtensionVersion Source #

See: newGetExtensionVersion smart constructor.

Instances

Instances details
ToHeaders GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

ToPath GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

ToQuery GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

AWSRequest GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Associated Types

type AWSResponse GetExtensionVersion #

Generic GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Associated Types

type Rep GetExtensionVersion :: Type -> Type #

Read GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Show GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

NFData GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Methods

rnf :: GetExtensionVersion -> () #

Eq GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Hashable GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

type AWSResponse GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

type Rep GetExtensionVersion Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

type Rep GetExtensionVersion = D1 ('MetaData "GetExtensionVersion" "Amazonka.GamesParks.GetExtensionVersion" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetExtensionVersion'" 'PrefixI 'True) (S1 ('MetaSel ('Just "extensionVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetExtensionVersion Source #

Create a value of GetExtensionVersion 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:

GetExtensionVersion, getExtensionVersion_extensionVersion - The version of the extension.

GetExtensionVersion, getExtensionVersion_name - The name of the extension.

GetExtensionVersion, getExtensionVersion_namespace - The namespace (qualifier) of the extension.

data GetExtensionVersionResponse Source #

See: newGetExtensionVersionResponse smart constructor.

Instances

Instances details
Generic GetExtensionVersionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Associated Types

type Rep GetExtensionVersionResponse :: Type -> Type #

Read GetExtensionVersionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Show GetExtensionVersionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

NFData GetExtensionVersionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

Eq GetExtensionVersionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

type Rep GetExtensionVersionResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetExtensionVersion

type Rep GetExtensionVersionResponse = D1 ('MetaData "GetExtensionVersionResponse" "Amazonka.GamesParks.GetExtensionVersion" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetExtensionVersionResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "extensionVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ExtensionVersionDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetExtensionVersionResponse Source #

Create a value of GetExtensionVersionResponse 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:

GetExtensionVersion, getExtensionVersionResponse_extensionVersion - The version of the extension.

$sel:httpStatus:GetExtensionVersionResponse', getExtensionVersionResponse_httpStatus - The response's http status code.

GetGame

data GetGame Source #

See: newGetGame smart constructor.

Constructors

GetGame' Text 

Instances

Instances details
ToHeaders GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Methods

toHeaders :: GetGame -> [Header] #

ToPath GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Methods

toPath :: GetGame -> ByteString #

ToQuery GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

AWSRequest GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Associated Types

type AWSResponse GetGame #

Generic GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Associated Types

type Rep GetGame :: Type -> Type #

Methods

from :: GetGame -> Rep GetGame x #

to :: Rep GetGame x -> GetGame #

Read GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Show GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

NFData GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Methods

rnf :: GetGame -> () #

Eq GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Methods

(==) :: GetGame -> GetGame -> Bool #

(/=) :: GetGame -> GetGame -> Bool #

Hashable GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Methods

hashWithSalt :: Int -> GetGame -> Int #

hash :: GetGame -> Int #

type AWSResponse GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

type Rep GetGame Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

type Rep GetGame = D1 ('MetaData "GetGame" "Amazonka.GamesParks.GetGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetGame'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetGame Source #

Create a value of GetGame 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:gameName:GetGame', getGame_gameName - The name of the game.

data GetGameResponse Source #

See: newGetGameResponse smart constructor.

Instances

Instances details
Generic GetGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Associated Types

type Rep GetGameResponse :: Type -> Type #

Read GetGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Show GetGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

NFData GetGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

Methods

rnf :: GetGameResponse -> () #

Eq GetGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

type Rep GetGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGame

type Rep GetGameResponse = D1 ('MetaData "GetGameResponse" "Amazonka.GamesParks.GetGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetGameResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "game") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetGameResponse Source #

Create a value of GetGameResponse 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:game:GetGameResponse', getGameResponse_game - The details of the game.

$sel:httpStatus:GetGameResponse', getGameResponse_httpStatus - The response's http status code.

GetGameConfiguration

data GetGameConfiguration Source #

See: newGetGameConfiguration smart constructor.

Instances

Instances details
ToHeaders GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

ToPath GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

ToQuery GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

AWSRequest GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Associated Types

type AWSResponse GetGameConfiguration #

Generic GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Associated Types

type Rep GetGameConfiguration :: Type -> Type #

Read GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Show GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

NFData GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Methods

rnf :: GetGameConfiguration -> () #

Eq GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Hashable GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

type AWSResponse GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

type Rep GetGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

type Rep GetGameConfiguration = D1 ('MetaData "GetGameConfiguration" "Amazonka.GamesParks.GetGameConfiguration" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetGameConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "sections") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetGameConfiguration Source #

Create a value of GetGameConfiguration 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:

GetGameConfiguration, getGameConfiguration_sections - The list of sections to return.

$sel:gameName:GetGameConfiguration', getGameConfiguration_gameName - The name of the game.

data GetGameConfigurationResponse Source #

See: newGetGameConfigurationResponse smart constructor.

Instances

Instances details
Generic GetGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Associated Types

type Rep GetGameConfigurationResponse :: Type -> Type #

Read GetGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Show GetGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

NFData GetGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

Eq GetGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

type Rep GetGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGameConfiguration

type Rep GetGameConfigurationResponse = D1 ('MetaData "GetGameConfigurationResponse" "Amazonka.GamesParks.GetGameConfiguration" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetGameConfigurationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameConfigurationDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetGameConfigurationResponse Source #

Create a value of GetGameConfigurationResponse 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:gameConfiguration:GetGameConfigurationResponse', getGameConfigurationResponse_gameConfiguration - Details about the game configuration.

$sel:httpStatus:GetGameConfigurationResponse', getGameConfigurationResponse_httpStatus - The response's http status code.

GetGeneratedCodeJob

data GetGeneratedCodeJob Source #

See: newGetGeneratedCodeJob smart constructor.

Instances

Instances details
ToHeaders GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

ToPath GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

ToQuery GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

AWSRequest GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Associated Types

type AWSResponse GetGeneratedCodeJob #

Generic GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Associated Types

type Rep GetGeneratedCodeJob :: Type -> Type #

Read GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Show GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

NFData GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Methods

rnf :: GetGeneratedCodeJob -> () #

Eq GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Hashable GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

type AWSResponse GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

type Rep GetGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

type Rep GetGeneratedCodeJob = D1 ('MetaData "GetGeneratedCodeJob" "Amazonka.GamesParks.GetGeneratedCodeJob" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetGeneratedCodeJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "jobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetGeneratedCodeJob Source #

Create a value of GetGeneratedCodeJob 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:gameName:GetGeneratedCodeJob', getGeneratedCodeJob_gameName - The name of the game.

$sel:jobId:GetGeneratedCodeJob', getGeneratedCodeJob_jobId - The identifier of the code generation job.

GetGeneratedCodeJob, getGeneratedCodeJob_snapshotId - The identifier of the snapshot for the code generation job.

data GetGeneratedCodeJobResponse Source #

See: newGetGeneratedCodeJobResponse smart constructor.

Instances

Instances details
Generic GetGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Associated Types

type Rep GetGeneratedCodeJobResponse :: Type -> Type #

Read GetGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Show GetGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

NFData GetGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

Eq GetGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

type Rep GetGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetGeneratedCodeJob

type Rep GetGeneratedCodeJobResponse = D1 ('MetaData "GetGeneratedCodeJobResponse" "Amazonka.GamesParks.GetGeneratedCodeJob" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetGeneratedCodeJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "generatedCodeJob") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GeneratedCodeJobDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetGeneratedCodeJobResponse Source #

Create a value of GetGeneratedCodeJobResponse 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:generatedCodeJob:GetGeneratedCodeJobResponse', getGeneratedCodeJobResponse_generatedCodeJob - Details about the generated code job.

$sel:httpStatus:GetGeneratedCodeJobResponse', getGeneratedCodeJobResponse_httpStatus - The response's http status code.

GetPlayerConnectionStatus

data GetPlayerConnectionStatus Source #

See: newGetPlayerConnectionStatus smart constructor.

Instances

Instances details
ToHeaders GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

ToPath GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

ToQuery GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

AWSRequest GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Generic GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Associated Types

type Rep GetPlayerConnectionStatus :: Type -> Type #

Read GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Show GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

NFData GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Eq GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Hashable GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

type AWSResponse GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

type Rep GetPlayerConnectionStatus Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

type Rep GetPlayerConnectionStatus = D1 ('MetaData "GetPlayerConnectionStatus" "Amazonka.GamesParks.GetPlayerConnectionStatus" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetPlayerConnectionStatus'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "playerId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetPlayerConnectionStatus Source #

Create a value of GetPlayerConnectionStatus 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:gameName:GetPlayerConnectionStatus', getPlayerConnectionStatus_gameName - The name of the game.

$sel:playerId:GetPlayerConnectionStatus', getPlayerConnectionStatus_playerId - The unique identifier representing a player.

$sel:stageName:GetPlayerConnectionStatus', getPlayerConnectionStatus_stageName - The name of the stage.

data GetPlayerConnectionStatusResponse Source #

See: newGetPlayerConnectionStatusResponse smart constructor.

Instances

Instances details
Generic GetPlayerConnectionStatusResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Associated Types

type Rep GetPlayerConnectionStatusResponse :: Type -> Type #

Read GetPlayerConnectionStatusResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Show GetPlayerConnectionStatusResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

NFData GetPlayerConnectionStatusResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

Eq GetPlayerConnectionStatusResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

type Rep GetPlayerConnectionStatusResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetPlayerConnectionStatus

type Rep GetPlayerConnectionStatusResponse = D1 ('MetaData "GetPlayerConnectionStatusResponse" "Amazonka.GamesParks.GetPlayerConnectionStatus" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetPlayerConnectionStatusResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "connections") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Connection])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetPlayerConnectionStatusResponse Source #

Create a value of GetPlayerConnectionStatusResponse 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:connections:GetPlayerConnectionStatusResponse', getPlayerConnectionStatusResponse_connections - The list of connection ids, one for each connection in use by the player.

$sel:httpStatus:GetPlayerConnectionStatusResponse', getPlayerConnectionStatusResponse_httpStatus - The response's http status code.

GetSnapshot

data GetSnapshot Source #

See: newGetSnapshot smart constructor.

Instances

Instances details
ToHeaders GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Methods

toHeaders :: GetSnapshot -> [Header] #

ToPath GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

ToQuery GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

AWSRequest GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Associated Types

type AWSResponse GetSnapshot #

Generic GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Associated Types

type Rep GetSnapshot :: Type -> Type #

Read GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Show GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

NFData GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Methods

rnf :: GetSnapshot -> () #

Eq GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Hashable GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

type AWSResponse GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

type Rep GetSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

type Rep GetSnapshot = D1 ('MetaData "GetSnapshot" "Amazonka.GamesParks.GetSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetSnapshot'" 'PrefixI 'True) (S1 ('MetaSel ('Just "sections") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty Text))) :*: (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetSnapshot Source #

Create a value of GetSnapshot 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:

GetSnapshot, getSnapshot_sections - The list of game configuration sections to be described.

$sel:gameName:GetSnapshot', getSnapshot_gameName - The name of the game.

GetSnapshot, getSnapshot_snapshotId - The identifier of the snapshot.

data GetSnapshotResponse Source #

See: newGetSnapshotResponse smart constructor.

Instances

Instances details
Generic GetSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Associated Types

type Rep GetSnapshotResponse :: Type -> Type #

Read GetSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Show GetSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

NFData GetSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

Methods

rnf :: GetSnapshotResponse -> () #

Eq GetSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

type Rep GetSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetSnapshot

type Rep GetSnapshotResponse = D1 ('MetaData "GetSnapshotResponse" "Amazonka.GamesParks.GetSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetSnapshotResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "snapshot") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SnapshotDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetSnapshotResponse Source #

Create a value of GetSnapshotResponse 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:snapshot:GetSnapshotResponse', getSnapshotResponse_snapshot - Properties that provide details of the snapshot.

$sel:httpStatus:GetSnapshotResponse', getSnapshotResponse_httpStatus - The response's http status code.

GetStage

data GetStage Source #

See: newGetStage smart constructor.

Constructors

GetStage' Text Text 

Instances

Instances details
ToHeaders GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Methods

toHeaders :: GetStage -> [Header] #

ToPath GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

ToQuery GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

AWSRequest GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Associated Types

type AWSResponse GetStage #

Generic GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Associated Types

type Rep GetStage :: Type -> Type #

Methods

from :: GetStage -> Rep GetStage x #

to :: Rep GetStage x -> GetStage #

Read GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Show GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

NFData GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Methods

rnf :: GetStage -> () #

Eq GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Hashable GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Methods

hashWithSalt :: Int -> GetStage -> Int #

hash :: GetStage -> Int #

type AWSResponse GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

type Rep GetStage Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

type Rep GetStage = D1 ('MetaData "GetStage" "Amazonka.GamesParks.GetStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetStage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newGetStage Source #

Create a value of GetStage 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:gameName:GetStage', getStage_gameName - The name of the game.

$sel:stageName:GetStage', getStage_stageName - The name of the stage.

data GetStageResponse Source #

See: newGetStageResponse smart constructor.

Instances

Instances details
Generic GetStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Associated Types

type Rep GetStageResponse :: Type -> Type #

Read GetStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Show GetStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

NFData GetStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

Methods

rnf :: GetStageResponse -> () #

Eq GetStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

type Rep GetStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStage

type Rep GetStageResponse = D1 ('MetaData "GetStageResponse" "Amazonka.GamesParks.GetStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetStageResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "stage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StageDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetStageResponse Source #

Create a value of GetStageResponse 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:stage:GetStageResponse', getStageResponse_stage - Properties that provide details of the stage.

$sel:httpStatus:GetStageResponse', getStageResponse_httpStatus - The response's http status code.

GetStageDeployment

data GetStageDeployment Source #

See: newGetStageDeployment smart constructor.

Instances

Instances details
ToHeaders GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

ToPath GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

ToQuery GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

AWSRequest GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Associated Types

type AWSResponse GetStageDeployment #

Generic GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Associated Types

type Rep GetStageDeployment :: Type -> Type #

Read GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Show GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

NFData GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Methods

rnf :: GetStageDeployment -> () #

Eq GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Hashable GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

type AWSResponse GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

type Rep GetStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

type Rep GetStageDeployment = D1 ('MetaData "GetStageDeployment" "Amazonka.GamesParks.GetStageDeployment" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetStageDeployment'" 'PrefixI 'True) (S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newGetStageDeployment Source #

Create a value of GetStageDeployment 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:

GetStageDeployment, getStageDeployment_deploymentId - The identifier of the stage deployment. StartStageDeployment returns the identifier that you use here.

$sel:gameName:GetStageDeployment', getStageDeployment_gameName - The name of the game.

$sel:stageName:GetStageDeployment', getStageDeployment_stageName - The name of the stage.

data GetStageDeploymentResponse Source #

See: newGetStageDeploymentResponse smart constructor.

Instances

Instances details
Generic GetStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Associated Types

type Rep GetStageDeploymentResponse :: Type -> Type #

Read GetStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Show GetStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

NFData GetStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

Eq GetStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

type Rep GetStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.GetStageDeployment

type Rep GetStageDeploymentResponse = D1 ('MetaData "GetStageDeploymentResponse" "Amazonka.GamesParks.GetStageDeployment" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GetStageDeploymentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "stageDeployment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StageDeploymentDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newGetStageDeploymentResponse Source #

Create a value of GetStageDeploymentResponse 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:stageDeployment:GetStageDeploymentResponse', getStageDeploymentResponse_stageDeployment - Properties that provide details of the stage deployment.

$sel:httpStatus:GetStageDeploymentResponse', getStageDeploymentResponse_httpStatus - The response's http status code.

ImportGameConfiguration

data ImportGameConfiguration Source #

See: newImportGameConfiguration smart constructor.

Instances

Instances details
ToJSON ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

ToHeaders ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

ToPath ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

ToQuery ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

AWSRequest ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Generic ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Associated Types

type Rep ImportGameConfiguration :: Type -> Type #

Read ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Show ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

NFData ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Methods

rnf :: ImportGameConfiguration -> () #

Eq ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Hashable ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

type AWSResponse ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

type Rep ImportGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

type Rep ImportGameConfiguration = D1 ('MetaData "ImportGameConfiguration" "Amazonka.GamesParks.ImportGameConfiguration" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ImportGameConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "importSource") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ImportGameConfigurationSource)))

newImportGameConfiguration Source #

Create a value of ImportGameConfiguration 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:gameName:ImportGameConfiguration', importGameConfiguration_gameName - The name of the game.

$sel:importSource:ImportGameConfiguration', importGameConfiguration_importSource - The source used to import configuration sections.

data ImportGameConfigurationResponse Source #

See: newImportGameConfigurationResponse smart constructor.

Instances

Instances details
Generic ImportGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Associated Types

type Rep ImportGameConfigurationResponse :: Type -> Type #

Read ImportGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Show ImportGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

NFData ImportGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

Eq ImportGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

type Rep ImportGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ImportGameConfiguration

type Rep ImportGameConfigurationResponse = D1 ('MetaData "ImportGameConfigurationResponse" "Amazonka.GamesParks.ImportGameConfiguration" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ImportGameConfigurationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameConfigurationDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newImportGameConfigurationResponse Source #

Create a value of ImportGameConfigurationResponse 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:gameConfiguration:ImportGameConfigurationResponse', importGameConfigurationResponse_gameConfiguration - Details about the game configuration.

$sel:httpStatus:ImportGameConfigurationResponse', importGameConfigurationResponse_httpStatus - The response's http status code.

ListExtensionVersions (Paginated)

data ListExtensionVersions Source #

See: newListExtensionVersions smart constructor.

Instances

Instances details
ToHeaders ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

ToPath ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

ToQuery ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

AWSPager ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

AWSRequest ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Associated Types

type AWSResponse ListExtensionVersions #

Generic ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Associated Types

type Rep ListExtensionVersions :: Type -> Type #

Read ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Show ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

NFData ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Methods

rnf :: ListExtensionVersions -> () #

Eq ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Hashable ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

type AWSResponse ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

type Rep ListExtensionVersions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

type Rep ListExtensionVersions = D1 ('MetaData "ListExtensionVersions" "Amazonka.GamesParks.ListExtensionVersions" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListExtensionVersions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListExtensionVersions Source #

Create a value of ListExtensionVersions 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:maxResults:ListExtensionVersions', listExtensionVersions_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListExtensionVersions, listExtensionVersions_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

ListExtensionVersions, listExtensionVersions_name - The name of the extension.

ListExtensionVersions, listExtensionVersions_namespace - The namespace (qualifier) of the extension.

data ListExtensionVersionsResponse Source #

See: newListExtensionVersionsResponse smart constructor.

Instances

Instances details
Generic ListExtensionVersionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Associated Types

type Rep ListExtensionVersionsResponse :: Type -> Type #

Read ListExtensionVersionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Show ListExtensionVersionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

NFData ListExtensionVersionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

Eq ListExtensionVersionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

type Rep ListExtensionVersionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensionVersions

type Rep ListExtensionVersionsResponse = D1 ('MetaData "ListExtensionVersionsResponse" "Amazonka.GamesParks.ListExtensionVersions" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListExtensionVersionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "extensionVersions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ExtensionVersionDetails])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListExtensionVersionsResponse Source #

Create a value of ListExtensionVersionsResponse 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:extensionVersions:ListExtensionVersionsResponse', listExtensionVersionsResponse_extensionVersions - The list of extension versions.

ListExtensionVersions, listExtensionVersionsResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:httpStatus:ListExtensionVersionsResponse', listExtensionVersionsResponse_httpStatus - The response's http status code.

ListExtensions (Paginated)

data ListExtensions Source #

See: newListExtensions smart constructor.

Instances

Instances details
ToHeaders ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

ToPath ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

ToQuery ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

AWSPager ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

AWSRequest ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Associated Types

type AWSResponse ListExtensions #

Generic ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Associated Types

type Rep ListExtensions :: Type -> Type #

Read ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Show ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

NFData ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Methods

rnf :: ListExtensions -> () #

Eq ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Hashable ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

type AWSResponse ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

type Rep ListExtensions Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

type Rep ListExtensions = D1 ('MetaData "ListExtensions" "Amazonka.GamesParks.ListExtensions" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListExtensions'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListExtensions :: ListExtensions Source #

Create a value of ListExtensions 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:maxResults:ListExtensions', listExtensions_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListExtensions, listExtensions_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

data ListExtensionsResponse Source #

See: newListExtensionsResponse smart constructor.

Instances

Instances details
Generic ListExtensionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Associated Types

type Rep ListExtensionsResponse :: Type -> Type #

Read ListExtensionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Show ListExtensionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

NFData ListExtensionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

Methods

rnf :: ListExtensionsResponse -> () #

Eq ListExtensionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

type Rep ListExtensionsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListExtensions

type Rep ListExtensionsResponse = D1 ('MetaData "ListExtensionsResponse" "Amazonka.GamesParks.ListExtensions" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListExtensionsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "extensions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [ExtensionDetails])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListExtensionsResponse Source #

Create a value of ListExtensionsResponse 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:extensions:ListExtensionsResponse', listExtensionsResponse_extensions - The list of extensions.

ListExtensions, listExtensionsResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:httpStatus:ListExtensionsResponse', listExtensionsResponse_httpStatus - The response's http status code.

ListGames (Paginated)

data ListGames Source #

See: newListGames smart constructor.

Constructors

ListGames' (Maybe Natural) (Maybe Text) 

Instances

Instances details
ToHeaders ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Methods

toHeaders :: ListGames -> [Header] #

ToPath ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

ToQuery ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

AWSPager ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

AWSRequest ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Associated Types

type AWSResponse ListGames #

Generic ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Associated Types

type Rep ListGames :: Type -> Type #

Read ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Show ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

NFData ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Methods

rnf :: ListGames -> () #

Eq ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Hashable ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

type AWSResponse ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

type Rep ListGames Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

type Rep ListGames = D1 ('MetaData "ListGames" "Amazonka.GamesParks.ListGames" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListGames'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newListGames :: ListGames Source #

Create a value of ListGames 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:maxResults:ListGames', listGames_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListGames, listGames_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

data ListGamesResponse Source #

See: newListGamesResponse smart constructor.

Instances

Instances details
Generic ListGamesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Associated Types

type Rep ListGamesResponse :: Type -> Type #

Read ListGamesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Show ListGamesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

NFData ListGamesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

Methods

rnf :: ListGamesResponse -> () #

Eq ListGamesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

type Rep ListGamesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGames

type Rep ListGamesResponse = D1 ('MetaData "ListGamesResponse" "Amazonka.GamesParks.ListGames" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListGamesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "games") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [GameSummary])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListGamesResponse Source #

Create a value of ListGamesResponse 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:games:ListGamesResponse', listGamesResponse_games - The list of games.

ListGames, listGamesResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:httpStatus:ListGamesResponse', listGamesResponse_httpStatus - The response's http status code.

ListGeneratedCodeJobs (Paginated)

data ListGeneratedCodeJobs Source #

See: newListGeneratedCodeJobs smart constructor.

Instances

Instances details
ToHeaders ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

ToPath ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

ToQuery ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

AWSPager ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

AWSRequest ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Associated Types

type AWSResponse ListGeneratedCodeJobs #

Generic ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Associated Types

type Rep ListGeneratedCodeJobs :: Type -> Type #

Read ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Show ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

NFData ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Methods

rnf :: ListGeneratedCodeJobs -> () #

Eq ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Hashable ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

type AWSResponse ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

type Rep ListGeneratedCodeJobs Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

type Rep ListGeneratedCodeJobs = D1 ('MetaData "ListGeneratedCodeJobs" "Amazonka.GamesParks.ListGeneratedCodeJobs" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListGeneratedCodeJobs'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListGeneratedCodeJobs Source #

Create a value of ListGeneratedCodeJobs 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:maxResults:ListGeneratedCodeJobs', listGeneratedCodeJobs_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListGeneratedCodeJobs, listGeneratedCodeJobs_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

$sel:gameName:ListGeneratedCodeJobs', listGeneratedCodeJobs_gameName - The name of the game.

ListGeneratedCodeJobs, listGeneratedCodeJobs_snapshotId - The identifier of the snapshot.

data ListGeneratedCodeJobsResponse Source #

See: newListGeneratedCodeJobsResponse smart constructor.

Instances

Instances details
Generic ListGeneratedCodeJobsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Associated Types

type Rep ListGeneratedCodeJobsResponse :: Type -> Type #

Read ListGeneratedCodeJobsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Show ListGeneratedCodeJobsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

NFData ListGeneratedCodeJobsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

Eq ListGeneratedCodeJobsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

type Rep ListGeneratedCodeJobsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListGeneratedCodeJobs

type Rep ListGeneratedCodeJobsResponse = D1 ('MetaData "ListGeneratedCodeJobsResponse" "Amazonka.GamesParks.ListGeneratedCodeJobs" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListGeneratedCodeJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "generatedCodeJobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [GeneratedCodeJobDetails])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListGeneratedCodeJobsResponse Source #

Create a value of ListGeneratedCodeJobsResponse 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:generatedCodeJobs:ListGeneratedCodeJobsResponse', listGeneratedCodeJobsResponse_generatedCodeJobs - The list of generated code jobs.

ListGeneratedCodeJobs, listGeneratedCodeJobsResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:httpStatus:ListGeneratedCodeJobsResponse', listGeneratedCodeJobsResponse_httpStatus - The response's http status code.

ListSnapshots (Paginated)

data ListSnapshots Source #

See: newListSnapshots smart constructor.

Instances

Instances details
ToHeaders ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

ToPath ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

ToQuery ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

AWSPager ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

AWSRequest ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Associated Types

type AWSResponse ListSnapshots #

Generic ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Associated Types

type Rep ListSnapshots :: Type -> Type #

Read ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Show ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

NFData ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Methods

rnf :: ListSnapshots -> () #

Eq ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Hashable ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

type AWSResponse ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

type Rep ListSnapshots Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

type Rep ListSnapshots = D1 ('MetaData "ListSnapshots" "Amazonka.GamesParks.ListSnapshots" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListSnapshots'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListSnapshots Source #

Create a value of ListSnapshots 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:maxResults:ListSnapshots', listSnapshots_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListSnapshots, listSnapshots_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

$sel:gameName:ListSnapshots', listSnapshots_gameName - The name of the game.

data ListSnapshotsResponse Source #

See: newListSnapshotsResponse smart constructor.

Instances

Instances details
Generic ListSnapshotsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Associated Types

type Rep ListSnapshotsResponse :: Type -> Type #

Read ListSnapshotsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Show ListSnapshotsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

NFData ListSnapshotsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

Methods

rnf :: ListSnapshotsResponse -> () #

Eq ListSnapshotsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

type Rep ListSnapshotsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListSnapshots

type Rep ListSnapshotsResponse = D1 ('MetaData "ListSnapshotsResponse" "Amazonka.GamesParks.ListSnapshots" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListSnapshotsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "snapshots") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [SnapshotSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListSnapshotsResponse Source #

Create a value of ListSnapshotsResponse 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:

ListSnapshots, listSnapshotsResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:snapshots:ListSnapshotsResponse', listSnapshotsResponse_snapshots - A list of snapshot summaries. You can use the returned snapshot IDs in the UpdateSnapshot and GetSnapshot operations.

$sel:httpStatus:ListSnapshotsResponse', listSnapshotsResponse_httpStatus - The response's http status code.

ListStageDeployments (Paginated)

data ListStageDeployments Source #

See: newListStageDeployments smart constructor.

Instances

Instances details
ToHeaders ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

ToPath ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

ToQuery ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

AWSPager ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

AWSRequest ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Associated Types

type AWSResponse ListStageDeployments #

Generic ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Associated Types

type Rep ListStageDeployments :: Type -> Type #

Read ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Show ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

NFData ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Methods

rnf :: ListStageDeployments -> () #

Eq ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Hashable ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

type AWSResponse ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

type Rep ListStageDeployments Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

type Rep ListStageDeployments = D1 ('MetaData "ListStageDeployments" "Amazonka.GamesParks.ListStageDeployments" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListStageDeployments'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListStageDeployments Source #

Create a value of ListStageDeployments 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:maxResults:ListStageDeployments', listStageDeployments_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListStageDeployments, listStageDeployments_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

$sel:gameName:ListStageDeployments', listStageDeployments_gameName - The name of the game.

$sel:stageName:ListStageDeployments', listStageDeployments_stageName - The name of the stage.

data ListStageDeploymentsResponse Source #

See: newListStageDeploymentsResponse smart constructor.

Instances

Instances details
Generic ListStageDeploymentsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Associated Types

type Rep ListStageDeploymentsResponse :: Type -> Type #

Read ListStageDeploymentsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Show ListStageDeploymentsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

NFData ListStageDeploymentsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

Eq ListStageDeploymentsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

type Rep ListStageDeploymentsResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStageDeployments

type Rep ListStageDeploymentsResponse = D1 ('MetaData "ListStageDeploymentsResponse" "Amazonka.GamesParks.ListStageDeployments" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListStageDeploymentsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "stageDeployments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [StageDeploymentSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListStageDeploymentsResponse Source #

Create a value of ListStageDeploymentsResponse 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:

ListStageDeployments, listStageDeploymentsResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:stageDeployments:ListStageDeploymentsResponse', listStageDeploymentsResponse_stageDeployments - A list of stage deployment summaries. You can use the deployment IDs in the UpdateStageDeployment and GetStageDeployment actions.

$sel:httpStatus:ListStageDeploymentsResponse', listStageDeploymentsResponse_httpStatus - The response's http status code.

ListStages (Paginated)

data ListStages Source #

See: newListStages smart constructor.

Instances

Instances details
ToHeaders ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Methods

toHeaders :: ListStages -> [Header] #

ToPath ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

ToQuery ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

AWSPager ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

AWSRequest ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Associated Types

type AWSResponse ListStages #

Generic ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Associated Types

type Rep ListStages :: Type -> Type #

Read ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Show ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

NFData ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Methods

rnf :: ListStages -> () #

Eq ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Hashable ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

type AWSResponse ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

type Rep ListStages Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

type Rep ListStages = D1 ('MetaData "ListStages" "Amazonka.GamesParks.ListStages" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListStages'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newListStages Source #

Create a value of ListStages 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:maxResults:ListStages', listStages_maxResults - The maximum number of results to return.

Use this parameter with NextToken to get results as a set of sequential pages.

ListStages, listStages_nextToken - The token that indicates the start of the next sequential page of results.

Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

$sel:gameName:ListStages', listStages_gameName - The name of the game.

data ListStagesResponse Source #

See: newListStagesResponse smart constructor.

Instances

Instances details
Generic ListStagesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Associated Types

type Rep ListStagesResponse :: Type -> Type #

Read ListStagesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Show ListStagesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

NFData ListStagesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

Methods

rnf :: ListStagesResponse -> () #

Eq ListStagesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

type Rep ListStagesResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListStages

type Rep ListStagesResponse = D1 ('MetaData "ListStagesResponse" "Amazonka.GamesParks.ListStages" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListStagesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "stages") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [StageSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newListStagesResponse Source #

Create a value of ListStagesResponse 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:

ListStages, listStagesResponse_nextToken - The token that indicates the start of the next sequential page of results.

Use this value when making the next call to this operation to continue where the last one finished.

$sel:stages:ListStagesResponse', listStagesResponse_stages - A list of stage summaries. You can use the stage names in the UpdateStage and GetStage actions.

$sel:httpStatus:ListStagesResponse', listStagesResponse_httpStatus - The response's http status code.

ListTagsForResource

data ListTagsForResource Source #

See: newListTagsForResource smart constructor.

Instances

Instances details
ToHeaders ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

ToPath ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

ToQuery ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

AWSRequest ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Associated Types

type AWSResponse ListTagsForResource #

Generic ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Associated Types

type Rep ListTagsForResource :: Type -> Type #

Read ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Show ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

NFData ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Methods

rnf :: ListTagsForResource -> () #

Eq ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Hashable ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

type AWSResponse ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

type Rep ListTagsForResource Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

type Rep ListTagsForResource = D1 ('MetaData "ListTagsForResource" "Amazonka.GamesParks.ListTagsForResource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListTagsForResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newListTagsForResource Source #

Create a value of ListTagsForResource 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:resourceArn:ListTagsForResource', listTagsForResource_resourceArn - The Amazon Resource Name (ARN) of the GameSparks resource.

data ListTagsForResourceResponse Source #

See: newListTagsForResourceResponse smart constructor.

Instances

Instances details
Generic ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Associated Types

type Rep ListTagsForResourceResponse :: Type -> Type #

Read ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Show ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

NFData ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

Eq ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

type Rep ListTagsForResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.ListTagsForResource

type Rep ListTagsForResourceResponse = D1 ('MetaData "ListTagsForResourceResponse" "Amazonka.GamesParks.ListTagsForResource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ListTagsForResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newListTagsForResourceResponse Source #

Create a value of ListTagsForResourceResponse 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:

ListTagsForResourceResponse, listTagsForResourceResponse_tags - The tags associated with the resource.

$sel:httpStatus:ListTagsForResourceResponse', listTagsForResourceResponse_httpStatus - The response's http status code.

StartGeneratedCodeJob

data StartGeneratedCodeJob Source #

See: newStartGeneratedCodeJob smart constructor.

Instances

Instances details
ToJSON StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

ToHeaders StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

ToPath StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

ToQuery StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

AWSRequest StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Associated Types

type AWSResponse StartGeneratedCodeJob #

Generic StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Associated Types

type Rep StartGeneratedCodeJob :: Type -> Type #

Read StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Show StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

NFData StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Methods

rnf :: StartGeneratedCodeJob -> () #

Eq StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Hashable StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

type AWSResponse StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

type Rep StartGeneratedCodeJob Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

type Rep StartGeneratedCodeJob = D1 ('MetaData "StartGeneratedCodeJob" "Amazonka.GamesParks.StartGeneratedCodeJob" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StartGeneratedCodeJob'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "generator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Generator) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newStartGeneratedCodeJob Source #

Create a value of StartGeneratedCodeJob 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:gameName:StartGeneratedCodeJob', startGeneratedCodeJob_gameName - The name of the game.

$sel:generator:StartGeneratedCodeJob', startGeneratedCodeJob_generator - Properties of the generator to use for the job.

StartGeneratedCodeJob, startGeneratedCodeJob_snapshotId - The identifier of the snapshot for which to generate code.

data StartGeneratedCodeJobResponse Source #

See: newStartGeneratedCodeJobResponse smart constructor.

Instances

Instances details
Generic StartGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Associated Types

type Rep StartGeneratedCodeJobResponse :: Type -> Type #

Read StartGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Show StartGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

NFData StartGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

Eq StartGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

type Rep StartGeneratedCodeJobResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartGeneratedCodeJob

type Rep StartGeneratedCodeJobResponse = D1 ('MetaData "StartGeneratedCodeJobResponse" "Amazonka.GamesParks.StartGeneratedCodeJob" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StartGeneratedCodeJobResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "generatedCodeJobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartGeneratedCodeJobResponse Source #

Create a value of StartGeneratedCodeJobResponse 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:

StartGeneratedCodeJobResponse, startGeneratedCodeJobResponse_generatedCodeJobId - The identifier of the code generation job. You can use this identifier in the GetGeneratedCodeJob operation.

$sel:httpStatus:StartGeneratedCodeJobResponse', startGeneratedCodeJobResponse_httpStatus - The response's http status code.

StartStageDeployment

data StartStageDeployment Source #

See: newStartStageDeployment smart constructor.

Instances

Instances details
ToJSON StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

ToHeaders StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

ToPath StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

ToQuery StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

AWSRequest StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Associated Types

type AWSResponse StartStageDeployment #

Generic StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Associated Types

type Rep StartStageDeployment :: Type -> Type #

Read StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Show StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

NFData StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Methods

rnf :: StartStageDeployment -> () #

Eq StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Hashable StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

type AWSResponse StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

type Rep StartStageDeployment Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

type Rep StartStageDeployment = D1 ('MetaData "StartStageDeployment" "Amazonka.GamesParks.StartStageDeployment" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StartStageDeployment'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "clientToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newStartStageDeployment Source #

Create a value of StartStageDeployment 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:clientToken:StartStageDeployment', startStageDeployment_clientToken - A client-defined token. With an active client token in the request, this action is idempotent.

$sel:gameName:StartStageDeployment', startStageDeployment_gameName - The name of the game.

StartStageDeployment, startStageDeployment_snapshotId - The identifier of the snapshot to deploy.

$sel:stageName:StartStageDeployment', startStageDeployment_stageName - The name of the stage to deploy the snapshot onto.

data StartStageDeploymentResponse Source #

See: newStartStageDeploymentResponse smart constructor.

Instances

Instances details
Generic StartStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Associated Types

type Rep StartStageDeploymentResponse :: Type -> Type #

Read StartStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Show StartStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

NFData StartStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

Eq StartStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

type Rep StartStageDeploymentResponse Source # 
Instance details

Defined in Amazonka.GamesParks.StartStageDeployment

type Rep StartStageDeploymentResponse = D1 ('MetaData "StartStageDeploymentResponse" "Amazonka.GamesParks.StartStageDeployment" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StartStageDeploymentResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "stageDeployment") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StageDeploymentDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newStartStageDeploymentResponse Source #

Create a value of StartStageDeploymentResponse 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:stageDeployment:StartStageDeploymentResponse', startStageDeploymentResponse_stageDeployment - Properties that describe the stage deployment.

$sel:httpStatus:StartStageDeploymentResponse', startStageDeploymentResponse_httpStatus - The response's http status code.

TagResource

data TagResource Source #

See: newTagResource smart constructor.

Instances

Instances details
ToJSON TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

ToHeaders TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Methods

toHeaders :: TagResource -> [Header] #

ToPath TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

ToQuery TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

AWSRequest TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Associated Types

type AWSResponse TagResource #

Generic TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Associated Types

type Rep TagResource :: Type -> Type #

Read TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Show TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

NFData TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Methods

rnf :: TagResource -> () #

Eq TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Hashable TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

type AWSResponse TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

type Rep TagResource Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

type Rep TagResource = D1 ('MetaData "TagResource" "Amazonka.GamesParks.TagResource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "TagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text Text))))

newTagResource Source #

Create a value of TagResource 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:resourceArn:TagResource', tagResource_resourceArn - The Amazon Resource Name (ARN) of the resource to add the tags to.

TagResource, tagResource_tags - The tags to add to the resource.

data TagResourceResponse Source #

See: newTagResourceResponse smart constructor.

Instances

Instances details
Generic TagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Associated Types

type Rep TagResourceResponse :: Type -> Type #

Read TagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Show TagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

NFData TagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

Methods

rnf :: TagResourceResponse -> () #

Eq TagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

type Rep TagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.TagResource

type Rep TagResourceResponse = D1 ('MetaData "TagResourceResponse" "Amazonka.GamesParks.TagResource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "TagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourceResponse Source #

Create a value of TagResourceResponse 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:httpStatus:TagResourceResponse', tagResourceResponse_httpStatus - The response's http status code.

UntagResource

data UntagResource Source #

See: newUntagResource smart constructor.

Instances

Instances details
ToHeaders UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

ToPath UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

ToQuery UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

AWSRequest UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Associated Types

type AWSResponse UntagResource #

Generic UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Associated Types

type Rep UntagResource :: Type -> Type #

Read UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Show UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

NFData UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Methods

rnf :: UntagResource -> () #

Eq UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Hashable UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

type AWSResponse UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

type Rep UntagResource Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

type Rep UntagResource = D1 ('MetaData "UntagResource" "Amazonka.GamesParks.UntagResource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UntagResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text))))

newUntagResource Source #

Create a value of UntagResource 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:resourceArn:UntagResource', untagResource_resourceArn - The Amazon Resource Name (ARN) of the resource to remove the tags from.

$sel:tagKeys:UntagResource', untagResource_tagKeys - The keys of the tags to remove.

data UntagResourceResponse Source #

See: newUntagResourceResponse smart constructor.

Instances

Instances details
Generic UntagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Associated Types

type Rep UntagResourceResponse :: Type -> Type #

Read UntagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Show UntagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

NFData UntagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

Methods

rnf :: UntagResourceResponse -> () #

Eq UntagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

type Rep UntagResourceResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UntagResource

type Rep UntagResourceResponse = D1 ('MetaData "UntagResourceResponse" "Amazonka.GamesParks.UntagResource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UntagResourceResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUntagResourceResponse Source #

Create a value of UntagResourceResponse 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:httpStatus:UntagResourceResponse', untagResourceResponse_httpStatus - The response's http status code.

UpdateGame

data UpdateGame Source #

See: newUpdateGame smart constructor.

Constructors

UpdateGame' (Maybe Text) Text 

Instances

Instances details
ToJSON UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

ToHeaders UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Methods

toHeaders :: UpdateGame -> [Header] #

ToPath UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

ToQuery UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

AWSRequest UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Associated Types

type AWSResponse UpdateGame #

Generic UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Associated Types

type Rep UpdateGame :: Type -> Type #

Read UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Show UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

NFData UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Methods

rnf :: UpdateGame -> () #

Eq UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Hashable UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

type AWSResponse UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

type Rep UpdateGame Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

type Rep UpdateGame = D1 ('MetaData "UpdateGame" "Amazonka.GamesParks.UpdateGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateGame'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newUpdateGame Source #

Create a value of UpdateGame 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:

UpdateGame, updateGame_description - The description of the game.

$sel:gameName:UpdateGame', updateGame_gameName - The name of the game.

data UpdateGameResponse Source #

See: newUpdateGameResponse smart constructor.

Instances

Instances details
Generic UpdateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Associated Types

type Rep UpdateGameResponse :: Type -> Type #

Read UpdateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Show UpdateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

NFData UpdateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

Methods

rnf :: UpdateGameResponse -> () #

Eq UpdateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

type Rep UpdateGameResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGame

type Rep UpdateGameResponse = D1 ('MetaData "UpdateGameResponse" "Amazonka.GamesParks.UpdateGame" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateGameResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "game") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateGameResponse Source #

Create a value of UpdateGameResponse 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:game:UpdateGameResponse', updateGameResponse_game - The details of the game.

$sel:httpStatus:UpdateGameResponse', updateGameResponse_httpStatus - The response's http status code.

UpdateGameConfiguration

data UpdateGameConfiguration Source #

See: newUpdateGameConfiguration smart constructor.

Instances

Instances details
ToJSON UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

ToHeaders UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

ToPath UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

ToQuery UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

AWSRequest UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Generic UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Associated Types

type Rep UpdateGameConfiguration :: Type -> Type #

Read UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Show UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

NFData UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Methods

rnf :: UpdateGameConfiguration -> () #

Eq UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Hashable UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

type AWSResponse UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

type Rep UpdateGameConfiguration Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

type Rep UpdateGameConfiguration = D1 ('MetaData "UpdateGameConfiguration" "Amazonka.GamesParks.UpdateGameConfiguration" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateGameConfiguration'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "modifications") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty SectionModification))))

newUpdateGameConfiguration Source #

Create a value of UpdateGameConfiguration 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:gameName:UpdateGameConfiguration', updateGameConfiguration_gameName - The name of the game.

$sel:modifications:UpdateGameConfiguration', updateGameConfiguration_modifications - The list of modifications to make.

data UpdateGameConfigurationResponse Source #

See: newUpdateGameConfigurationResponse smart constructor.

Instances

Instances details
Generic UpdateGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Associated Types

type Rep UpdateGameConfigurationResponse :: Type -> Type #

Read UpdateGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Show UpdateGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

NFData UpdateGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

Eq UpdateGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

type Rep UpdateGameConfigurationResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateGameConfiguration

type Rep UpdateGameConfigurationResponse = D1 ('MetaData "UpdateGameConfigurationResponse" "Amazonka.GamesParks.UpdateGameConfiguration" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateGameConfigurationResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameConfiguration") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameConfigurationDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateGameConfigurationResponse Source #

Create a value of UpdateGameConfigurationResponse 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:gameConfiguration:UpdateGameConfigurationResponse', updateGameConfigurationResponse_gameConfiguration - Details about the game configuration.

$sel:httpStatus:UpdateGameConfigurationResponse', updateGameConfigurationResponse_httpStatus - The response's http status code.

UpdateSnapshot

data UpdateSnapshot Source #

See: newUpdateSnapshot smart constructor.

Instances

Instances details
ToJSON UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

ToHeaders UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

ToPath UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

ToQuery UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

AWSRequest UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Associated Types

type AWSResponse UpdateSnapshot #

Generic UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Associated Types

type Rep UpdateSnapshot :: Type -> Type #

Read UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Show UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

NFData UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Methods

rnf :: UpdateSnapshot -> () #

Eq UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Hashable UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

type AWSResponse UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

type Rep UpdateSnapshot Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

type Rep UpdateSnapshot = D1 ('MetaData "UpdateSnapshot" "Amazonka.GamesParks.UpdateSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateSnapshot'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateSnapshot Source #

Create a value of UpdateSnapshot 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:

UpdateSnapshot, updateSnapshot_description - The description of the snapshot.

$sel:gameName:UpdateSnapshot', updateSnapshot_gameName - The name of the game.

UpdateSnapshot, updateSnapshot_snapshotId - The identifier of the snapshot.

data UpdateSnapshotResponse Source #

See: newUpdateSnapshotResponse smart constructor.

Instances

Instances details
Generic UpdateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Associated Types

type Rep UpdateSnapshotResponse :: Type -> Type #

Read UpdateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Show UpdateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

NFData UpdateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

Methods

rnf :: UpdateSnapshotResponse -> () #

Eq UpdateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

type Rep UpdateSnapshotResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateSnapshot

type Rep UpdateSnapshotResponse = D1 ('MetaData "UpdateSnapshotResponse" "Amazonka.GamesParks.UpdateSnapshot" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateSnapshotResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "snapshot") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SnapshotDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateSnapshotResponse Source #

Create a value of UpdateSnapshotResponse 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:snapshot:UpdateSnapshotResponse', updateSnapshotResponse_snapshot - Properties that provide details of the updated snapshot.

$sel:httpStatus:UpdateSnapshotResponse', updateSnapshotResponse_httpStatus - The response's http status code.

UpdateStage

data UpdateStage Source #

See: newUpdateStage smart constructor.

Instances

Instances details
ToJSON UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

ToHeaders UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Methods

toHeaders :: UpdateStage -> [Header] #

ToPath UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

ToQuery UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

AWSRequest UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Associated Types

type AWSResponse UpdateStage #

Generic UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Associated Types

type Rep UpdateStage :: Type -> Type #

Read UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Show UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

NFData UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Methods

rnf :: UpdateStage -> () #

Eq UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Hashable UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

type AWSResponse UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

type Rep UpdateStage Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

type Rep UpdateStage = D1 ('MetaData "UpdateStage" "Amazonka.GamesParks.UpdateStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateStage'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "role'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "gameName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stageName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newUpdateStage Source #

Create a value of UpdateStage 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:

UpdateStage, updateStage_description - The description of the stage.

UpdateStage, updateStage_role - The Amazon Resource Name (ARN) of the role to use for the game snapshots deployed to this stage.

$sel:gameName:UpdateStage', updateStage_gameName - The name of the game.

$sel:stageName:UpdateStage', updateStage_stageName - The name of the stage.

data UpdateStageResponse Source #

See: newUpdateStageResponse smart constructor.

Instances

Instances details
Generic UpdateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Associated Types

type Rep UpdateStageResponse :: Type -> Type #

Read UpdateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Show UpdateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

NFData UpdateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

Methods

rnf :: UpdateStageResponse -> () #

Eq UpdateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

type Rep UpdateStageResponse Source # 
Instance details

Defined in Amazonka.GamesParks.UpdateStage

type Rep UpdateStageResponse = D1 ('MetaData "UpdateStageResponse" "Amazonka.GamesParks.UpdateStage" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "UpdateStageResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "stage") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StageDetails)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newUpdateStageResponse Source #

Create a value of UpdateStageResponse 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:stage:UpdateStageResponse', updateStageResponse_stage - Properties that provide details of the updated stage.

$sel:httpStatus:UpdateStageResponse', updateStageResponse_httpStatus - The response's http status code.

Types

DeploymentAction

newtype DeploymentAction Source #

Instances

Instances details
FromJSON DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

FromJSONKey DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToJSON DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToJSONKey DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToByteString DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToHeader DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToLog DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToQuery DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

FromText DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToText DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

FromXML DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

ToXML DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

Generic DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

Associated Types

type Rep DeploymentAction :: Type -> Type #

Read DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

Show DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

NFData DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

Methods

rnf :: DeploymentAction -> () #

Eq DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

Ord DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

Hashable DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

type Rep DeploymentAction Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentAction

type Rep DeploymentAction = D1 ('MetaData "DeploymentAction" "Amazonka.GamesParks.Types.DeploymentAction" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "DeploymentAction'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDeploymentAction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

DeploymentState

newtype DeploymentState Source #

Constructors

DeploymentState' 

Instances

Instances details
FromJSON DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

FromJSONKey DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToJSON DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToJSONKey DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToByteString DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToHeader DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToLog DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToQuery DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

FromText DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToText DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

FromXML DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

ToXML DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

Methods

toXML :: DeploymentState -> XML #

Generic DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

Associated Types

type Rep DeploymentState :: Type -> Type #

Read DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

Show DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

NFData DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

Methods

rnf :: DeploymentState -> () #

Eq DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

Ord DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

Hashable DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

type Rep DeploymentState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentState

type Rep DeploymentState = D1 ('MetaData "DeploymentState" "Amazonka.GamesParks.Types.DeploymentState" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "DeploymentState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromDeploymentState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

GameState

newtype GameState Source #

Constructors

GameState' 

Fields

Bundled Patterns

pattern GameState_ACTIVE :: GameState 
pattern GameState_DELETING :: GameState 

Instances

Instances details
FromJSON GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

FromJSONKey GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToJSON GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToJSONKey GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToByteString GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Methods

toBS :: GameState -> ByteString #

ToHeader GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToLog GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToQuery GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

FromText GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToText GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Methods

toText :: GameState -> Text #

FromXML GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

ToXML GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Methods

toXML :: GameState -> XML #

Generic GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Associated Types

type Rep GameState :: Type -> Type #

Read GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Show GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

NFData GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Methods

rnf :: GameState -> () #

Eq GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Ord GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

Hashable GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

type Rep GameState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameState

type Rep GameState = D1 ('MetaData "GameState" "Amazonka.GamesParks.Types.GameState" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "GameState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromGameState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

GeneratedCodeJobState

newtype GeneratedCodeJobState Source #

Instances

Instances details
FromJSON GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

FromJSONKey GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToJSON GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToJSONKey GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToByteString GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToHeader GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToLog GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToQuery GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

FromText GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToText GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

FromXML GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

ToXML GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

Generic GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

Associated Types

type Rep GeneratedCodeJobState :: Type -> Type #

Read GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

Show GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

NFData GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

Methods

rnf :: GeneratedCodeJobState -> () #

Eq GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

Ord GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

Hashable GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

type Rep GeneratedCodeJobState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobState

type Rep GeneratedCodeJobState = D1 ('MetaData "GeneratedCodeJobState" "Amazonka.GamesParks.Types.GeneratedCodeJobState" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "GeneratedCodeJobState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromGeneratedCodeJobState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Operation

newtype Operation Source #

Constructors

Operation' 

Fields

Bundled Patterns

pattern Operation_ADD :: Operation 
pattern Operation_REMOVE :: Operation 
pattern Operation_REPLACE :: Operation 

Instances

Instances details
FromJSON Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

FromJSONKey Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToJSON Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToJSONKey Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToByteString Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Methods

toBS :: Operation -> ByteString #

ToHeader Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToLog Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToQuery Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

FromText Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToText Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Methods

toText :: Operation -> Text #

FromXML Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

ToXML Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Methods

toXML :: Operation -> XML #

Generic Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Associated Types

type Rep Operation :: Type -> Type #

Read Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Show Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

NFData Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Methods

rnf :: Operation -> () #

Eq Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Ord Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

Hashable Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

type Rep Operation Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Operation

type Rep Operation = D1 ('MetaData "Operation" "Amazonka.GamesParks.Types.Operation" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "Operation'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromOperation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

ResultCode

newtype ResultCode Source #

Constructors

ResultCode' 

Fields

Instances

Instances details
FromJSON ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

FromJSONKey ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToJSON ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToJSONKey ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToByteString ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToHeader ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToLog ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToQuery ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

FromText ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToText ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Methods

toText :: ResultCode -> Text #

FromXML ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

ToXML ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Methods

toXML :: ResultCode -> XML #

Generic ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Associated Types

type Rep ResultCode :: Type -> Type #

Read ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Show ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

NFData ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Methods

rnf :: ResultCode -> () #

Eq ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Ord ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

Hashable ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

type Rep ResultCode Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ResultCode

type Rep ResultCode = D1 ('MetaData "ResultCode" "Amazonka.GamesParks.Types.ResultCode" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "ResultCode'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromResultCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

StageState

newtype StageState Source #

Constructors

StageState' 

Fields

Bundled Patterns

pattern StageState_ACTIVE :: StageState 
pattern StageState_DELETING :: StageState 

Instances

Instances details
FromJSON StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

FromJSONKey StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToJSON StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToJSONKey StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToByteString StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToHeader StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToLog StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToQuery StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

FromText StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToText StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Methods

toText :: StageState -> Text #

FromXML StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

ToXML StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Methods

toXML :: StageState -> XML #

Generic StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Associated Types

type Rep StageState :: Type -> Type #

Read StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Show StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

NFData StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Methods

rnf :: StageState -> () #

Eq StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Ord StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

Hashable StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

type Rep StageState Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageState

type Rep StageState = D1 ('MetaData "StageState" "Amazonka.GamesParks.Types.StageState" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'True) (C1 ('MetaCons "StageState'" 'PrefixI 'True) (S1 ('MetaSel ('Just "fromStageState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)))

Connection

data Connection Source #

Details about a WebSocket connection.

See: newConnection smart constructor.

Constructors

Connection' (Maybe ISO8601) (Maybe Text) 

Instances

Instances details
FromJSON Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

Generic Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

Associated Types

type Rep Connection :: Type -> Type #

Read Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

Show Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

NFData Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

Methods

rnf :: Connection -> () #

Eq Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

Hashable Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

type Rep Connection Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Connection

type Rep Connection = D1 ('MetaData "Connection" "Amazonka.GamesParks.Types.Connection" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "Connection'" 'PrefixI 'True) (S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newConnection :: Connection Source #

Create a value of Connection 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:created:Connection', connection_created - The date and time when the connection was created.

$sel:id:Connection', connection_id - The identifier used to indicate a specific WebSocket connection.

DeploymentResult

data DeploymentResult Source #

The result of the deployment.

See: newDeploymentResult smart constructor.

Instances

Instances details
FromJSON DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

Generic DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

Associated Types

type Rep DeploymentResult :: Type -> Type #

Read DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

Show DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

NFData DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

Methods

rnf :: DeploymentResult -> () #

Eq DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

Hashable DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

type Rep DeploymentResult Source # 
Instance details

Defined in Amazonka.GamesParks.Types.DeploymentResult

type Rep DeploymentResult = D1 ('MetaData "DeploymentResult" "Amazonka.GamesParks.Types.DeploymentResult" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "DeploymentResult'" 'PrefixI 'True) (S1 ('MetaSel ('Just "message") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "resultCode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ResultCode))))

newDeploymentResult :: DeploymentResult Source #

Create a value of DeploymentResult 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:message:DeploymentResult', deploymentResult_message - Details about the deployment result.

$sel:resultCode:DeploymentResult', deploymentResult_resultCode - The type of deployment result.

Document

data Document Source #

See: newDocument smart constructor.

Constructors

Document' 

Instances

Instances details
FromJSON Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

ToJSON Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

Generic Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

Associated Types

type Rep Document :: Type -> Type #

Methods

from :: Document -> Rep Document x #

to :: Rep Document x -> Document #

Read Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

Show Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

NFData Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

Methods

rnf :: Document -> () #

Eq Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

Hashable Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

Methods

hashWithSalt :: Int -> Document -> Int #

hash :: Document -> Int #

type Rep Document Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Document

type Rep Document = D1 ('MetaData "Document" "Amazonka.GamesParks.Types.Document" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "Document'" 'PrefixI 'False) (U1 :: Type -> Type))

newDocument :: Document Source #

Create a value of Document with all optional fields omitted.

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

ExtensionDetails

data ExtensionDetails Source #

Details about the extension.

See: newExtensionDetails smart constructor.

Instances

Instances details
FromJSON ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

Generic ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

Associated Types

type Rep ExtensionDetails :: Type -> Type #

Read ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

Show ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

NFData ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

Methods

rnf :: ExtensionDetails -> () #

Eq ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

Hashable ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

type Rep ExtensionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionDetails

type Rep ExtensionDetails = D1 ('MetaData "ExtensionDetails" "Amazonka.GamesParks.Types.ExtensionDetails" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ExtensionDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newExtensionDetails :: ExtensionDetails Source #

Create a value of ExtensionDetails 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:description:ExtensionDetails', extensionDetails_description - The description of the extension.

$sel:name:ExtensionDetails', extensionDetails_name - The name of the extension.

$sel:namespace:ExtensionDetails', extensionDetails_namespace - The namespace (qualifier) of the extension.

ExtensionVersionDetails

data ExtensionVersionDetails Source #

Details about the extension version.

See: newExtensionVersionDetails smart constructor.

Instances

Instances details
FromJSON ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

Generic ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

Associated Types

type Rep ExtensionVersionDetails :: Type -> Type #

Read ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

Show ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

NFData ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

Methods

rnf :: ExtensionVersionDetails -> () #

Eq ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

Hashable ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

type Rep ExtensionVersionDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ExtensionVersionDetails

type Rep ExtensionVersionDetails = D1 ('MetaData "ExtensionVersionDetails" "Amazonka.GamesParks.Types.ExtensionVersionDetails" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ExtensionVersionDetails'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "schema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "version") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newExtensionVersionDetails :: ExtensionVersionDetails Source #

Create a value of ExtensionVersionDetails 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:name:ExtensionVersionDetails', extensionVersionDetails_name - The name of the extension.

$sel:namespace:ExtensionVersionDetails', extensionVersionDetails_namespace - The namespace (qualifier) of the extension.

$sel:schema:ExtensionVersionDetails', extensionVersionDetails_schema - The model that defines the interface for this extension version.

$sel:version:ExtensionVersionDetails', extensionVersionDetails_version - The version of the extension.

GameConfigurationDetails

data GameConfigurationDetails Source #

Details about the game configuration.

The game configuration is organized into named sections, where the schema of each section is defined by an extension. The schema for these sections can be retrieved using the GetExtensionVersion operation.

See: newGameConfigurationDetails smart constructor.

Instances

Instances details
FromJSON GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

Generic GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

Associated Types

type Rep GameConfigurationDetails :: Type -> Type #

Read GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

Show GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

NFData GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

Eq GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

Hashable GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

type Rep GameConfigurationDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameConfigurationDetails

type Rep GameConfigurationDetails = D1 ('MetaData "GameConfigurationDetails" "Amazonka.GamesParks.Types.GameConfigurationDetails" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GameConfigurationDetails'" 'PrefixI 'True) (S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: (S1 ('MetaSel ('Just "lastUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "sections") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Section))))))

newGameConfigurationDetails :: GameConfigurationDetails Source #

Create a value of GameConfigurationDetails 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:created:GameConfigurationDetails', gameConfigurationDetails_created - The date when the game was created.

$sel:lastUpdated:GameConfigurationDetails', gameConfigurationDetails_lastUpdated - The date when the game was last modified.

$sel:sections:GameConfigurationDetails', gameConfigurationDetails_sections - Configuration data, organized by section name.

GameDetails

data GameDetails Source #

Details about a game.

See: newGameDetails smart constructor.

Instances

Instances details
FromJSON GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

Generic GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

Associated Types

type Rep GameDetails :: Type -> Type #

Read GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

Show GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

NFData GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

Methods

rnf :: GameDetails -> () #

Eq GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

Hashable GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

type Rep GameDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameDetails

newGameDetails :: GameDetails Source #

Create a value of GameDetails 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:arn:GameDetails', gameDetails_arn - The Amazon Resource Name (ARN) of this game.

$sel:created:GameDetails', gameDetails_created - The date when the game was created.

$sel:description:GameDetails', gameDetails_description - The description of the game.

$sel:enableTerminationProtection:GameDetails', gameDetails_enableTerminationProtection - Determines if the game can be deleted.

$sel:lastUpdated:GameDetails', gameDetails_lastUpdated - The date when the game was last modified.

$sel:name:GameDetails', gameDetails_name - The name of the game.

$sel:state:GameDetails', gameDetails_state - The state of the game.

$sel:tags:GameDetails', gameDetails_tags - The tags associated with the game.

GameSummary

data GameSummary Source #

The summary of the properties of a game.

See: newGameSummary smart constructor.

Instances

Instances details
FromJSON GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

Generic GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

Associated Types

type Rep GameSummary :: Type -> Type #

Read GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

Show GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

NFData GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

Methods

rnf :: GameSummary -> () #

Eq GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

Hashable GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

type Rep GameSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GameSummary

type Rep GameSummary = D1 ('MetaData "GameSummary" "Amazonka.GamesParks.Types.GameSummary" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GameSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GameState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))))))

newGameSummary :: GameSummary Source #

Create a value of GameSummary 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:description:GameSummary', gameSummary_description - The description of the game.

$sel:name:GameSummary', gameSummary_name - The name of the game.

$sel:state:GameSummary', gameSummary_state - The state of the game.

$sel:tags:GameSummary', gameSummary_tags - The tags associated with the game.

GeneratedCodeJobDetails

data GeneratedCodeJobDetails Source #

Details about a generated code job.

See: newGeneratedCodeJobDetails smart constructor.

Instances

Instances details
FromJSON GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

Generic GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

Associated Types

type Rep GeneratedCodeJobDetails :: Type -> Type #

Read GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

Show GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

NFData GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

Methods

rnf :: GeneratedCodeJobDetails -> () #

Eq GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

Hashable GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

type Rep GeneratedCodeJobDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.GeneratedCodeJobDetails

type Rep GeneratedCodeJobDetails = D1 ('MetaData "GeneratedCodeJobDetails" "Amazonka.GamesParks.Types.GeneratedCodeJobDetails" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "GeneratedCodeJobDetails'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "expirationTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601))) :*: (S1 ('MetaSel ('Just "generatedCodeJobId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "s3Url") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe GeneratedCodeJobState))))))

newGeneratedCodeJobDetails :: GeneratedCodeJobDetails Source #

Create a value of GeneratedCodeJobDetails 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:description:GeneratedCodeJobDetails', generatedCodeJobDetails_description - The description of the generated code job.

$sel:expirationTime:GeneratedCodeJobDetails', generatedCodeJobDetails_expirationTime - The expiration date and time for the download URL.

The download URL us guaranteed to be available until at least this time.

$sel:generatedCodeJobId:GeneratedCodeJobDetails', generatedCodeJobDetails_generatedCodeJobId - The identifier for the generated code job.

$sel:s3Url:GeneratedCodeJobDetails', generatedCodeJobDetails_s3Url - A presigned URL that can be used to download the generated code.

$sel:status:GeneratedCodeJobDetails', generatedCodeJobDetails_status - The status of the generated code job

Generator

data Generator Source #

Properties that specify the code generator for a generated code job.

See: newGenerator smart constructor.

Constructors

Generator' (Maybe Text) (Maybe Text) (Maybe Text) 

Instances

Instances details
ToJSON Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

Generic Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

Associated Types

type Rep Generator :: Type -> Type #

Read Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

Show Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

NFData Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

Methods

rnf :: Generator -> () #

Eq Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

Hashable Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

type Rep Generator Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Generator

type Rep Generator = D1 ('MetaData "Generator" "Amazonka.GamesParks.Types.Generator" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "Generator'" 'PrefixI 'True) (S1 ('MetaSel ('Just "gameSdkVersion") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "language") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "targetPlatform") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newGenerator :: Generator Source #

Create a value of Generator 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:gameSdkVersion:Generator', generator_gameSdkVersion - The target version of the GameSparks Game SDK.

$sel:language:Generator', generator_language - The programming language for the generated code.

Not all languages are supported for each platform. For cases where multiple languages are supported, this parameter specifies the language to be used. If this value is omitted, the default language for the target platform will be used.

$sel:targetPlatform:Generator', generator_targetPlatform - The platform that will be used to run the generated code.

ImportGameConfigurationSource

data ImportGameConfigurationSource Source #

The source used to import configuration sections.

See: newImportGameConfigurationSource smart constructor.

Instances

Instances details
ToJSON ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

Generic ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

Associated Types

type Rep ImportGameConfigurationSource :: Type -> Type #

Read ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

Show ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

NFData ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

Eq ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

Hashable ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

type Rep ImportGameConfigurationSource Source # 
Instance details

Defined in Amazonka.GamesParks.Types.ImportGameConfigurationSource

type Rep ImportGameConfigurationSource = D1 ('MetaData "ImportGameConfigurationSource" "Amazonka.GamesParks.Types.ImportGameConfigurationSource" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "ImportGameConfigurationSource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "file") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Base64)))

newImportGameConfigurationSource Source #

Create a value of ImportGameConfigurationSource 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:file:ImportGameConfigurationSource', importGameConfigurationSource_file - The JSON string containing the configuration sections.-- -- Note: This Lens automatically encodes and decodes Base64 data. -- The underlying isomorphism will encode to Base64 representation during -- serialisation, and decode from Base64 representation during deserialisation. -- This Lens accepts and returns only raw unencoded data.

Section

data Section Source #

The configuration section.

See: newSection smart constructor.

Instances

Instances details
FromJSON Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

Generic Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

Associated Types

type Rep Section :: Type -> Type #

Methods

from :: Section -> Rep Section x #

to :: Rep Section x -> Section #

Read Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

Show Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

NFData Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

Methods

rnf :: Section -> () #

Eq Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

Methods

(==) :: Section -> Section -> Bool #

(/=) :: Section -> Section -> Bool #

Hashable Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

Methods

hashWithSalt :: Int -> Section -> Int #

hash :: Section -> Int #

type Rep Section Source # 
Instance details

Defined in Amazonka.GamesParks.Types.Section

type Rep Section = D1 ('MetaData "Section" "Amazonka.GamesParks.Types.Section" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "Section'" 'PrefixI 'True) (S1 ('MetaSel ('Just "attributes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Document)) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "size") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))

newSection :: Section Source #

Create a value of Section 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:attributes:Section', section_attributes - The content of a configuration section.

$sel:name:Section', section_name - The name of the section.

$sel:size:Section', section_size - The size, in bytes, of the section contents.

SectionModification

data SectionModification Source #

A single modification to the configuration section.

See: newSectionModification smart constructor.

Instances

Instances details
ToJSON SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

Generic SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

Associated Types

type Rep SectionModification :: Type -> Type #

Read SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

Show SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

NFData SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

Methods

rnf :: SectionModification -> () #

Eq SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

Hashable SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

type Rep SectionModification Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SectionModification

type Rep SectionModification = D1 ('MetaData "SectionModification" "Amazonka.GamesParks.Types.SectionModification" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "SectionModification'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Document)) :*: S1 ('MetaSel ('Just "operation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Operation)) :*: (S1 ('MetaSel ('Just "path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "section") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newSectionModification Source #

Create a value of SectionModification 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:value:SectionModification', sectionModification_value - For add and replace operations, this is the value that will be used.

This field should be omitted for delete operations.

$sel:operation:SectionModification', sectionModification_operation - The operation to be performed on a configuration section.

Content can be added, deleted, or replaced within a section.

$sel:path:SectionModification', sectionModification_path - The path within the section content to be modified.

$sel:section:SectionModification', sectionModification_section - The name of the section to be modified.

SnapshotDetails

data SnapshotDetails Source #

Properties that provide details of a snapshot.

See: newSnapshotDetails smart constructor.

Instances

Instances details
FromJSON SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

Generic SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

Associated Types

type Rep SnapshotDetails :: Type -> Type #

Read SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

Show SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

NFData SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

Methods

rnf :: SnapshotDetails -> () #

Eq SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

Hashable SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

type Rep SnapshotDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotDetails

type Rep SnapshotDetails = D1 ('MetaData "SnapshotDetails" "Amazonka.GamesParks.Types.SnapshotDetails" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "SnapshotDetails'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "lastUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "sections") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Section)))))))

newSnapshotDetails :: SnapshotDetails Source #

Create a value of SnapshotDetails 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:created:SnapshotDetails', snapshotDetails_created - The timestamp of when the snapshot was created.

$sel:description:SnapshotDetails', snapshotDetails_description - The description of the snapshot.

$sel:id:SnapshotDetails', snapshotDetails_id - The identifier of the snapshot.

$sel:lastUpdated:SnapshotDetails', snapshotDetails_lastUpdated - The timestamp of when the snapshot was last updated.

$sel:sections:SnapshotDetails', snapshotDetails_sections - The sections in the snapshot.

SnapshotSummary

data SnapshotSummary Source #

The summary of the properties of a snapshot.

See: newSnapshotSummary smart constructor.

Instances

Instances details
FromJSON SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

Generic SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

Associated Types

type Rep SnapshotSummary :: Type -> Type #

Read SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

Show SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

NFData SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

Methods

rnf :: SnapshotSummary -> () #

Eq SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

Hashable SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

type Rep SnapshotSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.SnapshotSummary

type Rep SnapshotSummary = D1 ('MetaData "SnapshotSummary" "Amazonka.GamesParks.Types.SnapshotSummary" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "SnapshotSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "id") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "lastUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)))))

newSnapshotSummary :: SnapshotSummary Source #

Create a value of SnapshotSummary 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:created:SnapshotSummary', snapshotSummary_created - The timestamp of when the snapshot was created.

$sel:description:SnapshotSummary', snapshotSummary_description - The description of the snapshot.

$sel:id:SnapshotSummary', snapshotSummary_id - The identifier of the snapshot.

$sel:lastUpdated:SnapshotSummary', snapshotSummary_lastUpdated - Then timestamp of when the snapshot was last updated.

StageDeploymentDetails

data StageDeploymentDetails Source #

Properties that provide details of a stage deployment.

See: newStageDeploymentDetails smart constructor.

Instances

Instances details
FromJSON StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

Generic StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

Associated Types

type Rep StageDeploymentDetails :: Type -> Type #

Read StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

Show StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

NFData StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

Methods

rnf :: StageDeploymentDetails -> () #

Eq StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

Hashable StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

type Rep StageDeploymentDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentDetails

type Rep StageDeploymentDetails = D1 ('MetaData "StageDeploymentDetails" "Amazonka.GamesParks.Types.StageDeploymentDetails" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StageDeploymentDetails'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "created") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: (S1 ('MetaSel ('Just "deploymentAction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentAction)) :*: S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 ('MetaSel ('Just "deploymentResult") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentResult)) :*: S1 ('MetaSel ('Just "deploymentState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentState))) :*: (S1 ('MetaSel ('Just "lastUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newStageDeploymentDetails :: StageDeploymentDetails Source #

Create a value of StageDeploymentDetails 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:created:StageDeploymentDetails', stageDeploymentDetails_created - The timestamp of when the stage deployment was created.

$sel:deploymentAction:StageDeploymentDetails', stageDeploymentDetails_deploymentAction - The type of action of the stage deployment.

$sel:deploymentId:StageDeploymentDetails', stageDeploymentDetails_deploymentId - The identifier of the deployment.

$sel:deploymentResult:StageDeploymentDetails', stageDeploymentDetails_deploymentResult - The result of the deployment.

$sel:deploymentState:StageDeploymentDetails', stageDeploymentDetails_deploymentState - The state of the deployment.

$sel:lastUpdated:StageDeploymentDetails', stageDeploymentDetails_lastUpdated - The timestamp of when the deployment was last updated.

$sel:snapshotId:StageDeploymentDetails', stageDeploymentDetails_snapshotId - The identifier of the snapshot associated with the stage deployment.

StageDeploymentSummary

data StageDeploymentSummary Source #

The summary of the properties of a stage deployment.

See: newStageDeploymentSummary smart constructor.

Instances

Instances details
FromJSON StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

Generic StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

Associated Types

type Rep StageDeploymentSummary :: Type -> Type #

Read StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

Show StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

NFData StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

Methods

rnf :: StageDeploymentSummary -> () #

Eq StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

Hashable StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

type Rep StageDeploymentSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDeploymentSummary

type Rep StageDeploymentSummary = D1 ('MetaData "StageDeploymentSummary" "Amazonka.GamesParks.Types.StageDeploymentSummary" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StageDeploymentSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "deploymentAction") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentAction)) :*: (S1 ('MetaSel ('Just "deploymentId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "deploymentResult") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentResult)))) :*: (S1 ('MetaSel ('Just "deploymentState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe DeploymentState)) :*: (S1 ('MetaSel ('Just "lastUpdated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ISO8601)) :*: S1 ('MetaSel ('Just "snapshotId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))))

newStageDeploymentSummary :: StageDeploymentSummary Source #

Create a value of StageDeploymentSummary 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:deploymentAction:StageDeploymentSummary', stageDeploymentSummary_deploymentAction - The type of action of the deployment.

$sel:deploymentId:StageDeploymentSummary', stageDeploymentSummary_deploymentId - The identifier of the deployment.

$sel:deploymentResult:StageDeploymentSummary', stageDeploymentSummary_deploymentResult - The result of the deployment.

$sel:deploymentState:StageDeploymentSummary', stageDeploymentSummary_deploymentState - The state of the deployment.

$sel:lastUpdated:StageDeploymentSummary', stageDeploymentSummary_lastUpdated - The timestamp of when the deployment was last updated.

$sel:snapshotId:StageDeploymentSummary', stageDeploymentSummary_snapshotId - The identifier of the snapshot associated with the stage deployment.

StageDetails

data StageDetails Source #

Properties that provide details of a stage.

See: newStageDetails smart constructor.

Instances

Instances details
FromJSON StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

Generic StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

Associated Types

type Rep StageDetails :: Type -> Type #

Read StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

Show StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

NFData StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

Methods

rnf :: StageDetails -> () #

Eq StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

Hashable StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

type Rep StageDetails Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageDetails

newStageDetails :: StageDetails Source #

Create a value of StageDetails 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:arn:StageDetails', stageDetails_arn - The Amazon Resource Name (ARN) of the stage.

$sel:created:StageDetails', stageDetails_created - The timestamp of when the stage was created.

$sel:description:StageDetails', stageDetails_description - The description of the stage.

$sel:gameKey:StageDetails', stageDetails_gameKey - The game key associated with the stage.

The game key is a unique identifier that the game client uses to connect to the GameSparks backend.

$sel:lastUpdated:StageDetails', stageDetails_lastUpdated - The timestamp of when the stage was last updated.

$sel:logGroup:StageDetails', stageDetails_logGroup - The Amazon CloudWatch log group for game runtimes deployed to the stage.

$sel:name:StageDetails', stageDetails_name - The name of the stage.

$sel:role':StageDetails', stageDetails_role - The Amazon Resource Name (ARN) of the role used to run the game runtimes deployed to the stage.

$sel:state:StageDetails', stageDetails_state - The state of the stage.

$sel:tags:StageDetails', stageDetails_tags - The tags associated with the stage.

StageSummary

data StageSummary Source #

The summary of the properties of a stage.

See: newStageSummary smart constructor.

Instances

Instances details
FromJSON StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

Generic StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

Associated Types

type Rep StageSummary :: Type -> Type #

Read StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

Show StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

NFData StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

Methods

rnf :: StageSummary -> () #

Eq StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

Hashable StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

type Rep StageSummary Source # 
Instance details

Defined in Amazonka.GamesParks.Types.StageSummary

type Rep StageSummary = D1 ('MetaData "StageSummary" "Amazonka.GamesParks.Types.StageSummary" "amazonka-gamesparks-2.0-Lk18zLarGCU67rMOwLlDG5" 'False) (C1 ('MetaCons "StageSummary'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "gameKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "state") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe StageState)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text)))))))

newStageSummary :: StageSummary Source #

Create a value of StageSummary 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:description:StageSummary', stageSummary_description - The description of the stage.

$sel:gameKey:StageSummary', stageSummary_gameKey - The game key associated with the stage.

The game key is a unique identifier that the game client uses to connect to the GameSparks backend.

$sel:name:StageSummary', stageSummary_name - The name of the stage.

$sel:state:StageSummary', stageSummary_state - The state of the stage.

$sel:tags:StageSummary', stageSummary_tags - The tags associated with the stage.