stratosphere-0.47.0: library-gen/Stratosphere/Resources/SSMDocument.hs
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TupleSections #-}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html
module Stratosphere.Resources.SSMDocument where
import Stratosphere.ResourceImports
import Stratosphere.ResourceProperties.Tag
-- | Full data type definition for SSMDocument. See 'ssmDocument' for a more
-- convenient constructor.
data SSMDocument =
SSMDocument
{ _sSMDocumentContent :: Object
, _sSMDocumentDocumentType :: Maybe (Val Text)
, _sSMDocumentName :: Maybe (Val Text)
, _sSMDocumentTags :: Maybe [Tag]
} deriving (Show, Eq)
instance ToResourceProperties SSMDocument where
toResourceProperties SSMDocument{..} =
ResourceProperties
{ resourcePropertiesType = "AWS::SSM::Document"
, resourcePropertiesProperties =
hashMapFromList $ catMaybes
[ (Just . ("Content",) . toJSON) _sSMDocumentContent
, fmap (("DocumentType",) . toJSON) _sSMDocumentDocumentType
, fmap (("Name",) . toJSON) _sSMDocumentName
, fmap (("Tags",) . toJSON) _sSMDocumentTags
]
}
-- | Constructor for 'SSMDocument' containing required fields as arguments.
ssmDocument
:: Object -- ^ 'ssmdContent'
-> SSMDocument
ssmDocument contentarg =
SSMDocument
{ _sSMDocumentContent = contentarg
, _sSMDocumentDocumentType = Nothing
, _sSMDocumentName = Nothing
, _sSMDocumentTags = Nothing
}
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content
ssmdContent :: Lens' SSMDocument Object
ssmdContent = lens _sSMDocumentContent (\s a -> s { _sSMDocumentContent = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype
ssmdDocumentType :: Lens' SSMDocument (Maybe (Val Text))
ssmdDocumentType = lens _sSMDocumentDocumentType (\s a -> s { _sSMDocumentDocumentType = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-name
ssmdName :: Lens' SSMDocument (Maybe (Val Text))
ssmdName = lens _sSMDocumentName (\s a -> s { _sSMDocumentName = a })
-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-tags
ssmdTags :: Lens' SSMDocument (Maybe [Tag])
ssmdTags = lens _sSMDocumentTags (\s a -> s { _sSMDocumentTags = a })