Questions tagged [aws-sdk-ios]

Tag can be used for questions related to AWS SDK on iOS platform: programming question on either Swift or Objective-C, troubleshooting apps that use AWS on iOS, and so on.

The AWS Mobile SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.

112 questions
1
vote
0 answers

File not found error AWSiOSSDK AmazonServiceExceptionUnmarshaller.h

I’ve run up an old project which uses AWSiOSSDK 1.7.1 in Cocoapods and tried to compile; #import "AutoScalingAdjustmentTypeUnmarshaller.h" #ifdef AWS_MULTI_FRAMEWORK #import #else #import…
ColinMasters
  • 511
  • 7
  • 19
1
vote
2 answers

DynamoDB iOS : AWSDynamoDBScanExpression Provide multiple parameters for scanFilter property

Firstly, what I am trying to achieve with DynamoDB: -> (I am trying to include username and password in scan filter for login system. So if for email/user and password combination, scan method of AWSDynamoDBObjectMapper returns an object, login is…
1
vote
0 answers

When we need to call - (AWSTask *)refresh which will backend to fetch token and identity id

As the token will get expired in one hour and we need to fetch new token, I want to know will be allocating cumstomIdentityProvider class again or thers is another ay of doing that. Need help. This is i have implemented in My…
user1068810
  • 387
  • 2
  • 6
  • 14
1
vote
1 answer

Something fishy about AWS S3 SSL deprecation and iOS SDK

I got this email from Amazon saying that some of my app's use SSL to access S3 buckets. After I contacted their support, they gave me a list of clients, which points to my iOS app running on iOS7/8. I use AWS iOS SDK version 1.7.1. The first thought…
Peter Pei Guo
  • 7,770
  • 18
  • 35
  • 54
1
vote
1 answer

Getting AWSiOSSDKv2 [Error] Frequently

Could any tell me what exactly is the reason to, why I am getting the following error ? AWSiOSSDKv2 [Error] AWSURLSessionManager.m line:254 | __41-[AWSURLSessionManager taskWithDelegate:]_block_invoke208 | Invalid AWSURLSessionTaskType.
Bhat
  • 602
  • 9
  • 24
1
vote
1 answer

AWS Cognito Credentials Provider for IOS - access key and secret key are nil

I am trying to use AWSCognito in Objective C to authenticate to an Amazon SimpleDB database. I initalize an AWSCognitoCredentialsProvider with the identity pool id provided in my Amazon account. The problem is that when I try to get the access key…
1
vote
1 answer

AWS iOS SDK: Using both S3 and Mobile Analytics in two different regions

I am trying to integrate both S3 and Mobile Analytics, using AWS iOS SDK v2, in my Swift project. The issue is that I am trying to use two different regions (I am working with my main region, eu-west-1 in Ireland, but Mobile Analytics is only…
Camillo
  • 544
  • 1
  • 6
  • 24
1
vote
1 answer

Trouble using AWSiOSSDKv2 via cocoapods 0.36 beta2

Using a Podfile like so: platform :ios, '8.1' source 'https://github.com/CocoaPods/Specs.git' pod 'AWSiOSSDKv2' I am getting a bunch of "file not found" errors in my xcode project related to the #imports being used in the AWSSDK. E.g. in…
user871177
  • 721
  • 5
  • 12
1
vote
1 answer

Amazon web service update from AWSiOSSDK - 1.7.1 to AWSiOSSDKv2 - 2.0.8 issue

I am totally new to use Amazon Web Service SDK to upload audio / video. Anybody having idea to update and use AWSiOSSDK (Amazon Web Services SDK) version 1.7.1 to AWSiOSSDKv2 version 2.0.8, which is latest version of the SDK till now. I have updated…
1
vote
1 answer

NSURLSessionUploadTask does not respond to resume ios8 Beta3 (Device only)

When sending the resume method on a NSURLSessionUploadTask using a background client, NSURLSessionConfiguration:backgroundSessionConfiguration:, the process never begins. I can not reproduce on simulator, only on the device, and only on 8.0. This is…
Ryan Romanchuk
  • 10,819
  • 6
  • 37
  • 41
0
votes
0 answers

AWSIoTDataManager Not able to connect on iOS 17 devices. status is getting as unknown

AWSIoTDataManager not getting connected on iOS 17 devices. I am calling `AWSIoTDataManager.connect(withClientId. statusCallback is not received even after waiting. When manually check status of AWSIoTMQTTStatus it was unknown SDK Version:…
PSP
  • 196
  • 1
  • 14
0
votes
1 answer

Original AWSCognito framework not in newest AWS ios SDK

I inherited an iOS app that has AWSCognito as a dependency. I'm receiving an error for #import in a file. Looks like this lib is needed to do the following AWSCognitoCredentialsProvider *credentialsProvider =…
user2402616
  • 1,434
  • 4
  • 22
  • 38
0
votes
1 answer

AWS Amplify iOS cognitoIdentityPoolNotConfigured error

I am using federated sign in using AWS Amplify SDK. Following is my awsconfigfile.json { "UserAgent": "aws-amplify-cli/0.1.0", "Version": "0.1.0", "IdentityManager": { "Default": {} }, "CredentialsProvider": { "CognitoIdentity": { "Default":…
Nilesh Tupe
  • 43
  • 1
  • 6
0
votes
1 answer

AWSUserPoolsSignIn refresh token iOS

I am using the swift package AWSiOSSDKV2 from https://github.com/aws-amplify/aws-sdk-ios-spm I can log in using the SDK but how can I use refresh Token to generate new accessToken using their SDK? func login() { let pool =…
Tiago Mendes
  • 4,572
  • 1
  • 29
  • 35
0
votes
1 answer

AWS iOS cloudwatch describeLogStreams uploadsequencetoken empty

Earlier was getting access denied for describeLogStreams and after adding the necessary policy got that fixed but now there is response but uploadSequenceToken (and nextToken) are empty. AWSLogs.default().describeLogStreams(req!) { (response,…