amazonka-sns 0.0.6 → 0.0.7
raw patch · 11 files changed
+13/−13 lines, 11 filesdep ~amazonka-corePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: amazonka-core
API changes (from Hackage documentation)
Files
- amazonka-sns.cabal +2/−2
- gen/Network/AWS/SNS/GetEndpointAttributes.hs +1/−1
- gen/Network/AWS/SNS/GetPlatformApplicationAttributes.hs +1/−1
- gen/Network/AWS/SNS/GetSubscriptionAttributes.hs +1/−1
- gen/Network/AWS/SNS/GetTopicAttributes.hs +1/−1
- gen/Network/AWS/SNS/ListEndpointsByPlatformApplication.hs +1/−1
- gen/Network/AWS/SNS/ListPlatformApplications.hs +1/−1
- gen/Network/AWS/SNS/ListSubscriptions.hs +1/−1
- gen/Network/AWS/SNS/ListSubscriptionsByTopic.hs +1/−1
- gen/Network/AWS/SNS/ListTopics.hs +1/−1
- gen/Network/AWS/SNS/Types.hs +2/−2
amazonka-sns.cabal view
@@ -1,5 +1,5 @@ name: amazonka-sns-version: 0.0.6+version: 0.0.7 synopsis: Amazon Simple Notification Service SDK. homepage: https://github.com/brendanhay/amazonka license: OtherLicense@@ -72,5 +72,5 @@ other-modules: build-depends:- amazonka-core == 0.0.6.*+ amazonka-core == 0.0.7.* , base >= 4.7 && < 5
gen/Network/AWS/SNS/GetEndpointAttributes.hs view
@@ -116,4 +116,4 @@ instance FromXML GetEndpointAttributesResponse where parseXML = withElement "GetEndpointAttributesResult" $ \x -> GetEndpointAttributesResponse- <$> x .@ "Attributes"+ <$> x .@? "Attributes" .!@ mempty
gen/Network/AWS/SNS/GetPlatformApplicationAttributes.hs view
@@ -115,4 +115,4 @@ instance FromXML GetPlatformApplicationAttributesResponse where parseXML = withElement "GetPlatformApplicationAttributesResult" $ \x -> GetPlatformApplicationAttributesResponse- <$> x .@ "Attributes"+ <$> x .@? "Attributes" .!@ mempty
gen/Network/AWS/SNS/GetSubscriptionAttributes.hs view
@@ -114,4 +114,4 @@ instance FromXML GetSubscriptionAttributesResponse where parseXML = withElement "GetSubscriptionAttributesResult" $ \x -> GetSubscriptionAttributesResponse- <$> x .@ "Attributes"+ <$> x .@? "Attributes" .!@ mempty
gen/Network/AWS/SNS/GetTopicAttributes.hs view
@@ -115,4 +115,4 @@ instance FromXML GetTopicAttributesResponse where parseXML = withElement "GetTopicAttributesResult" $ \x -> GetTopicAttributesResponse- <$> x .@ "Attributes"+ <$> x .@? "Attributes" .!@ mempty
gen/Network/AWS/SNS/ListEndpointsByPlatformApplication.hs view
@@ -134,7 +134,7 @@ instance FromXML ListEndpointsByPlatformApplicationResponse where parseXML = withElement "ListEndpointsByPlatformApplicationResult" $ \x -> ListEndpointsByPlatformApplicationResponse- <$> x .@ "Endpoints"+ <$> x .@? "Endpoints" .!@ mempty <*> x .@? "NextToken" instance AWSPager ListEndpointsByPlatformApplication where
gen/Network/AWS/SNS/ListPlatformApplications.hs view
@@ -125,7 +125,7 @@ instance FromXML ListPlatformApplicationsResponse where parseXML = withElement "ListPlatformApplicationsResult" $ \x -> ListPlatformApplicationsResponse <$> x .@? "NextToken"- <*> x .@ "PlatformApplications"+ <*> x .@? "PlatformApplications" .!@ mempty instance AWSPager ListPlatformApplications where page rq rs
gen/Network/AWS/SNS/ListSubscriptions.hs view
@@ -118,7 +118,7 @@ instance FromXML ListSubscriptionsResponse where parseXML = withElement "ListSubscriptionsResult" $ \x -> ListSubscriptionsResponse <$> x .@? "NextToken"- <*> x .@ "Subscriptions"+ <*> x .@? "Subscriptions" .!@ mempty instance AWSPager ListSubscriptions where page rq rs
gen/Network/AWS/SNS/ListSubscriptionsByTopic.hs view
@@ -129,7 +129,7 @@ instance FromXML ListSubscriptionsByTopicResponse where parseXML = withElement "ListSubscriptionsByTopicResult" $ \x -> ListSubscriptionsByTopicResponse <$> x .@? "NextToken"- <*> x .@ "Subscriptions"+ <*> x .@? "Subscriptions" .!@ mempty instance AWSPager ListSubscriptionsByTopic where page rq rs
gen/Network/AWS/SNS/ListTopics.hs view
@@ -117,7 +117,7 @@ instance FromXML ListTopicsResponse where parseXML = withElement "ListTopicsResult" $ \x -> ListTopicsResponse <$> x .@? "NextToken"- <*> x .@ "Topics"+ <*> x .@? "Topics" .!@ mempty instance AWSPager ListTopics where page rq rs
gen/Network/AWS/SNS/Types.hs view
@@ -200,7 +200,7 @@ instance FromXML PlatformApplication where parseXML x = PlatformApplication- <$> x .@ "Attributes"+ <$> x .@? "Attributes" .!@ mempty <*> x .@? "PlatformApplicationArn" instance ToQuery PlatformApplication where@@ -307,7 +307,7 @@ instance FromXML Endpoint where parseXML x = Endpoint- <$> x .@ "Attributes"+ <$> x .@? "Attributes" .!@ mempty <*> x .@? "EndpointArn" instance ToQuery Endpoint where