amazonka-gamelift-2.0: Amazon GameLift 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.GameLift.Types.LocationAttributes

Description

 
Synopsis

Documentation

data LocationAttributes Source #

Details about a location in a multi-location fleet.

See: newLocationAttributes smart constructor.

Constructors

LocationAttributes' 

Fields

Instances

Instances details
FromJSON LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

Generic LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

Associated Types

type Rep LocationAttributes :: Type -> Type #

Read LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

Show LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

NFData LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

Methods

rnf :: LocationAttributes -> () #

Eq LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

Hashable LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

type Rep LocationAttributes Source # 
Instance details

Defined in Amazonka.GameLift.Types.LocationAttributes

type Rep LocationAttributes = D1 ('MetaData "LocationAttributes" "Amazonka.GameLift.Types.LocationAttributes" "amazonka-gamelift-2.0-IjhNQby9jLV6gj30IrgsyK" 'False) (C1 ('MetaCons "LocationAttributes'" 'PrefixI 'True) (S1 ('MetaSel ('Just "locationState") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LocationState)) :*: (S1 ('MetaSel ('Just "stoppedActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (NonEmpty FleetAction))) :*: S1 ('MetaSel ('Just "updateStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe LocationUpdateStatus)))))

newLocationAttributes :: LocationAttributes Source #

Create a value of LocationAttributes 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:locationState:LocationAttributes', locationAttributes_locationState - A fleet location and its current life-cycle state.

$sel:stoppedActions:LocationAttributes', locationAttributes_stoppedActions - A list of fleet actions that have been suspended in the fleet location.

$sel:updateStatus:LocationAttributes', locationAttributes_updateStatus - The status of fleet activity updates to the location. The status PENDING_UPDATE indicates that StopFleetActions or StartFleetActions has been requested but the update has not yet been completed for the location.

locationAttributes_locationState :: Lens' LocationAttributes (Maybe LocationState) Source #

A fleet location and its current life-cycle state.

locationAttributes_stoppedActions :: Lens' LocationAttributes (Maybe (NonEmpty FleetAction)) Source #

A list of fleet actions that have been suspended in the fleet location.

locationAttributes_updateStatus :: Lens' LocationAttributes (Maybe LocationUpdateStatus) Source #

The status of fleet activity updates to the location. The status PENDING_UPDATE indicates that StopFleetActions or StartFleetActions has been requested but the update has not yet been completed for the location.