packages feed

stratosphere-0.5.0: library-gen/Stratosphere/Resources/DMSEndpoint.hs

{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html

module Stratosphere.Resources.DMSEndpoint where

import Control.Lens hiding ((.=))
import Data.Aeson
import Data.Maybe (catMaybes)
import Data.Monoid (mempty)
import Data.Text

import Stratosphere.Values
import Stratosphere.ResourceProperties.DMSEndpointDynamoDbSettings
import Stratosphere.ResourceProperties.DMSEndpointMongoDbSettings
import Stratosphere.ResourceProperties.DMSEndpointS3Settings
import Stratosphere.ResourceProperties.Tag

-- | Full data type definition for DMSEndpoint. See 'dmsEndpoint' for a more
-- convenient constructor.
data DMSEndpoint =
  DMSEndpoint
  { _dMSEndpointCertificateArn :: Maybe (Val Text)
  , _dMSEndpointDatabaseName :: Maybe (Val Text)
  , _dMSEndpointDynamoDbSettings :: Maybe DMSEndpointDynamoDbSettings
  , _dMSEndpointEndpointIdentifier :: Maybe (Val Text)
  , _dMSEndpointEndpointType :: Val Text
  , _dMSEndpointEngineName :: Val Text
  , _dMSEndpointExtraConnectionAttributes :: Maybe (Val Text)
  , _dMSEndpointKmsKeyId :: Maybe (Val Text)
  , _dMSEndpointMongoDbSettings :: Maybe DMSEndpointMongoDbSettings
  , _dMSEndpointPassword :: Maybe (Val Text)
  , _dMSEndpointPort :: Maybe (Val Integer')
  , _dMSEndpointS3Settings :: Maybe DMSEndpointS3Settings
  , _dMSEndpointServerName :: Maybe (Val Text)
  , _dMSEndpointSslMode :: Maybe (Val Text)
  , _dMSEndpointTags :: Maybe [Tag]
  , _dMSEndpointUsername :: Maybe (Val Text)
  } deriving (Show, Eq)

instance ToJSON DMSEndpoint where
  toJSON DMSEndpoint{..} =
    object $
    catMaybes
    [ ("CertificateArn" .=) <$> _dMSEndpointCertificateArn
    , ("DatabaseName" .=) <$> _dMSEndpointDatabaseName
    , ("DynamoDbSettings" .=) <$> _dMSEndpointDynamoDbSettings
    , ("EndpointIdentifier" .=) <$> _dMSEndpointEndpointIdentifier
    , Just ("EndpointType" .= _dMSEndpointEndpointType)
    , Just ("EngineName" .= _dMSEndpointEngineName)
    , ("ExtraConnectionAttributes" .=) <$> _dMSEndpointExtraConnectionAttributes
    , ("KmsKeyId" .=) <$> _dMSEndpointKmsKeyId
    , ("MongoDbSettings" .=) <$> _dMSEndpointMongoDbSettings
    , ("Password" .=) <$> _dMSEndpointPassword
    , ("Port" .=) <$> _dMSEndpointPort
    , ("S3Settings" .=) <$> _dMSEndpointS3Settings
    , ("ServerName" .=) <$> _dMSEndpointServerName
    , ("SslMode" .=) <$> _dMSEndpointSslMode
    , ("Tags" .=) <$> _dMSEndpointTags
    , ("Username" .=) <$> _dMSEndpointUsername
    ]

instance FromJSON DMSEndpoint where
  parseJSON (Object obj) =
    DMSEndpoint <$>
      obj .:? "CertificateArn" <*>
      obj .:? "DatabaseName" <*>
      obj .:? "DynamoDbSettings" <*>
      obj .:? "EndpointIdentifier" <*>
      obj .: "EndpointType" <*>
      obj .: "EngineName" <*>
      obj .:? "ExtraConnectionAttributes" <*>
      obj .:? "KmsKeyId" <*>
      obj .:? "MongoDbSettings" <*>
      obj .:? "Password" <*>
      obj .:? "Port" <*>
      obj .:? "S3Settings" <*>
      obj .:? "ServerName" <*>
      obj .:? "SslMode" <*>
      obj .:? "Tags" <*>
      obj .:? "Username"
  parseJSON _ = mempty

-- | Constructor for 'DMSEndpoint' containing required fields as arguments.
dmsEndpoint
  :: Val Text -- ^ 'dmseEndpointType'
  -> Val Text -- ^ 'dmseEngineName'
  -> DMSEndpoint
dmsEndpoint endpointTypearg engineNamearg =
  DMSEndpoint
  { _dMSEndpointCertificateArn = Nothing
  , _dMSEndpointDatabaseName = Nothing
  , _dMSEndpointDynamoDbSettings = Nothing
  , _dMSEndpointEndpointIdentifier = Nothing
  , _dMSEndpointEndpointType = endpointTypearg
  , _dMSEndpointEngineName = engineNamearg
  , _dMSEndpointExtraConnectionAttributes = Nothing
  , _dMSEndpointKmsKeyId = Nothing
  , _dMSEndpointMongoDbSettings = Nothing
  , _dMSEndpointPassword = Nothing
  , _dMSEndpointPort = Nothing
  , _dMSEndpointS3Settings = Nothing
  , _dMSEndpointServerName = Nothing
  , _dMSEndpointSslMode = Nothing
  , _dMSEndpointTags = Nothing
  , _dMSEndpointUsername = Nothing
  }

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn
dmseCertificateArn :: Lens' DMSEndpoint (Maybe (Val Text))
dmseCertificateArn = lens _dMSEndpointCertificateArn (\s a -> s { _dMSEndpointCertificateArn = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename
dmseDatabaseName :: Lens' DMSEndpoint (Maybe (Val Text))
dmseDatabaseName = lens _dMSEndpointDatabaseName (\s a -> s { _dMSEndpointDatabaseName = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-dynamodbsettings
dmseDynamoDbSettings :: Lens' DMSEndpoint (Maybe DMSEndpointDynamoDbSettings)
dmseDynamoDbSettings = lens _dMSEndpointDynamoDbSettings (\s a -> s { _dMSEndpointDynamoDbSettings = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier
dmseEndpointIdentifier :: Lens' DMSEndpoint (Maybe (Val Text))
dmseEndpointIdentifier = lens _dMSEndpointEndpointIdentifier (\s a -> s { _dMSEndpointEndpointIdentifier = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype
dmseEndpointType :: Lens' DMSEndpoint (Val Text)
dmseEndpointType = lens _dMSEndpointEndpointType (\s a -> s { _dMSEndpointEndpointType = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename
dmseEngineName :: Lens' DMSEndpoint (Val Text)
dmseEngineName = lens _dMSEndpointEngineName (\s a -> s { _dMSEndpointEngineName = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes
dmseExtraConnectionAttributes :: Lens' DMSEndpoint (Maybe (Val Text))
dmseExtraConnectionAttributes = lens _dMSEndpointExtraConnectionAttributes (\s a -> s { _dMSEndpointExtraConnectionAttributes = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid
dmseKmsKeyId :: Lens' DMSEndpoint (Maybe (Val Text))
dmseKmsKeyId = lens _dMSEndpointKmsKeyId (\s a -> s { _dMSEndpointKmsKeyId = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-mongodbsettings
dmseMongoDbSettings :: Lens' DMSEndpoint (Maybe DMSEndpointMongoDbSettings)
dmseMongoDbSettings = lens _dMSEndpointMongoDbSettings (\s a -> s { _dMSEndpointMongoDbSettings = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password
dmsePassword :: Lens' DMSEndpoint (Maybe (Val Text))
dmsePassword = lens _dMSEndpointPassword (\s a -> s { _dMSEndpointPassword = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port
dmsePort :: Lens' DMSEndpoint (Maybe (Val Integer'))
dmsePort = lens _dMSEndpointPort (\s a -> s { _dMSEndpointPort = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-s3settings
dmseS3Settings :: Lens' DMSEndpoint (Maybe DMSEndpointS3Settings)
dmseS3Settings = lens _dMSEndpointS3Settings (\s a -> s { _dMSEndpointS3Settings = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername
dmseServerName :: Lens' DMSEndpoint (Maybe (Val Text))
dmseServerName = lens _dMSEndpointServerName (\s a -> s { _dMSEndpointServerName = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode
dmseSslMode :: Lens' DMSEndpoint (Maybe (Val Text))
dmseSslMode = lens _dMSEndpointSslMode (\s a -> s { _dMSEndpointSslMode = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-tags
dmseTags :: Lens' DMSEndpoint (Maybe [Tag])
dmseTags = lens _dMSEndpointTags (\s a -> s { _dMSEndpointTags = a })

-- | http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username
dmseUsername :: Lens' DMSEndpoint (Maybe (Val Text))
dmseUsername = lens _dMSEndpointUsername (\s a -> s { _dMSEndpointUsername = a })