diff --git a/amazonka-ses.cabal b/amazonka-ses.cabal
--- a/amazonka-ses.cabal
+++ b/amazonka-ses.cabal
@@ -1,5 +1,5 @@
 name:                  amazonka-ses
-version:               0.0.6
+version:               0.0.7
 synopsis:              Amazon Simple Email Service SDK.
 homepage:              https://github.com/brendanhay/amazonka
 license:               OtherLicense
@@ -63,5 +63,5 @@
     other-modules:
 
     build-depends:
-          amazonka-core == 0.0.6.*
+          amazonka-core == 0.0.7.*
         , base          >= 4.7     && < 5
diff --git a/gen/Network/AWS/SES/GetIdentityDkimAttributes.hs b/gen/Network/AWS/SES/GetIdentityDkimAttributes.hs
--- a/gen/Network/AWS/SES/GetIdentityDkimAttributes.hs
+++ b/gen/Network/AWS/SES/GetIdentityDkimAttributes.hs
@@ -127,4 +127,4 @@
 
 instance FromXML GetIdentityDkimAttributesResponse where
     parseXML = withElement "GetIdentityDkimAttributesResult" $ \x -> GetIdentityDkimAttributesResponse
-        <$> x .@  "DkimAttributes"
+        <$> x .@? "DkimAttributes" .!@ mempty
diff --git a/gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs b/gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs
--- a/gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs
+++ b/gen/Network/AWS/SES/GetIdentityNotificationAttributes.hs
@@ -118,4 +118,4 @@
 
 instance FromXML GetIdentityNotificationAttributesResponse where
     parseXML = withElement "GetIdentityNotificationAttributesResult" $ \x -> GetIdentityNotificationAttributesResponse
-        <$> x .@  "NotificationAttributes"
+        <$> x .@? "NotificationAttributes" .!@ mempty
diff --git a/gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs b/gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs
--- a/gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs
+++ b/gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs
@@ -117,4 +117,4 @@
 
 instance FromXML GetIdentityVerificationAttributesResponse where
     parseXML = withElement "GetIdentityVerificationAttributesResult" $ \x -> GetIdentityVerificationAttributesResponse
-        <$> x .@  "VerificationAttributes"
+        <$> x .@? "VerificationAttributes" .!@ mempty
diff --git a/gen/Network/AWS/SES/GetSendStatistics.hs b/gen/Network/AWS/SES/GetSendStatistics.hs
--- a/gen/Network/AWS/SES/GetSendStatistics.hs
+++ b/gen/Network/AWS/SES/GetSendStatistics.hs
@@ -101,4 +101,4 @@
 
 instance FromXML GetSendStatisticsResponse where
     parseXML = withElement "GetSendStatisticsResult" $ \x -> GetSendStatisticsResponse
-        <$> x .@  "SendDataPoints"
+        <$> x .@? "SendDataPoints" .!@ mempty
diff --git a/gen/Network/AWS/SES/ListIdentities.hs b/gen/Network/AWS/SES/ListIdentities.hs
--- a/gen/Network/AWS/SES/ListIdentities.hs
+++ b/gen/Network/AWS/SES/ListIdentities.hs
@@ -138,7 +138,7 @@
 
 instance FromXML ListIdentitiesResponse where
     parseXML = withElement "ListIdentitiesResult" $ \x -> ListIdentitiesResponse
-        <$> x .@  "Identities"
+        <$> x .@? "Identities" .!@ mempty
         <*> x .@? "NextToken"
 
 instance AWSPager ListIdentities where
diff --git a/gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs b/gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs
--- a/gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs
+++ b/gen/Network/AWS/SES/ListVerifiedEmailAddresses.hs
@@ -100,4 +100,4 @@
 
 instance FromXML ListVerifiedEmailAddressesResponse where
     parseXML = withElement "ListVerifiedEmailAddressesResult" $ \x -> ListVerifiedEmailAddressesResponse
-        <$> x .@  "VerifiedEmailAddresses"
+        <$> x .@? "VerifiedEmailAddresses" .!@ mempty
diff --git a/gen/Network/AWS/SES/Types.hs b/gen/Network/AWS/SES/Types.hs
--- a/gen/Network/AWS/SES/Types.hs
+++ b/gen/Network/AWS/SES/Types.hs
@@ -163,9 +163,9 @@
 
 instance FromXML Destination where
     parseXML x = Destination
-        <$> x .@  "BccAddresses"
-        <*> x .@  "CcAddresses"
-        <*> x .@  "ToAddresses"
+        <$> x .@? "BccAddresses" .!@ mempty
+        <*> x .@? "CcAddresses" .!@ mempty
+        <*> x .@? "ToAddresses" .!@ mempty
 
 instance ToQuery Destination where
     toQuery Destination{..} = mconcat
@@ -227,7 +227,7 @@
 instance FromXML IdentityDkimAttributes where
     parseXML x = IdentityDkimAttributes
         <$> x .@  "DkimEnabled"
-        <*> x .@  "DkimTokens"
+        <*> x .@? "DkimTokens" .!@ mempty
         <*> x .@  "DkimVerificationStatus"
 
 instance ToQuery IdentityDkimAttributes where
diff --git a/gen/Network/AWS/SES/VerifyDomainDkim.hs b/gen/Network/AWS/SES/VerifyDomainDkim.hs
--- a/gen/Network/AWS/SES/VerifyDomainDkim.hs
+++ b/gen/Network/AWS/SES/VerifyDomainDkim.hs
@@ -132,4 +132,4 @@
 
 instance FromXML VerifyDomainDkimResponse where
     parseXML = withElement "VerifyDomainDkimResult" $ \x -> VerifyDomainDkimResponse
-        <$> x .@  "DkimTokens"
+        <$> x .@? "DkimTokens" .!@ mempty
