Infrastructure Security – SCS-C02 Study Guide

Section 4:Infrastructure Security Up until this point, you have looked at the different types of attacks that your accounts could be at risk of while managing your day-to-day security responsibilities, along with how to use the services provided by AWS to respond to those incidents. This included instructions on how to gather metrics and logs […]

AWS Elastic Beanstalk – Establishing a Deployment Strategy – SAP-C02 Study Guide

AWS Elastic Beanstalk Now you are ready to take a look at another commonly used option, especially for newcomers on AWS, which is AWS Elastic Beanstalk. Beanstalk is an application management platform that targets web applications; it is commonly referred to as a Platform-as-a-Service (PaaS) solution. It is a great option, especially for newcomers, because […]

Reviewing Scope – Building Blocks – 1Z0-829 Study Guide

Reviewing Scope Got all that? Let’s review the rules on scope: Local variables: In scope from declaration to the end of the block Method parameters: In scope for the duration of the method Instance variables: In scope from declaration until the object is eligible for garbage collection Not sure what garbage collection is? Relax: that’s […]

S3 Static Website Hosting – Domains, DNS, and Content Delivery – SOA-C02 Study Guide

S3 Static Website Hosting This section covers the following objective of Domain 5 (Networking and Content Delivery) from the official AWS Certified SysOps Administrator – Associate (SOA-C02) exam guide: 5.2 Configure domains, DNS services, and content delivery CramSaver If you can correctly answer these questions before going through this section, save time by skimming the […]

Getting hands-on with Amazon Lex – AWS Application Services for AI/ML – MLS-C01 Study Guide

Getting hands-on with Amazon Lex Let’s get started: Figure 8.25 – The Create dialog of Amazon Lex Some sample utterances can be seen in Figure 8.26. In this example, movie_type is my variable: Figure 8.26 – The Sample utterances section Figure 8.27 – The Response section of Amazon Lex Figure 8.28 – The Response section […]

Written Labs – Connecting On-Premises Networks – ANS-C01 Study Guide

Written Labs Written Lab 7.1: Create a VPN Attachment on a Transit Gateway Using the Console For more information about these options, see https://docs.aws.amazon.com/vpn/latest/s2svpn/VPNTunnels.html. Written Lab 7.2: Perform a traceroute Written Lab 7.3: Use ping

Account skew – Understanding Salesforce sharing and security – Salesforce Data Architect Theory – Salesforce Certified Data Architect Study Guide

Account skew Some standard Salesforce objects maintain a special data relationship to facilitate record access under private sharing models. This is especially true of accounts and opportunities (and, in fact, is how account and opportunity teams are facilitated with regard to sharing and access to select records). Account skew is the result of an account […]

Tracing Scope – Building Blocks – 1Z0-829 Study Guide

Tracing Scope The exam will attempt to trick you with various questions on scope. You’ll probably see a question that appears to be about something complex and fails to compile because one of the variables is out of scope. Let’s try one. Don’t worry if you aren’t familiar with if statements or while loops yet. […]

Here’s an example – Create Queries with Best Practice – SOQL and SOSL – Salesforce Certified Platform Developer I Study Guide

Here’s an example to illustrate this approach. The code starts by defining a list of SObject types (searchTypes), which includes Account and Contact. It initializes a map (relatedRecordsMap) to store related records based on their SObjectType. List<SObjectType> searchTypes = new List<SObjectType> {Account.SObjectType, Contact.SObjectType}; Map<SObjectType, List<SObject>> relatedRecordsMap = new Map<SObjectType, List<SObject>>(); // Build the SOSL query […]