stratosphere-0.46.0: library-gen/Stratosphere/Resources/ApiGatewayUsagePlan.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TupleSections #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html
module Stratosphere.Resources.ApiGatewayUsagePlan where
import Stratosphere.ResourceImports
import Stratosphere.ResourceProperties.ApiGatewayUsagePlanApiStage
import Stratosphere.ResourceProperties.ApiGatewayUsagePlanQuotaSettings
import Stratosphere.ResourceProperties.Tag
import Stratosphere.ResourceProperties.ApiGatewayUsagePlanThrottleSettings
-- | Full data type definition for ApiGatewayUsagePlan. See
-- 'apiGatewayUsagePlan' for a more convenient constructor.
data ApiGatewayUsagePlan =
ApiGatewayUsagePlan
{ _apiGatewayUsagePlanApiStages :: Maybe [ApiGatewayUsagePlanApiStage]
, _apiGatewayUsagePlanDescription :: Maybe (Val Text)
, _apiGatewayUsagePlanQuota :: Maybe ApiGatewayUsagePlanQuotaSettings
, _apiGatewayUsagePlanTags :: Maybe [Tag]
, _apiGatewayUsagePlanThrottle :: Maybe ApiGatewayUsagePlanThrottleSettings
, _apiGatewayUsagePlanUsagePlanName :: Maybe (Val Text)
} deriving (Show, Eq)
instance ToResourceProperties ApiGatewayUsagePlan where
toResourceProperties ApiGatewayUsagePlan{..} =
ResourceProperties
{ resourcePropertiesType = "AWS::ApiGateway::UsagePlan"
, resourcePropertiesProperties =
hashMapFromList $ catMaybes
[ fmap (("ApiStages",) . toJSON) _apiGatewayUsagePlanApiStages
, fmap (("Description",) . toJSON) _apiGatewayUsagePlanDescription
, fmap (("Quota",) . toJSON) _apiGatewayUsagePlanQuota
, fmap (("Tags",) . toJSON) _apiGatewayUsagePlanTags
, fmap (("Throttle",) . toJSON) _apiGatewayUsagePlanThrottle
, fmap (("UsagePlanName",) . toJSON) _apiGatewayUsagePlanUsagePlanName
]
}
-- | Constructor for 'ApiGatewayUsagePlan' containing required fields as
-- arguments.
apiGatewayUsagePlan
:: ApiGatewayUsagePlan
apiGatewayUsagePlan =
ApiGatewayUsagePlan
{ _apiGatewayUsagePlanApiStages = Nothing
, _apiGatewayUsagePlanDescription = Nothing
, _apiGatewayUsagePlanQuota = Nothing
, _apiGatewayUsagePlanTags = Nothing
, _apiGatewayUsagePlanThrottle = Nothing
, _apiGatewayUsagePlanUsagePlanName = Nothing
}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-apistages
agupApiStages :: Lens' ApiGatewayUsagePlan (Maybe [ApiGatewayUsagePlanApiStage])
agupApiStages = lens _apiGatewayUsagePlanApiStages (\s a -> s { _apiGatewayUsagePlanApiStages = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description
agupDescription :: Lens' ApiGatewayUsagePlan (Maybe (Val Text))
agupDescription = lens _apiGatewayUsagePlanDescription (\s a -> s { _apiGatewayUsagePlanDescription = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-quota
agupQuota :: Lens' ApiGatewayUsagePlan (Maybe ApiGatewayUsagePlanQuotaSettings)
agupQuota = lens _apiGatewayUsagePlanQuota (\s a -> s { _apiGatewayUsagePlanQuota = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-tags
agupTags :: Lens' ApiGatewayUsagePlan (Maybe [Tag])
agupTags = lens _apiGatewayUsagePlanTags (\s a -> s { _apiGatewayUsagePlanTags = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-throttle
agupThrottle :: Lens' ApiGatewayUsagePlan (Maybe ApiGatewayUsagePlanThrottleSettings)
agupThrottle = lens _apiGatewayUsagePlanThrottle (\s a -> s { _apiGatewayUsagePlanThrottle = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname
agupUsagePlanName :: Lens' ApiGatewayUsagePlan (Maybe (Val Text))
agupUsagePlanName = lens _apiGatewayUsagePlanUsagePlanName (\s a -> s { _apiGatewayUsagePlanUsagePlanName = a })