There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Invoke this function by calling it from the main() function."
A block of code is set as follows:
public static void Main(string[] args)
{
createS3Bucket(); // invoke the method to create an S3 bucket
listS3Buckets(); // invoke the method to list all S3 buckets
Console.ReadKey();
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
public static void Main(string[] args)
{
createS3Bucket(); // invoke the method to create an S3 bucket
listS3Buckets(); // invoke the method to list all S3 buckets
Console.ReadKey();
}
Any command-line input or output is written as follows:
[ec2-user ~] # aws s3 cp s3://<bucketname>/<path to file>/<filename> myfile.txt
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "Next, click on Continue to select your Support Plan."
Warnings or important notes appear like this.
Tips and tricks appear like this.