diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -365,9 +365,3 @@
 for such a notice.
 
 You may add additional accurate notices of copyright ownership.
-
-Exhibit B - "Incompatible With Secondary Licenses" Notice
----------------------------------------------------------
-
-  This Source Code Form is "Incompatible With Secondary Licenses", as
-  defined by the Mozilla Public License, v. 2.0.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
 
 ## Version
 
-`1.3.2`
+`1.3.3`
 
 
 ## Description
diff --git a/amazonka-cognito-identity.cabal b/amazonka-cognito-identity.cabal
--- a/amazonka-cognito-identity.cabal
+++ b/amazonka-cognito-identity.cabal
@@ -1,5 +1,5 @@
 name:                  amazonka-cognito-identity
-version:               1.3.2
+version:               1.3.3
 synopsis:              Amazon Cognito Identity SDK.
 homepage:              https://github.com/brendanhay/amazonka
 bug-reports:           https://github.com/brendanhay/amazonka/issues
@@ -103,7 +103,7 @@
         , Network.AWS.CognitoIdentity.Types.Sum
 
     build-depends:
-          amazonka-core == 1.3.2.*
+          amazonka-core == 1.3.3.*
         , base          >= 4.7     && < 5
 
 test-suite amazonka-cognito-identity-test
@@ -123,9 +123,9 @@
         , Test.AWS.CognitoIdentity.Internal
 
     build-depends:
-          amazonka-core == 1.3.2.*
-        , amazonka-test == 1.3.2.*
-        , amazonka-cognito-identity == 1.3.2.*
+          amazonka-core == 1.3.3.*
+        , amazonka-test == 1.3.3.*
+        , amazonka-cognito-identity == 1.3.3.*
         , base
         , bytestring
         , lens
diff --git a/gen/Network/AWS/CognitoIdentity/CreateIdentityPool.hs b/gen/Network/AWS/CognitoIdentity/CreateIdentityPool.hs
--- a/gen/Network/AWS/CognitoIdentity/CreateIdentityPool.hs
+++ b/gen/Network/AWS/CognitoIdentity/CreateIdentityPool.hs
@@ -20,8 +20,16 @@
 --
 -- Creates a new identity pool. The identity pool is a store of user
 -- identity information that is specific to your AWS account. The limit on
--- identity pools is 60 per account. You must use AWS Developer credentials
--- to call this API.
+-- identity pools is 60 per account. The keys for 'SupportedLoginProviders'
+-- are as follows:
+--
+-- -   Facebook: 'graph.facebook.com'
+-- -   Google: 'accounts.google.com'
+-- -   Amazon: 'www.amazon.com'
+-- -   Twitter: 'api.twitter.com'
+-- -   Digits: 'www.digits.com'
+--
+-- You must use AWS Developer credentials to call this API.
 --
 -- /See:/ <http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_CreateIdentityPool.html AWS API Reference> for CreateIdentityPool.
 module Network.AWS.CognitoIdentity.CreateIdentityPool
diff --git a/gen/Network/AWS/CognitoIdentity/GetCredentialsForIdentity.hs b/gen/Network/AWS/CognitoIdentity/GetCredentialsForIdentity.hs
--- a/gen/Network/AWS/CognitoIdentity/GetCredentialsForIdentity.hs
+++ b/gen/Network/AWS/CognitoIdentity/GetCredentialsForIdentity.hs
@@ -18,9 +18,9 @@
 -- Stability   : auto-generated
 -- Portability : non-portable (GHC extensions)
 --
--- Returns credentials for the the provided identity ID. Any provided
--- logins will be validated against supported login providers. If the token
--- is for cognito-identity.amazonaws.com, it will be passed through to AWS
+-- Returns credentials for the provided identity ID. Any provided logins
+-- will be validated against supported login providers. If the token is for
+-- cognito-identity.amazonaws.com, it will be passed through to AWS
 -- Security Token Service with the appropriate role for the token.
 --
 -- This is a public API. You do not need any credentials to call this API.
