{-# 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.OpsWorksCM
-- Copyright   : (c) 2013-2016 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- __AWS OpsWorks for Chef Automate__
--
-- A service that runs and manages configuration management servers.
--
-- Glossary of terms
--
--     * __Server__ : A server is a configuration management server, and can be highly-available. The configuration manager runs on your instances by using various AWS services, such as Amazon Elastic Compute Cloud (EC2), and potentially Amazon Relational Database Service (RDS). A server is a generic abstraction over the configuration manager that you want to use, much like Amazon RDS. In AWS OpsWorks for Chef Automate, you do not start or stop servers. After you create servers, they continue to run until they are deleted.
--
--     * __Engine__ : The specific configuration manager that you want to use (such as @Chef@ ) is the engine.
--
--     * __Backup__ : This is an application-level backup of the data that the configuration manager stores. A backup creates a .tar.gz file that is stored in an Amazon Simple Storage Service (S3) bucket in your account. AWS OpsWorks for Chef Automate creates the S3 bucket when you launch the first instance. A backup maintains a snapshot of all of a server's important attributes at the time of the backup.
--
--     * __Events__ : Events are always related to a server. Events are written during server creation, when health checks run, when backups are created, etc. When you delete a server, the server's events are also deleted.
--
--     * __AccountAttributes__ : Every account has attributes that are assigned in the AWS OpsWorks for Chef Automate database. These attributes store information about configuration limits (servers, backups, etc.) and your customer account.
--
--
--
-- Throttling limits
--
-- All API operations allow for 5 requests per second with a burst of 10 requests per second.
--
module Network.AWS.OpsWorksCM
    (
    -- * Service Configuration
      opsWorksCM

    -- * Errors
    -- $errors

    -- ** ValidationException
    , _ValidationException

    -- ** ResourceAlreadyExistsException
    , _ResourceAlreadyExistsException

    -- ** InvalidNextTokenException
    , _InvalidNextTokenException

    -- ** ResourceNotFoundException
    , _ResourceNotFoundException

    -- ** InvalidStateException
    , _InvalidStateException

    -- ** LimitExceededException
    , _LimitExceededException

    -- * Waiters
    -- $waiters

    -- * Operations
    -- $operations

    -- ** AssociateNode
    , module Network.AWS.OpsWorksCM.AssociateNode

    -- ** UpdateServer
    , module Network.AWS.OpsWorksCM.UpdateServer

    -- ** DeleteServer
    , module Network.AWS.OpsWorksCM.DeleteServer

    -- ** DeleteBackup
    , module Network.AWS.OpsWorksCM.DeleteBackup

    -- ** DescribeEvents
    , module Network.AWS.OpsWorksCM.DescribeEvents

    -- ** DisassociateNode
    , module Network.AWS.OpsWorksCM.DisassociateNode

    -- ** CreateBackup
    , module Network.AWS.OpsWorksCM.CreateBackup

    -- ** UpdateServerEngineAttributes
    , module Network.AWS.OpsWorksCM.UpdateServerEngineAttributes

    -- ** StartMaintenance
    , module Network.AWS.OpsWorksCM.StartMaintenance

    -- ** DescribeBackups
    , module Network.AWS.OpsWorksCM.DescribeBackups

    -- ** CreateServer
    , module Network.AWS.OpsWorksCM.CreateServer

    -- ** RestoreServer
    , module Network.AWS.OpsWorksCM.RestoreServer

    -- ** DescribeNodeAssociationStatus
    , module Network.AWS.OpsWorksCM.DescribeNodeAssociationStatus

    -- ** DescribeAccountAttributes
    , module Network.AWS.OpsWorksCM.DescribeAccountAttributes

    -- ** DescribeServers
    , module Network.AWS.OpsWorksCM.DescribeServers

    -- * Types

    -- ** BackupStatus
    , BackupStatus (..)

    -- ** BackupType
    , BackupType (..)

    -- ** MaintenanceStatus
    , MaintenanceStatus (..)

    -- ** NodeAssociationStatus
    , NodeAssociationStatus (..)

    -- ** ServerStatus
    , ServerStatus (..)

    -- ** AccountAttribute
    , AccountAttribute
    , accountAttribute
    , aaUsed
    , aaMaximum
    , aaName

    -- ** Backup
    , Backup
    , backup
    , bEngineVersion
    , bServiceRoleARN
    , bStatus
    , bInstanceProfileARN
    , bSecurityGroupIds
    , bStatusDescription
    , bServerName
    , bSubnetIds
    , bKeyPair
    , bCreatedAt
    , bBackupId
    , bEngine
    , bInstanceType
    , bEngineModel
    , bPreferredMaintenanceWindow
    , bUserARN
    , bPreferredBackupWindow
    , bS3LogURL
    , bS3DataSize
    , bBackupARN
    , bS3DataURL
    , bDescription
    , bBackupType
    , bToolsVersion

    -- ** EngineAttribute
    , EngineAttribute
    , engineAttribute
    , eaValue
    , eaName

    -- ** Server
    , Server
    , server
    , sEngineVersion
    , sServiceRoleARN
    , sDisableAutomatedBackup
    , sStatus
    , sInstanceProfileARN
    , sSecurityGroupIds
    , sServerName
    , sSubnetIds
    , sKeyPair
    , sCreatedAt
    , sServerARN
    , sEngine
    , sMaintenanceStatus
    , sInstanceType
    , sEngineModel
    , sEngineAttributes
    , sPreferredMaintenanceWindow
    , sPreferredBackupWindow
    , sStatusReason
    , sEndpoint
    , sBackupRetentionCount

    -- ** ServerEvent
    , ServerEvent
    , serverEvent
    , seLogURL
    , seServerName
    , seCreatedAt
    , seMessage
    ) where

import           Network.AWS.OpsWorksCM.AssociateNode
import           Network.AWS.OpsWorksCM.CreateBackup
import           Network.AWS.OpsWorksCM.CreateServer
import           Network.AWS.OpsWorksCM.DeleteBackup
import           Network.AWS.OpsWorksCM.DeleteServer
import           Network.AWS.OpsWorksCM.DescribeAccountAttributes
import           Network.AWS.OpsWorksCM.DescribeBackups
import           Network.AWS.OpsWorksCM.DescribeEvents
import           Network.AWS.OpsWorksCM.DescribeNodeAssociationStatus
import           Network.AWS.OpsWorksCM.DescribeServers
import           Network.AWS.OpsWorksCM.DisassociateNode
import           Network.AWS.OpsWorksCM.RestoreServer
import           Network.AWS.OpsWorksCM.StartMaintenance
import           Network.AWS.OpsWorksCM.Types
import           Network.AWS.OpsWorksCM.UpdateServer
import           Network.AWS.OpsWorksCM.UpdateServerEngineAttributes
import           Network.AWS.OpsWorksCM.Waiters

{- $errors
Error matchers are designed for use with the functions provided by
<http://hackage.haskell.org/package/lens/docs/Control-Exception-Lens.html Control.Exception.Lens>.
This allows catching (and rethrowing) service specific errors returned
by 'OpsWorksCM'.
-}

{- $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.
-}