amazonka-storagegateway-0.3.4: gen/Network/AWS/StorageGateway/DescribeSnapshotSchedule.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- Module : Network.AWS.StorageGateway.DescribeSnapshotSchedule
-- Copyright : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- License : This Source Code Form is subject to the terms of
-- the Mozilla Public License, v. 2.0.
-- A copy of the MPL can be found in the LICENSE file or
-- you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : experimental
-- Portability : non-portable (GHC extensions)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- | This operation describes the snapshot schedule for the specified gateway
-- volume. The snapshot schedule information includes intervals at which
-- snapshots are automatically initiated on the volume.
--
-- <http://docs.aws.amazon.com/storagegateway/latest/APIReference/API_DescribeSnapshotSchedule.html>
module Network.AWS.StorageGateway.DescribeSnapshotSchedule
(
-- * Request
DescribeSnapshotSchedule
-- ** Request constructor
, describeSnapshotSchedule
-- ** Request lenses
, dssVolumeARN
-- * Response
, DescribeSnapshotScheduleResponse
-- ** Response constructor
, describeSnapshotScheduleResponse
-- ** Response lenses
, dssrDescription
, dssrRecurrenceInHours
, dssrStartAt
, dssrTimezone
, dssrVolumeARN
) where
import Network.AWS.Data (Object)
import Network.AWS.Prelude
import Network.AWS.Request.JSON
import Network.AWS.StorageGateway.Types
import qualified GHC.Exts
newtype DescribeSnapshotSchedule = DescribeSnapshotSchedule
{ _dssVolumeARN :: Text
} deriving (Eq, Ord, Read, Show, Monoid, IsString)
-- | 'DescribeSnapshotSchedule' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'dssVolumeARN' @::@ 'Text'
--
describeSnapshotSchedule :: Text -- ^ 'dssVolumeARN'
-> DescribeSnapshotSchedule
describeSnapshotSchedule p1 = DescribeSnapshotSchedule
{ _dssVolumeARN = p1
}
-- | The Amazon Resource Name (ARN) of the volume. Use the 'ListVolumes' operation
-- to return a list of gateway volumes.
dssVolumeARN :: Lens' DescribeSnapshotSchedule Text
dssVolumeARN = lens _dssVolumeARN (\s a -> s { _dssVolumeARN = a })
data DescribeSnapshotScheduleResponse = DescribeSnapshotScheduleResponse
{ _dssrDescription :: Maybe Text
, _dssrRecurrenceInHours :: Maybe Nat
, _dssrStartAt :: Maybe Nat
, _dssrTimezone :: Maybe Text
, _dssrVolumeARN :: Maybe Text
} deriving (Eq, Ord, Read, Show)
-- | 'DescribeSnapshotScheduleResponse' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'dssrDescription' @::@ 'Maybe' 'Text'
--
-- * 'dssrRecurrenceInHours' @::@ 'Maybe' 'Natural'
--
-- * 'dssrStartAt' @::@ 'Maybe' 'Natural'
--
-- * 'dssrTimezone' @::@ 'Maybe' 'Text'
--
-- * 'dssrVolumeARN' @::@ 'Maybe' 'Text'
--
describeSnapshotScheduleResponse :: DescribeSnapshotScheduleResponse
describeSnapshotScheduleResponse = DescribeSnapshotScheduleResponse
{ _dssrVolumeARN = Nothing
, _dssrStartAt = Nothing
, _dssrRecurrenceInHours = Nothing
, _dssrDescription = Nothing
, _dssrTimezone = Nothing
}
dssrDescription :: Lens' DescribeSnapshotScheduleResponse (Maybe Text)
dssrDescription = lens _dssrDescription (\s a -> s { _dssrDescription = a })
dssrRecurrenceInHours :: Lens' DescribeSnapshotScheduleResponse (Maybe Natural)
dssrRecurrenceInHours =
lens _dssrRecurrenceInHours (\s a -> s { _dssrRecurrenceInHours = a })
. mapping _Nat
dssrStartAt :: Lens' DescribeSnapshotScheduleResponse (Maybe Natural)
dssrStartAt = lens _dssrStartAt (\s a -> s { _dssrStartAt = a }) . mapping _Nat
dssrTimezone :: Lens' DescribeSnapshotScheduleResponse (Maybe Text)
dssrTimezone = lens _dssrTimezone (\s a -> s { _dssrTimezone = a })
dssrVolumeARN :: Lens' DescribeSnapshotScheduleResponse (Maybe Text)
dssrVolumeARN = lens _dssrVolumeARN (\s a -> s { _dssrVolumeARN = a })
instance ToPath DescribeSnapshotSchedule where
toPath = const "/"
instance ToQuery DescribeSnapshotSchedule where
toQuery = const mempty
instance ToHeaders DescribeSnapshotSchedule
instance ToJSON DescribeSnapshotSchedule where
toJSON DescribeSnapshotSchedule{..} = object
[ "VolumeARN" .= _dssVolumeARN
]
instance AWSRequest DescribeSnapshotSchedule where
type Sv DescribeSnapshotSchedule = StorageGateway
type Rs DescribeSnapshotSchedule = DescribeSnapshotScheduleResponse
request = post "DescribeSnapshotSchedule"
response = jsonResponse
instance FromJSON DescribeSnapshotScheduleResponse where
parseJSON = withObject "DescribeSnapshotScheduleResponse" $ \o -> DescribeSnapshotScheduleResponse
<$> o .:? "Description"
<*> o .:? "RecurrenceInHours"
<*> o .:? "StartAt"
<*> o .:? "Timezone"
<*> o .:? "VolumeARN"