Metadata-Version: 2.1
Name: appsync-resolver-uploader
Version: 0.0.1
Summary: Uploads request and response VTL templates for an API ID, type, field and datasource
Home-page: https://github.com/QuiNovas/appsync-resolver-uploader
Author: Joseph Wortmann
Author-email: joseph.wortmann@gmail.com
License: APL 2.0
Keywords: quinovas
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: System :: Software Distribution
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: argparse
Requires-Dist: boto3

app-resolver-uploader
=====================

A command line tool for uploading AppSync resolvers into AWS AppSyncL
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

This is intended to be used in a CI/CD process for managing AppSync
resolvers

Usage
~~~~~

::

    python -m appsync_resolver_uploader --aws-access-key-id accesskey --aws-secret-access-key secret --aws_region region --api-id id --type-name type --field-name field --datasource-name datasource --request-mapping-template request.vtl --response-mapping-template response.vtl 

Arguments
~~~~~~~~~

-  **aws-access-key-id** The AWS Access Key ID for the IAM user
-  **aws-secret-access-key** The AWS Secret Access Key for the IAM user
-  **aws-region** The AWS Region of the AppSync API to update
-  **api-id** The API ID of the AppSync API to upload the schema to
-  **type-name** The name of the GraphQL Type
-  **field-name** The name of the GraphQL field to attach the resolver
   to
-  **datasource-name** The name of the AppSync data source for which the
   resolver is being created
-  **request-mapping-template** The request mapping VTL file to upload
-  **response-mapping-template** The response mapping VTL file to upload


