Skip to content

Commit ceb9e7e

Browse files
authored
Merge pull request #93 from homebysix/patch-1
Standardize capitalization of MySQL
2 parents 9bc9766 + aeb1628 commit ceb9e7e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc_source/vpc-rds.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,13 @@ logger.setLevel(logging.INFO)
8585
try:
8686
conn = pymysql.connect(rds_host, user=name, passwd=password, db=db_name, connect_timeout=5)
8787
except:
88-
logger.error("ERROR: Unexpected error: Could not connect to MySql instance.")
88+
logger.error("ERROR: Unexpected error: Could not connect to MySQL instance.")
8989
sys.exit()
9090
91-
logger.info("SUCCESS: Connection to RDS mysql instance succeeded")
91+
logger.info("SUCCESS: Connection to RDS MySQL instance succeeded")
9292
def handler(event, context):
9393
"""
94-
This function fetches content from mysql RDS instance
94+
This function fetches content from MySQL RDS instance
9595
"""
9696
9797
item_count = 0
@@ -119,7 +119,7 @@ A second file contains connection information for the function\.
119119
**Example rds\_config\.py**
120120

121121
```
122-
#config file containing credentials for rds mysql instance
122+
#config file containing credentials for RDS MySQL instance
123123
db_username = "username"
124124
db_password = "password"
125125
db_name = "ExampleDB"
@@ -156,4 +156,4 @@ In this step, you invoke the Lambda function manually using the `invoke` command
156156
+ Review the results in the AWS Lambda console\.
157157
+ Verify the results in CloudWatch Logs\.
158158

159-
Now that you have created a Lambda function that accesses a database in your VPC, you can have the function invoked in response to events\. For information about configuring event sources and examples, see [Use Cases](use-cases.md)\.
159+
Now that you have created a Lambda function that accesses a database in your VPC, you can have the function invoked in response to events\. For information about configuring event sources and examples, see [Use Cases](use-cases.md)\.

0 commit comments

Comments
 (0)