{-# 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.CloudFront.GetInvalidation -- Copyright : (c) 2013-2014 Brendan Hay -- 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 -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | Get the information about an invalidation. -- -- module Network.AWS.CloudFront.GetInvalidation ( -- * Request GetInvalidation -- ** Request constructor , getInvalidation -- ** Request lenses , giDistributionId , giId -- * Response , GetInvalidationResponse -- ** Response constructor , getInvalidationResponse -- ** Response lenses , girInvalidation ) where import Network.AWS.Prelude import Network.AWS.Request.RestXML import Network.AWS.CloudFront.Types import qualified GHC.Exts data GetInvalidation = GetInvalidation { _giDistributionId :: Text , _giId :: Text } deriving (Eq, Ord, Read, Show) -- | 'GetInvalidation' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'giDistributionId' @::@ 'Text' -- -- * 'giId' @::@ 'Text' -- getInvalidation :: Text -- ^ 'giDistributionId' -> Text -- ^ 'giId' -> GetInvalidation getInvalidation p1 p2 = GetInvalidation { _giDistributionId = p1 , _giId = p2 } -- | The distribution's id. giDistributionId :: Lens' GetInvalidation Text giDistributionId = lens _giDistributionId (\s a -> s { _giDistributionId = a }) -- | The invalidation's id. giId :: Lens' GetInvalidation Text giId = lens _giId (\s a -> s { _giId = a }) newtype GetInvalidationResponse = GetInvalidationResponse { _girInvalidation :: Maybe Invalidation } deriving (Eq, Read, Show) -- | 'GetInvalidationResponse' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'girInvalidation' @::@ 'Maybe' 'Invalidation' -- getInvalidationResponse :: GetInvalidationResponse getInvalidationResponse = GetInvalidationResponse { _girInvalidation = Nothing } -- | The invalidation's information. girInvalidation :: Lens' GetInvalidationResponse (Maybe Invalidation) girInvalidation = lens _girInvalidation (\s a -> s { _girInvalidation = a }) instance ToPath GetInvalidation where toPath GetInvalidation{..} = mconcat [ "/2014-11-06/distribution/" , toText _giDistributionId , "/invalidation/" , toText _giId ] instance ToQuery GetInvalidation where toQuery = const mempty instance ToHeaders GetInvalidation instance ToXMLRoot GetInvalidation where toXMLRoot = const (namespaced ns "GetInvalidation" []) instance ToXML GetInvalidation instance AWSRequest GetInvalidation where type Sv GetInvalidation = CloudFront type Rs GetInvalidation = GetInvalidationResponse request = get response = xmlResponse instance FromXML GetInvalidationResponse where parseXML x = GetInvalidationResponse <$> x .@? "Invalidation"