Glossary · Cybersecurity

AWS Security Specialty (SCS-C03) Glossary of Key Terms

expert

A free AWS Security Specialty (SCS-C03) glossary: the services, IAM concepts and encryption terms you must know, defined in plain English for exam prep.

By The Exam Atlas Editorial Team · Verified 2026-08-05

Plain-English definitions of the terms that come up most often in AWS Certified Security - Specialty (SCS-C03) study. Definitions are simplified for learning; AWS documentation is authoritative.

TermDefinition
Shared responsibility modelThe split of duties: AWS secures the cloud infrastructure; you secure what you build in it. The line moves depending on the service type.
IAM (Identity and Access Management)The AWS service that controls who (principals) can do what (actions) on which resources, via JSON policies.
Identity-based policyA policy attached to a user, group or role that says what that identity may do.
Resource-based policyA policy attached to a resource (like an S3 bucket) that says who may access it - essential for cross-account access.
Service control policy (SCP)An AWS Organizations guardrail that limits the maximum permissions in member accounts. It never grants access, only bounds it.
Permissions boundaryA per-identity limit on the maximum permissions an IAM user or role can have, regardless of its attached policies.
Explicit denyA Deny statement in any applicable policy. It always wins over every allow.
Implicit denyThe default outcome when no policy allows a request.
IAM roleAn identity with temporary credentials that trusted principals can assume - the standard way to grant access to applications and cross-account users.
AWS STSSecurity Token Service - issues the temporary credentials behind role assumption and federation.
External IDA shared secret in a role’s trust policy that prevents the “confused deputy” problem in cross-account third-party access.
IAM Identity CenterAWS’s workforce single sign-on: central human access to many accounts with short-lived credentials (successor to AWS SSO).
FederationTrusting an external identity provider (SAML/OIDC) so users log in with existing identities instead of IAM users.
Condition keyA policy element (like aws:PrincipalOrgID or aws:SourceIp) that makes permissions depend on request context.
Least privilegeGranting only the permissions a task actually needs, and tightening them over time.
AWS KMSKey Management Service - creates, stores and controls the cryptographic keys that encrypt data across AWS.
Customer managed key (CMK)A KMS key you create and govern: key policy, rotation, grants and deletion are yours to control and audit.
AWS managed keyA KMS key a service creates and manages for you - zero admin, but minimal control and no custom key policy.
Key policyThe resource policy on a KMS key - the primary control over who can use or administer that key.
KMS grantA programmatic, temporary way to give a principal specific permissions on a KMS key without editing policies.
Envelope encryptionEncrypting data with a data key, then encrypting that data key with a KMS key - fast bulk crypto with centralised control.
Multi-Region keyA KMS key replicated across Regions with interoperable material, so data encrypted in one Region can be decrypted in another.
Imported key materialBringing your own key material into KMS, keeping origin control (and deletion/expiry responsibility) with you.
SSE-S3 vs SSE-KMSTwo S3 server-side encryption modes: SSE-S3 is fully AWS-managed; SSE-KMS uses a KMS key, adding key-level control and CloudTrail auditability.
AWS Certificate Manager (ACM)Provisions and renews TLS certificates for AWS services; public certificates are free and auto-renewing.
AWS Private CAA managed private certificate authority for issuing internal certificates to your own services and devices.
AWS Secrets ManagerStores secrets with encryption, fine-grained access and automatic rotation (native for several databases).
Parameter StoreSystems Manager’s configuration/secret store - SecureString encryption but no native rotation; the budget alternative.
Amazon MacieDiscovers and classifies sensitive data (like PII) in S3 using machine learning and pattern matching.
Data protection policyA CloudWatch Logs / SNS feature that detects and masks sensitive data fields inside log events and messages.
Amazon GuardDutyThreat detection that continuously analyses CloudTrail, VPC Flow Logs, DNS and workload sources for malicious activity.
AWS Security HubAggregates findings from AWS and partner tools and checks your accounts against security standards.
Amazon DetectiveBuilds a behaviour graph from your logs to investigate the root cause of findings.
Amazon InspectorAutomated vulnerability scanning for EC2 instances, container images in ECR, and Lambda functions.
AWS CloudTrailRecords API calls: management events by default, data events (like S3 object access) as an opt-in.
Log file integrity validationCloudTrail’s digest mechanism that lets you prove log files were not altered after delivery.
AWS ConfigRecords resource configurations over time and evaluates them against rules - your drift and compliance history.
VPC Flow LogsMetadata about network traffic (source, destination, ports, accept/reject) - who talked to whom, not packet contents.
OCSFOpen Cybersecurity Schema Framework - a normalised format for security findings, enabling third-party tool integration (new in SCS-C03).
Security groupA stateful, instance-level virtual firewall with allow rules only; return traffic is automatically permitted.
Network ACLA stateless, subnet-level filter with numbered allow and deny rules; both directions must be allowed explicitly.
AWS Network FirewallA managed, scalable network firewall for VPCs with stateful rules and domain/IPS-style filtering.
AWS WAFWeb application firewall filtering HTTP(S) requests at layer 7 - rules against injection, bots and abuse patterns.
AWS ShieldManaged DDoS protection: Standard is automatic for everyone; Advanced adds cost protection and response support.
VPC endpointPrivate connectivity from a VPC to AWS services without traversing the public internet; endpoint policies restrict use.
Session ManagerSystems Manager feature giving audited shell access to instances with no open inbound ports, no bastion, no SSH keys.
IMDSv2The session-token version of the instance metadata service, protecting instance credentials from request-forgery abuse.
AWS OrganizationsMulti-account management: consolidated billing, OUs, and SCP guardrails across every member account.
AWS Control TowerOpinionated landing-zone service that sets up and governs a secure multi-account environment with preventive and detective controls.
AWS ArtifactSelf-service portal for AWS compliance reports (SOC, ISO, PCI) and agreements - evidence for your auditors.

FAQ

Do I need to memorise every AWS service for the exam?
No - but you must know what each security-relevant service does and when to choose it over its neighbours. The scenario questions test selection and configuration judgement, not trivia.

Sources