Skip to content
Open

aws #92

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions _posts/2019-11-15-AWS-Services-Compute.md
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,12 @@ API Gateway supports multiple mechanisms of access control using

Use AWS Systems Manager Parameter Store, you can store data such as passwords, database strings, Amazon Machine Image (AMI) IDs, and license codes as parameter values.

### Pass custom headers through API Gateway to a Lambda

By default, a Lambda function only ingests the request body received by an API Gateway API. To pass custom headers from an API Gateway API to a Lambda function, use curl to send a message to the API using a body mapping template to extract any custom headers added to the message.

The API sends the updated message to a Lambda function to process the headers, returning one or more header values from the original message.

### AWS Step Fuctions

It enables you to coordinate the components of distributed applications and microservices using visual workflows. You build applications from individual components that each perform a discrete function, or task, allowing you to scale and change applications quickly.
Expand Down
6 changes: 6 additions & 0 deletions _posts/2020-02-05-AWS-Services-Databases.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,12 @@ DAX maintains two distinct caches: the item cache and the query cache.
- the **item cache** is populated with results from `GetItem` and `BatchGetItem` and has a five-minutes default TTL.
- the **query cache** stores results of `Query` and `Scan` operations and caches based on the parameters specified.

### restrict user or role to specific attributes in a DynamoDB table

Use IAM policy conditions for **fine-grained access control (FGAC)**.

FGAC allows you to control access to individual items or item attributes for both read and write operations in a DynamoDB table.

## Amazon Redshift

- It's a petabyte-scale data warehouse product available within AWS.
Expand Down