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
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |
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
WarnUpFunctionXXX: | |
Type: "AWS::Events::Rule" | |
Properties: | |
ScheduleExpression: cron(0/10 10-01 * * ? *) | |
Name: WarnUpFunctionXXX | |
State: ENABLED | |
RoleArn: arn:aws:iam::644846694994:role/my-role | |
Targets: | |
- Arn: !GetAtt XXXLambdaFunction.Arn | |
Id: "TargetWarnFunctionXXX" |
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
SELECT | |
truck_id, | |
fleet, | |
fuel_capacity, | |
model, | |
load_capacity, | |
make, | |
measure_name | |
FROM "sampleDB".IoT | |
GROUP BY truck_id, fleet, fuel_capacity, model, load_capacity, make, measure_name |
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
exports.mys3UpdaloadEventhandler = async (event, context) => { | |
console.log('event', event); | |
console.log('context', context); | |
const bucket = event.Records[0].s3.bucket.name; | |
console.log('bucket', bucket); | |
const key = decodeURIComponent(event.Records[0].s3.object.key.replace(/\+/g, ' ')); | |
try { |
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
{ | |
"departmentId": 10, | |
"departmentName": "Administration", | |
"locationId": 1700, | |
"managerId": 200, | |
"links": [ | |
{ | |
"href": "10/employees", | |
"rel": "employees", | |
"type" : "GET" |
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
AWSTemplateFormatVersion: 2010-09-09 | |
Description: | | |
Deploy a MariaDB Server based on AWS Marketplace AMI "MariaDB Server 10.3 on AmazonLinux" for DEVELOPMENT ONLY | |
Parameters: | |
ServerKeyPair: | |
Type: AWS::EC2::KeyPair::KeyName | |
Description: Your Amazon EC2 Key Pair. | |
VPCId: | |
Type: AWS::EC2::VPC::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
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Action": [ | |
"ec2:DeleteFlowLogs", | |
"ec2:CreateFlowLogs", | |
"ec2:DescribeFlowLogs", | |
"logs:CreateLogGroup", | |
"logs:CreateLogStream", |
NewerOlder