amazonka-opsworks-1.2.0: gen/Network/AWS/OpsWorks/DescribeLayers.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Network.AWS.OpsWorks.DescribeLayers
-- Copyright : (c) 2013-2015 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)
--
-- Requests a description of one or more layers in a specified stack.
--
-- You must specify at least one of the parameters.
--
-- __Required Permissions__: To use this action, an IAM user must have a
-- Show, Deploy, or Manage permissions level for the stack, or an attached
-- policy that explicitly grants permissions. For more information on user
-- permissions, see
-- <http://docs.aws.amazon.com/opsworks/latest/userguide/opsworks-security-users.html Managing User Permissions>.
--
-- /See:/ <http://docs.aws.amazon.com/opsworks/latest/APIReference/API_DescribeLayers.html AWS API Reference> for DescribeLayers.
module Network.AWS.OpsWorks.DescribeLayers
(
-- * Creating a Request
describeLayers
, DescribeLayers
-- * Request Lenses
, dlLayerIds
, dlStackId
-- * Destructuring the Response
, describeLayersResponse
, DescribeLayersResponse
-- * Response Lenses
, dlrsLayers
, dlrsStatus
) where
import Network.AWS.OpsWorks.Types
import Network.AWS.OpsWorks.Types.Product
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'describeLayers' smart constructor.
data DescribeLayers = DescribeLayers'
{ _dlLayerIds :: !(Maybe [Text])
, _dlStackId :: !(Maybe Text)
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DescribeLayers' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dlLayerIds'
--
-- * 'dlStackId'
describeLayers
:: DescribeLayers
describeLayers =
DescribeLayers'
{ _dlLayerIds = Nothing
, _dlStackId = Nothing
}
-- | An array of layer IDs that specify the layers to be described. If you
-- omit this parameter, 'DescribeLayers' returns a description of every
-- layer in the specified stack.
dlLayerIds :: Lens' DescribeLayers [Text]
dlLayerIds = lens _dlLayerIds (\ s a -> s{_dlLayerIds = a}) . _Default . _Coerce;
-- | The stack ID.
dlStackId :: Lens' DescribeLayers (Maybe Text)
dlStackId = lens _dlStackId (\ s a -> s{_dlStackId = a});
instance AWSRequest DescribeLayers where
type Rs DescribeLayers = DescribeLayersResponse
request = postJSON opsWorks
response
= receiveJSON
(\ s h x ->
DescribeLayersResponse' <$>
(x .?> "Layers" .!@ mempty) <*> (pure (fromEnum s)))
instance ToHeaders DescribeLayers where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("OpsWorks_20130218.DescribeLayers" :: ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON DescribeLayers where
toJSON DescribeLayers'{..}
= object
(catMaybes
[("LayerIds" .=) <$> _dlLayerIds,
("StackId" .=) <$> _dlStackId])
instance ToPath DescribeLayers where
toPath = const "/"
instance ToQuery DescribeLayers where
toQuery = const mempty
-- | Contains the response to a 'DescribeLayers' request.
--
-- /See:/ 'describeLayersResponse' smart constructor.
data DescribeLayersResponse = DescribeLayersResponse'
{ _dlrsLayers :: !(Maybe [Layer])
, _dlrsStatus :: !Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DescribeLayersResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'dlrsLayers'
--
-- * 'dlrsStatus'
describeLayersResponse
:: Int -- ^ 'dlrsStatus'
-> DescribeLayersResponse
describeLayersResponse pStatus_ =
DescribeLayersResponse'
{ _dlrsLayers = Nothing
, _dlrsStatus = pStatus_
}
-- | An array of 'Layer' objects that describe the layers.
dlrsLayers :: Lens' DescribeLayersResponse [Layer]
dlrsLayers = lens _dlrsLayers (\ s a -> s{_dlrsLayers = a}) . _Default . _Coerce;
-- | The response status code.
dlrsStatus :: Lens' DescribeLayersResponse Int
dlrsStatus = lens _dlrsStatus (\ s a -> s{_dlrsStatus = a});