The CDK Construct Library for AWS::AppSync
Project description
AWS AppSync Construct Library
---All classes with the
Cfn
prefix in this module (CFN Resources) are always stable and safe to use.
The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
This module is part of the AWS Cloud Development Kit project.
Usage Example
Given the following GraphQL schema file schema.graphql
:
type ServiceVersion {
version: String!
}
type Customer {
id: String!
name: String!
}
input SaveCustomerInput {
name: String!
}
type Order {
customer: String!
order: String!
}
type Query {
getServiceVersion: ServiceVersion
getCustomers: [Customer]
getCustomer(id: String): Customer
}
input FirstOrderInput {
product: String!
quantity: Int!
}
type Mutation {
addCustomer(customer: SaveCustomerInput!): Customer
saveCustomer(id: String!, customer: SaveCustomerInput!): Customer
removeCustomer(id: String!): Customer
saveCustomerWithFirstOrder(customer: SaveCustomerInput!, order: FirstOrderInput!, referral: String): Order
doPostOnAws: String!
}
the following CDK app snippet will create a complete CRUD AppSync API:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
class ApiStack(Stack):
def __init__(self, scope, id):
super().__init__(scope, id)
user_pool = UserPool(self, "UserPool",
user_pool_name="myPool"
)
api = GraphQLApi(self, "Api",
name="demoapi",
log_config={
"field_log_level": FieldLogLevel.ALL
},
authorization_config={
"default_authorization": {
"authorization_type": AuthorizationType.USER_POOL,
"user_pool_config": {
"user_pool": user_pool,
"default_action": UserPoolDefaultAction.ALLOW
}
},
"additional_authorization_modes": [{
"authorization_type": AuthorizationType.API_KEY
}
]
},
schema_definition_file="./schema.graphql"
)
none_dS = api.add_none_data_source("None", "Dummy data source")
none_dS.create_resolver(
type_name="Query",
field_name="getServiceVersion",
request_mapping_template=MappingTemplate.from_string(JSON.stringify(
version="2017-02-28"
)),
response_mapping_template=MappingTemplate.from_string(JSON.stringify(
version="v1"
))
)
customer_table = Table(self, "CustomerTable",
billing_mode=BillingMode.PAY_PER_REQUEST,
partition_key={
"name": "id",
"type": AttributeType.STRING
}
)
# If your table is already created you can also use use import table and use it as data source.
customer_dS = api.add_dynamo_db_data_source("Customer", "The customer data source", customer_table)
customer_dS.create_resolver(
type_name="Query",
field_name="getCustomers",
request_mapping_template=MappingTemplate.dynamo_db_scan_table(),
response_mapping_template=MappingTemplate.dynamo_db_result_list()
)
customer_dS.create_resolver(
type_name="Query",
field_name="getCustomer",
request_mapping_template=MappingTemplate.dynamo_db_get_item("id", "id"),
response_mapping_template=MappingTemplate.dynamo_db_result_item()
)
customer_dS.create_resolver(
type_name="Mutation",
field_name="addCustomer",
request_mapping_template=MappingTemplate.dynamo_db_put_item(
PrimaryKey.partition("id").auto(),
Values.projecting("customer")),
response_mapping_template=MappingTemplate.dynamo_db_result_item()
)
customer_dS.create_resolver(
type_name="Mutation",
field_name="saveCustomer",
request_mapping_template=MappingTemplate.dynamo_db_put_item(
PrimaryKey.partition("id").is("id"),
Values.projecting("customer")),
response_mapping_template=MappingTemplate.dynamo_db_result_item()
)
customer_dS.create_resolver(
type_name="Mutation",
field_name="saveCustomerWithFirstOrder",
request_mapping_template=MappingTemplate.dynamo_db_put_item(
PrimaryKey.partition("order").auto().sort("customer").is("customer.id"),
Values.projecting("order").attribute("referral").is("referral")),
response_mapping_template=MappingTemplate.dynamo_db_result_item()
)
customer_dS.create_resolver(
type_name="Mutation",
field_name="removeCustomer",
request_mapping_template=MappingTemplate.dynamo_db_delete_item("id", "id"),
response_mapping_template=MappingTemplate.dynamo_db_result_item()
)
http_dS = api.add_http_data_source("http", "The http data source", "https://aws.amazon.com/")
http_dS.create_resolver(
type_name="Mutation",
field_name="doPostOnAws",
request_mapping_template=MappingTemplate.from_string("{\n \"version\": \"2018-05-29\",\n \"method\": \"POST\",\n # if full path is https://api.xxxxxxxxx.com/posts then resourcePath would be /posts\n \"resourcePath\": \"/path/123\",\n \"params\":{\n \"body\": $util.toJson($ctx.args),\n \"headers\":{\n \"Content-Type\": \"application/json\",\n \"Authorization\": \"$ctx.request.headers.Authorization\"\n }\n }\n }"),
response_mapping_template=MappingTemplate.from_string("\n ## Raise a GraphQL field error in case of a datasource invocation error\n #if($ctx.error)\n $util.error($ctx.error.message, $ctx.error.type)\n #end\n ## if the response status code is not 200, then return an error. Else return the body **\n #if($ctx.result.statusCode == 200)\n ## If response is 200, return the body.\n $ctx.result.body\n #else\n ## If response is not 200, append the response to error block.\n $utils.appendError($ctx.result.body, \"$ctx.result.statusCode\")\n #end\n ")
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for aws-cdk.aws-appsync-1.53.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06734ed5dd9092d09c396d873ce3ce66d9273d0212e53b92909bf6f5b76d8e43 |
|
MD5 | 001d722f313cc1dd81f05c4e2a8ca567 |
|
BLAKE2b-256 | 426dc8ae370b69381de79b7ef530333d3c984fb7a589b4b0c22d9789b3054609 |
Hashes for aws_cdk.aws_appsync-1.53.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d614f307159ec8261f49f6c9852826c77df34a18dfc511139e57bcba51db61ad |
|
MD5 | 896151e6c875ce83f7c9aa8a64cfcda8 |
|
BLAKE2b-256 | 65664995ff49d436f3b7e1f82949d336b63bf81bbea433f94c21b0d132306ece |