{-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.AppStream -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- __Amazon AppStream 2.0__ -- -- API documentation for Amazon AppStream 2.0. -- module Network.AWS.AppStream ( -- * Service Configuration appStream -- * Errors -- $errors -- ** InvalidRoleException , _InvalidRoleException -- ** ResourceAlreadyExistsException , _ResourceAlreadyExistsException -- ** OperationNotPermittedException , _OperationNotPermittedException -- ** ResourceNotFoundException , _ResourceNotFoundException -- ** ResourceNotAvailableException , _ResourceNotAvailableException -- ** LimitExceededException , _LimitExceededException -- ** ResourceInUseException , _ResourceInUseException -- * Waiters -- $waiters -- * Operations -- $operations -- ** DisassociateFleet , module Network.AWS.AppStream.DisassociateFleet -- ** ListAssociatedFleets , module Network.AWS.AppStream.ListAssociatedFleets -- ** DeleteStack , module Network.AWS.AppStream.DeleteStack -- ** UpdateStack , module Network.AWS.AppStream.UpdateStack -- ** ListAssociatedStacks , module Network.AWS.AppStream.ListAssociatedStacks -- ** DeleteFleet , module Network.AWS.AppStream.DeleteFleet -- ** UpdateFleet , module Network.AWS.AppStream.UpdateFleet -- ** AssociateFleet , module Network.AWS.AppStream.AssociateFleet -- ** DescribeSessions , module Network.AWS.AppStream.DescribeSessions -- ** DescribeStacks , module Network.AWS.AppStream.DescribeStacks -- ** DescribeFleets , module Network.AWS.AppStream.DescribeFleets -- ** StopFleet , module Network.AWS.AppStream.StopFleet -- ** CreateFleet , module Network.AWS.AppStream.CreateFleet -- ** CreateStack , module Network.AWS.AppStream.CreateStack -- ** ExpireSession , module Network.AWS.AppStream.ExpireSession -- ** CreateStreamingURL , module Network.AWS.AppStream.CreateStreamingURL -- ** StartFleet , module Network.AWS.AppStream.StartFleet -- ** DescribeImages , module Network.AWS.AppStream.DescribeImages -- * Types -- ** FleetErrorCode , FleetErrorCode (..) -- ** FleetState , FleetState (..) -- ** ImageState , ImageState (..) -- ** ImageStateChangeReasonCode , ImageStateChangeReasonCode (..) -- ** PlatformType , PlatformType (..) -- ** SessionState , SessionState (..) -- ** VisibilityType , VisibilityType (..) -- ** Application , Application , application , aEnabled , aLaunchPath , aLaunchParameters , aName , aDisplayName , aMetadata , aIconURL -- ** ComputeCapacity , ComputeCapacity , computeCapacity , ccDesiredInstances -- ** ComputeCapacityStatus , ComputeCapacityStatus , computeCapacityStatus , ccsInUse , ccsRunning , ccsAvailable , ccsDesired -- ** Fleet , Fleet , fleet , fDisconnectTimeoutInSeconds , fMaxUserDurationInSeconds , fCreatedTime , fVPCConfig , fFleetErrors , fDisplayName , fDescription , fARN , fName , fImageName , fInstanceType , fComputeCapacityStatus , fState -- ** FleetError , FleetError , fleetError , feErrorCode , feErrorMessage -- ** Image , Image , image , iState , iPlatform , iStateChangeReason , iARN , iCreatedTime , iVisibility , iBaseImageARN , iDisplayName , iDescription , iApplications , iName -- ** ImageStateChangeReason , ImageStateChangeReason , imageStateChangeReason , iscrCode , iscrMessage -- ** Session , Session , session , sId , sUserId , sStackName , sFleetName , sState -- ** Stack , Stack , stack , sARN , sCreatedTime , sDisplayName , sDescription , sName -- ** VPCConfig , VPCConfig , vpcConfig , vcSubnetIds ) where import Network.AWS.AppStream.AssociateFleet import Network.AWS.AppStream.CreateFleet import Network.AWS.AppStream.CreateStack import Network.AWS.AppStream.CreateStreamingURL import Network.AWS.AppStream.DeleteFleet import Network.AWS.AppStream.DeleteStack import Network.AWS.AppStream.DescribeFleets import Network.AWS.AppStream.DescribeImages import Network.AWS.AppStream.DescribeSessions import Network.AWS.AppStream.DescribeStacks import Network.AWS.AppStream.DisassociateFleet import Network.AWS.AppStream.ExpireSession import Network.AWS.AppStream.ListAssociatedFleets import Network.AWS.AppStream.ListAssociatedStacks import Network.AWS.AppStream.StartFleet import Network.AWS.AppStream.StopFleet import Network.AWS.AppStream.Types import Network.AWS.AppStream.UpdateFleet import Network.AWS.AppStream.UpdateStack import Network.AWS.AppStream.Waiters {- $errors Error matchers are designed for use with the functions provided by . This allows catching (and rethrowing) service specific errors returned by 'AppStream'. -} {- $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. -} {- $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. -}