serverless-spy
Version:
CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.
34 lines (29 loc) • 1.26 kB
JavaScript
/*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
//node.js deps
//npm deps
//app deps
//begin module
module.exports = {
NO_KEY_OPTION: 'No "keyPath" or "privateKey" option supplied.',
NO_CERT_OPTION: 'No "certPath" or "clientCert" option supplied.',
NO_CA_OPTION: 'No "caPath" or "caCert" option supplied.',
INVALID_KEY_PATH_OPTION: 'Invalid "keyPath" option supplied.',
INVALID_CERT_PATH_OPTION: 'Invalid "certPath" option supplied.',
INVALID_CA_PATH_OPTION: 'Invalid "caPath" option supplied.',
INVALID_CLIENT_CERT_OPTION: 'Invalid "clientCert" option supplied.',
INVALID_PRIVATE_KEY_OPTION: 'Invalid "privateKey" option supplied.',
INVALID_CA_CERT_OPTION: 'Invalid "caCert" option supplied.'
};