The CDK Construct Library for AWS::AppSync
Project description
AWS AppSync Construct Library
---This is a developer preview (public beta) module.
All classes with the
Cfnprefix in this module (CFN Resources) are auto-generated from CloudFormation. They are stable and safe to use.However, all other classes, i.e., higher level constructs, are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. 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 Customer {
id: String!
name: String!
}
input SaveCustomerInput {
name: String!
}
type Order {
customer: String!
order: String!
}
type Query {
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
}
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",
sign_in_type=SignInType.USERNAME
)
api = GraphQLApi(self, "Api",
name="demoapi",
log_config={
"field_log_level": FieldLogLevel.ALL
},
authorization_config={
"default_authorization": {
"user_pool": user_pool,
"default_action": UserPoolDefaultAction.ALLOW
},
"additional_authorization_modes": [{
"api_key_desc": "My API Key"
}
]
},
schema_definition_file="./schema.graphql"
)
customer_table = Table(self, "CustomerTable",
billing_mode=BillingMode.PAY_PER_REQUEST,
partition_key={
"name": "id",
"type": AttributeType.STRING
}
)
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()
)
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws-cdk.aws-appsync-1.30.0.tar.gz.
File metadata
- Download URL: aws-cdk.aws-appsync-1.30.0.tar.gz
- Upload date:
- Size: 120.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01a1d07822f5b2efbfd7da3e69a1bd9bac5e794deedb1710446aa896d482e642
|
|
| MD5 |
7f1b4699d885fbd9b299910c6a5622c9
|
|
| BLAKE2b-256 |
feba5ca52a70111f6194e77076ac608b6985f2fdde6a509749e9f0d6f6e13160
|
File details
Details for the file aws_cdk.aws_appsync-1.30.0-py3-none-any.whl.
File metadata
- Download URL: aws_cdk.aws_appsync-1.30.0-py3-none-any.whl
- Upload date:
- Size: 118.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04165e4ccd119dd41c95604c7851f81d9c717a6b39d9f9eb2fb2f3b9b134e46d
|
|
| MD5 |
7c765f631f6cbb6494d2df8a38f9a41f
|
|
| BLAKE2b-256 |
6fc5ac35837cb6a95910ccf92abe7e47f4c9514e453b4b1621097dd2a79e02d5
|