• AWS – IAM Group

    AWS – IAM Group

    AWS – IAM Groups Table Of Contents: What Is IAM Group? Why Use IAM Group? Key Features Of IAM Group. How To Create An IAM User? (1) What Is IAM Group? An IAM (Identity and Access Management) Group in AWS is a collection of IAM users that share the same set of permissions. Instead of assigning permissions to each user individually, you can create a group, attach policies to it, and then add users to that group. This simplifies user management and access control in AWS. (2) Why Use IAM Group? (3) Key Features Of IAM Group. (4) How To

    Read More

  • AWS – IAM Users

    AWS – IAM Users

    AWS – IAM Users Table Of Contents: What Is IAM Users? How To Create An IAM User? (1) What Is AWS IAM? AWS Identity & Access Management (IAM) is a security service that controls who can access AWS resources and what actions they can perform. IAM allows you to secure your AWS environment by defining users, roles, policies, and permissions. (2) Core Components of IAM (2.1) IAM Users (2.2) How To Create An IAM User Step-1: Go To AWS IAM Console. You can install CISCO DUO app in your mobile and can add your AWS account by scanning the QR

    Read More

  • AWS – AWS Identity & Access Management (IAM) – Roles, Policies, Permissions.

    AWS – AWS Identity & Access Management (IAM) – Roles, Policies, Permissions.

    AWS Identity & Access Management (IAM) Table Of Contents: What Is AWS IAM? Core Components Of IAM. IAM Users. IAM Groups IAM Roles IAM Policies IAM Permissions How IAM Works ? Examples Use Cases. (1) What Is AWS IAM? AWS Identity & Access Management (IAM) is a security service that controls who can access AWS resources and what actions they can perform. IAM allows you to secure your AWS environment by defining users, roles, policies, and permissions. (2) Core Components of IAM (2.1) IAM Users (2.2) How To Create An IAM User Step-1: Go To AWS IAM Console. You can

    Read More

  • AWS – AWS Global Infrastructure – Regions, Availability Zones, Edge Locations

    AWS – AWS Global Infrastructure – Regions, Availability Zones, Edge Locations

    AWS Global Infrastructure Table Of Contents: What Is AWS Global Infrastructure? What Is AWS Region? What Is AWS Availability Zone ? Edge Locations & AWS Global Network. AWS Wavelength (For 5G Applications) (1) What Is AWS Global Infrastructure? AWS Global Infrastructure refers to the physical and network components that power Amazon Web Services (AWS). It is designed to provide high availability, scalability, security, and low-latency performance for businesses worldwide. (2) What Is AWS Region ? An AWS Region is a geographically isolated area where AWS hosts cloud infrastructure. Each region consists of multiple data centers (called Availability Zones) to provide

    Read More

  • AWS – AWS Learning Path.

    AWS – AWS Learning Path.

    AWS Learning Syllabus Table Of Contents: AWS Foundation AWS Global Infrastructure – Regions, Availability Zones, Edge Locations AWS Identity & Access Management (IAM) – Roles, Policies, Permissions Amazon EC2 – Virtual Machines, Auto Scaling, Load Balancing Amazon S3 – Data Storage, Security, Versioning, Lifecycle Policies AWS Lambda – Serverless Computing AWS CloudWatch & CloudTrail – Monitoring and Logging AWS Cost Management – Budgets, Pricing, Cost Optimization Data Storage & Databases Amazon S3 – Data lakes, Storage Classes, Permissions AWS Glue – ETL (Extract, Transform, Load) for data pipelines Amazon RDS – SQL databases (PostgreSQL, MySQL) Amazon DynamoDB – NoSQL database

    Read More

  • How The Dense LSTM Layers Handles Input ?

    How The Dense LSTM Layers Handles Input ? Table Of Contents: How Are Words Passed to Neurons in an LSTM(128) Layer? Step 1: Input from the Embedding Layer Step 2: Passing Each Word to the LSTM Layer Step 3: What Happens Inside Each LSTM Neuron? Step 4: Understanding the Output of LSTM(128) Final Conclusion Key Takeaway (1) How Are Words Passed to Neurons in an LSTM(128) Layer? (2) How Individual LSTM Neurons Connected To Each Other. (3) What Is The Output Of LSTM(128) Number Of Neurons. (4) Step 1: Input from the Embedding Layer (5) Step 2: Passing Each Word

    Read More

  • How To Check If The Dependency Is Installed Or Not?

    How To Check If The Dependency Is Installed Or Not? Table Of Contents: Add The Dependancy First. (1) Add Dependancy First Add dependency in path: androidappbuild.gradle dependencies { // The version of react-native is set by the React Native Gradle Plugin implementation("com.facebook.react:react-android") if (hermesEnabled.toBoolean()) { implementation("com.facebook.react:hermes-android") } else { implementation jscFlavor } // Add Firebase BoM (Bill of Materials) implementation platform('com.google.firebase:firebase-bom:33.9.0') // Add Firebase Analytics (or other Firebase services) implementation 'com.google.firebase:firebase-analytics' // If using Firebase Authentication (for OTP) implementation 'com.google.firebase:firebase-auth' // For Trucaller Authentication implementation "com.truecaller.android.sdk:truecaller-sdk:3.0.0" //implementation files('libs/truecaller-sdk-3.0.0.aar') } (2) Command To Check The Dependency Is Installed Or Not. cd

    Read More

  • Mobile Number Authentication Using Truecaller.

    Mobile Number Authentication Using Truecaller. Table Of Contents: Create A Truecaller Developer Account (1) Create A Truecaller Developer Account https://sdk-console-noneu.truecaller.com/sign-up (2) Create A New Project (3) Add Credentials You can find your package name from below location. Form your Android project. app/build.gradle You need to generate Debug signing certificate SHA-1: cd android ./gradlew signingReport Once you input your app details and create the app, you will be able to see a unique “ClientID” for your app which you need to include in your project to authorise all verification requests. (4) Application Setup Step-1: Ensure Minimum SDK Version (Mandatory if API

    Read More

  • How To Run App In Emulator & Physical Device At A Time?

    How To Run App In Emulator & Physical Device At A Time? Table Of Contents: Check Connected Devices. (1) Check Connected Devices adb devices (2) Run this command to list available emulators: emulator -list-avds (3) Start the emulator using the emulator name: emulator -avd <your_emulator_name>

    Read More