├── .circleci └── config.yml ├── .github ├── CODEOWNERS └── workflows │ ├── create-release-pr.yml │ ├── dependency-review.yml │ ├── issue_closed.yml │ ├── issue_comment.yml │ ├── issue_opened.yml │ └── release.yml ├── .gitignore ├── DependantTargets ├── AWSAPIGateway-Target │ └── empty.m ├── AWSAppleSignIn-Target │ └── empty.m ├── AWSAuthCore-Target │ └── empty.m ├── AWSAuthUI-Target │ └── empty.m ├── AWSAutoScaling-Target │ └── empty.m ├── AWSChimeSDKIdentity-Target │ └── empty.m ├── AWSChimeSDKMessaging-Target │ └── empty.m ├── AWSCloudWatch-Target │ └── empty.m ├── AWSCognitoAuth-Target │ └── empty.m ├── AWSCognitoIdentityProvider-Target │ └── empty.m ├── AWSCognitoIdentityProviderASF-Target │ └── empty.m ├── AWSComprehend-Target │ └── empty.m ├── AWSConnect-Target │ └── empty.m ├── AWSConnectParticipant-Target │ └── empty.m ├── AWSDynamoDB-Target │ └── empty.m ├── AWSEC2-Target │ └── empty.m ├── AWSElasticLoadBalancing-Target │ └── empty.m ├── AWSFacebookSignIn-Target │ └── empty.m ├── AWSGoogleSignIn-Target │ └── empty.m ├── AWSIoT-Target │ └── empty.m ├── AWSKMS-Target │ └── empty.m ├── AWSKinesis-Target │ └── empty.m ├── AWSKinesisVideo-Target │ └── empty.m ├── AWSKinesisVideoArchivedMedia-Target │ └── empty.m ├── AWSKinesisVideoSignaling-Target │ └── empty.m ├── AWSKinesisVideoWebRTCStorage-Target │ └── empty.m ├── AWSLambda-Target │ └── empty.m ├── AWSLex-Target │ └── empty.m ├── AWSLocationXCF-Target │ └── empty.m ├── AWSLogs-Target │ └── empty.m ├── AWSMachineLearning-Target │ └── empty.m ├── AWSMobileClientXCF-Target │ └── empty.m ├── AWSPinpoint-Target │ └── empty.m ├── AWSPolly-Target │ └── empty.m ├── AWSRekognition-Target │ └── empty.m ├── AWSS3-Target │ └── empty.m ├── AWSSES-Target │ └── empty.m ├── AWSSNS-Target │ └── empty.m ├── AWSSQS-Target │ └── empty.m ├── AWSSageMakerRuntime-Target │ └── empty.m ├── AWSSimpleDB-Target │ └── empty.m ├── AWSTextract-Target │ └── empty.m ├── AWSTranscribe-Target │ └── empty.m ├── AWSTranscribeStreaming-Target │ └── empty.m ├── AWSTranslate-Target │ └── empty.m └── AWSUserPoolsSignIn-Target │ └── empty.m ├── LICENSE ├── NOTICE ├── Package.swift ├── README.md └── local.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/create-release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/workflows/create-release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/issue_closed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/workflows/issue_closed.yml -------------------------------------------------------------------------------- /.github/workflows/issue_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/workflows/issue_comment.yml -------------------------------------------------------------------------------- /.github/workflows/issue_opened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/workflows/issue_opened.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/.gitignore -------------------------------------------------------------------------------- /DependantTargets/AWSAPIGateway-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSAppleSignIn-Target/empty.m: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /DependantTargets/AWSAuthCore-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSAuthUI-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSAutoScaling-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSChimeSDKIdentity-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSChimeSDKMessaging-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSCloudWatch-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSCognitoAuth-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSCognitoIdentityProvider-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSCognitoIdentityProviderASF-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSComprehend-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSConnect-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSConnectParticipant-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSDynamoDB-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSEC2-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSElasticLoadBalancing-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSFacebookSignIn-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSGoogleSignIn-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSIoT-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSKMS-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSKinesis-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSKinesisVideo-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSKinesisVideoArchivedMedia-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSKinesisVideoSignaling-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSKinesisVideoWebRTCStorage-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSLambda-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSLex-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSLocationXCF-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSLogs-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSMachineLearning-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSMobileClientXCF-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSPinpoint-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSPolly-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSRekognition-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSS3-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSSES-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSSNS-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSSQS-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSSageMakerRuntime-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSSimpleDB-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSTextract-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSTranscribe-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSTranscribeStreaming-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSTranslate-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DependantTargets/AWSUserPoolsSignIn-Target/empty.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/NOTICE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/README.md -------------------------------------------------------------------------------- /local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-amplify/aws-sdk-ios-spm/HEAD/local.sh --------------------------------------------------------------------------------