Organizing Your Stacks – Establishing a Deployment Strategy – SAP-C02 Study Guide

Organizing Your Stacks First of all, for complex environments, it is recommended to split the definition of your environment resources across multiple CloudFormation templates. But how should you split them? Best practice is to organize your stacks according to the lifecycle and the ownership of the AWS resources they define. For instance, suppose you need […]

Cram Quiz – Troubleshoot Network Connectivity – SOA-C02 Study Guide

Cram Quiz Answer these questions. The answers follow the last question. If you cannot answer these questions correctly, consider reading this section again until you can. 1. What are the minimum requirements for an S3 bucket that will be used to store ELB access logs? (Choose two.) A. It must be in the same AZ as […]

Getting hands-on with Amazon SageMaker notebook instances – Amazon SageMaker Modeling – MLS-C01 Study Guide

Getting hands-on with Amazon SageMaker notebook instances The very first step, in this section, is to create a Jupyter Notebook, and this requires a notebook instance. You can start by creating a notebook instance, as follows: Figure 9.3 – Amazon SageMaker role creation sh-4.2$ cd ~/SageMaker/ sh-4.2$ git clone https://github.com/PacktPublishing/AWS-Certified-Machine-Learning-Specialty-MLS-C01-Certification-Guide-Second-Edition.git Figure 9.4 – Jupyter Notebook […]

The Route Table and Network ACL Tabs – Configuring Infrastructure Security – SCS-C02 Study Guide

The Route Table and Network ACL Tabs The Route table and Network ACL tabs allow you to view the associated route table and NACL with the subnet and make changes as necessary. The following screenshot shows a default route (local) with another route pointing to the NAT gateway. The NAT gateway handles internet requests (0.0.0.0/0) […]

AWS CloudFormation – Establishing a Deployment Strategy – SAP-C02 Study Guide

AWS CloudFormation Another option for deployment is to use AWS CloudFormation. CloudFormation is a service that lets you provision all sorts of AWS resources, offering an IaC approach. You define your resources in one or multiple templates, written in either YAML or JSON. YAML is typically easier and less verbose, compared to JSON, for humans […]

ExamAlert – Troubleshoot Network Connectivity – SOA-C02 Study Guide

ExamAlert You must be capable of reading and interpreting flow logs and identifying source IP and destination IP addresses, ports, and whether the traffic was blocked or allowed. Also, you need to understand that traffic can be blocked by a network access control list, and that the NACL is enforced before the security group on […]

Coexistence of the golden record – Master Data Management – Salesforce Data Architect Theory – Salesforce Certified Data Architect Study Guide

Coexistence of the golden record Similar to the consolidated golden record implementation method briefly explained previously, MDM changes can happen in both the golden record system and any source system for master data. While this approach can take longer to implement, data can be mastered in the golden record system or any of the master […]

Trigger.isBefore – Create Triggers with Context Variables – Triggers and Bulk Processing – Salesforce Certified Platform Developer I Study Guide

Trigger.isBefore, Trigger.isAfter These context variables provide information about the timing of the trigger execution. These variables are contained in the System.Trigger class and are commonly used to control the flow of logic within triggers. •\ Trigger.isBefore: Returns true if the trigger was fired before any record was saved. This variable is often used to perform […]

Review Questions 3  – Building Blocks – 1Z0-829 Study Guide

var blocky = “”” squirrel \s pigeon \ termite”””; System.out.print(blocky); var num1 = Long.parseLong(“100”); var num2 = Long.valueOf(“100”); System.out.println(Long.max(num1, num2)); public class Price { public void admission() { INSERT CODE HERE System.out.print(amount); } }

OSPF Areas – Networking – 350-601 Study Guide

OSPF Areas An area is a logical division of routers and links within an OSPF domain that creates separate subdomains. LSA flooding is contained within an area, and the link-state database is limited to links within the area, which reduces the CPU and memory requirements for an OSPF-enabled router. You can assign an area ID […]