@@ -146,7 +146,7 @@
     , _gcfirsResponseStatus = pResponseStatus_
     }
 
--- | Credentials for the the provided identity ID.
+-- | Credentials for the provided identity ID.
 gcfirsCredentials :: Lens' GetCredentialsForIdentityResponse (Maybe Credentials)
 gcfirsCredentials = lens _gcfirsCredentials (\ s a -> s{_gcfirsCredentials = a});
 
diff --git a/gen/Network/AWS/CognitoIdentity/GetId.hs b/gen/Network/AWS/CognitoIdentity/GetId.hs
--- a/gen/Network/AWS/CognitoIdentity/GetId.hs
+++ b/gen/Network/AWS/CognitoIdentity/GetId.hs
@@ -21,8 +21,6 @@
 -- Generates (or retrieves) a Cognito ID. Supplying multiple logins will
 -- create an implicit linked account.
 --
--- token+\";\"+tokenSecret.
---
 -- This is a public API. You do not need any credentials to call this API.
 --
 -- /See:/ <http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_GetId.html AWS API Reference> for GetId.
@@ -90,7 +88,7 @@
 -- -   Facebook: 'graph.facebook.com'
 -- -   Google: 'accounts.google.com'
 -- -   Amazon: 'www.amazon.com'
--- -   Twitter: 'www.twitter.com'
+-- -   Twitter: 'api.twitter.com'
 -- -   Digits: 'www.digits.com'
 giLogins :: Lens' GetId (HashMap Text Text)
 giLogins = lens _giLogins (\ s a -> s{_giLogins = a}) . _Default . _Map;
diff --git a/gen/Network/AWS/CognitoIdentity/ListIdentityPools.hs b/gen/Network/AWS/CognitoIdentity/ListIdentityPools.hs
--- a/gen/Network/AWS/CognitoIdentity/ListIdentityPools.hs
+++ b/gen/Network/AWS/CognitoIdentity/ListIdentityPools.hs
@@ -20,7 +20,7 @@
 --
 -- Lists all of the Cognito identity pools registered for your account.
 --
--- This is a public API. You do not need any credentials to call this API.
+-- You must use AWS Developer credentials to call this API.
 --
 -- /See:/ <http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_ListIdentityPools.html AWS API Reference> for ListIdentityPools.
 module Network.AWS.CognitoIdentity.ListIdentityPools
diff --git a/gen/Network/AWS/CognitoIdentity/Types/Product.hs b/gen/Network/AWS/CognitoIdentity/Types/Product.hs
--- a/gen/Network/AWS/CognitoIdentity/Types/Product.hs
+++ b/gen/Network/AWS/CognitoIdentity/Types/Product.hs
@@ -20,7 +20,7 @@
 import           Network.AWS.CognitoIdentity.Types.Sum
 import           Network.AWS.Prelude
 
--- | Credentials for the the provided identity ID.
+-- | Credentials for the provided identity ID.
 --
 -- /See:/ 'credentials' smart constructor.
 data Credentials = Credentials'
diff --git a/gen/Network/AWS/CognitoIdentity/UnlinkDeveloperIdentity.hs b/gen/Network/AWS/CognitoIdentity/UnlinkDeveloperIdentity.hs
--- a/gen/Network/AWS/CognitoIdentity/UnlinkDeveloperIdentity.hs
+++ b/gen/Network/AWS/CognitoIdentity/UnlinkDeveloperIdentity.hs
@@ -24,7 +24,7 @@
 -- identities as well as the developer user identifier, the Cognito
 -- identity becomes inaccessible.
 --
--- This is a public API. You do not need any credentials to call this API.
+-- You must use AWS Developer credentials to call this API.
 --
 -- /See:/ <http://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_UnlinkDeveloperIdentity.html AWS API Reference> for UnlinkDeveloperIdentity.
 module Network.AWS.CognitoIdentity.UnlinkDeveloperIdentity
