AWS 的数据传输类型大致有如下三类:
- 与 Internet 之间的数据传输
- AWS 内部跨区域的数据传输
- AWS 内部同一区域的数据传输
每个区域从 AWS 到 Internet 的数据传输费率都不一样,基本是 下行免费,上行收费,费率算总量
https://aws.amazon.com/cn/ec2/pricing/on-demand/ ---> 数据传输部分
AWS 的数据传输类型大致有如下三类:
每个区域从 AWS 到 Internet 的数据传输费率都不一样,基本是 下行免费,上行收费,费率算总量
https://aws.amazon.com/cn/ec2/pricing/on-demand/ ---> 数据传输部分
// Every jenkins file should start with either a Declarative or Scripted Pipeline entry point. | |
node { | |
//Utilizing a try block so as to make the code cleaner and send slack notification in case of any error | |
try { | |
//Call function to send a message to Slack | |
notifyBuild('STARTED') | |
// Global variable declaration | |
def project = 'sa-android' | |
def appName = 'Sample App' |