This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Order @model | |
@key(name: "byCustomerByStatusByDate", fields: ["customerID", "status", "date"]) | |
@key(name: "byCustomerByDate", fields: ["customerID", "date"]) | |
@key(name: "byRepresentativebyDate", fields: ["accountRepresentativeID", "date"]) | |
@key(name: "byProduct", fields: ["productID", "id"]) | |
{ | |
id: ID! | |
customerID: ID! | |
accountRepresentativeID: ID! | |
productID: ID! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"required": ["Statement"], | |
"additionalProperties": false, | |
"properties": { | |
"Version": { | |
"type": "string", | |
"enum": ["2008-10-17", "2012-10-17"] | |
}, | |
"Id": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a4b.amazonaws.com | |
access-analyzer.amazonaws.com | |
account.amazonaws.com | |
acm-pca.amazonaws.com | |
acm.amazonaws.com | |
airflow-env.amazonaws.com | |
airflow.amazonaws.com | |
alexa-appkit.amazon.com | |
alexa-connectedhome.amazon.com | |
amazonmq.amazonaws.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Create Google Chrome launcher (for Mac) | |
# | |
CHROME_APP="/Applications/Google Chrome.app" | |
CHROME_PROFILE_DIR="$HOME/Library/Application Support/Google/Chrome" | |
echo "Enter profile name: \c" |