Zigglzworth
Zigglzworth

Reputation: 6813

How to check and set Amazon Web Services SDK for iOS and Android to use HTTPS (SSL)?

How can I check if the Amazon Web Services SDK for iOS and Android to use HTTPS (SSL) to encrypt requests ?

And if it is not using this, how can I set it?

I have read this Making Secure Requests to Amazon Web Services but I don't understand how this applies in the case of the iOS and Android SDKs

Upvotes: 2

Views: 69

Answers (1)

Bob Kinney
Bob Kinney

Reputation: 9030

All AWS SDKs default to using SSL.

iOS:

Android:

  • setEndpoint defaults to https if not supplied.
  • setRegion defaults to https unless changed in ClientConfig.

Upvotes: 3

Related Questions