Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/index.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ stack "Dev" {
}

queue "users-dlq" {
messageRetention (7.0 * 24.0 * 3600.0) // 7 days
retentionPeriod (7.0 * 24.0 * 3600.0) // 7 days
}

queue "users-queue" {
Expand Down Expand Up @@ -205,7 +205,7 @@ table th {
| **KMS Key** | `kmsKey` | `admissionPrincipal`, `alias`, `constructId`, `description`, `disableKeyRotation`, `enableKeyRotation`, `enabled`, `keySpec`, `keyUsage`, `pendingWindow`, `policy`, `removalPolicy` |
| **LambdaRole** | `lambdaRole` | `assumeRolePrincipal`, `basicExecution`, `constructId`, `inlinePolicy`, `kmsDecrypt`, `managedPolicy`, `vpcExecution`, `xrayTracing` |
| **Origin Access Identity** | `originAccessIdentity` | `constructId`, `comment` |
| **Queue** | `queue` | `constructId`, `contentBasedDeduplication`, `deadLetterQueue`, `delaySeconds`, `fifo`, `messageRetention`, `visibilityTimeout` |
| **Queue** | `queue` | `constructId`, `contentBasedDeduplication`, `dataKeyReuse`, `deadLetterQueue`, `deduplicationScope`, `deliveryDelay`, `encryption`, `encryptionMasterKey`, `enforceSSL`, `fifo`, `fifoThroughputLimit`, `maxMessageSizeBytes`, `receiveMessageWaitTime`, `redriveAllowPolicy`, `removalPolicy`, `retentionPeriod`, `visibilityTimeout` |
| **RDS Proxy** | `rdsProxy` | `constructId`, `debugLogging`, `iamAuth`, `idleClientTimeout`, `initQuery`, `maxConnectionsPercent`, `maxIdleConnectionsPercent`, `proxyTarget`, `requireTLS`, `secrets`, `sessionPinningFilters`, `vpc` |
| **REST API (API Gateway V1)** | `restApi` | `binaryMediaTypes`, `cloneFrom`, `constructId`, `defaultCorsPreflightOptions`, `defaultIntegration`, `defaultMethodOptions`, `deployOptions`, `description`, `disableExecuteApiEndpoint`, `endpointTypes`, `failOnWarnings`, `parameters`, `policy`, `restApiName`, `retainDeployments` |
| **Route53 ARecord** | `aRecord` | `comment`, `constructId`, `target`, `ttl`, `zone` |
Expand Down
2 changes: 1 addition & 1 deletion docs/lambda-production-defaults.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ stack "CustomDLQStack" {
// Create custom DLQ with specific settings
let! customDlq =
queue "critical-failures" {
messageRetention (30.0 * 24.0 * 3600.0) // 30 days in seconds
retentionPeriod (30.0 * 24.0 * 3600.0) // 30 days in seconds
encryption QueueEncryption.KMS
}

Expand Down
4 changes: 2 additions & 2 deletions docs/sns-sqs-messaging.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Create a simple SQS queue for asynchronous message processing.
stack "BasicSQS" {
queue "OrderProcessing" {
visibilityTimeout 30.0
messageRetention 345600.0 // 4 days
retentionPeriod 345600.0 // 4 days
}
}

Expand Down Expand Up @@ -88,7 +88,7 @@ stack "QueueWithDLQ" {
// Create dead-letter queue first
let dlq =
queue "ProcessingDLQ" {
messageRetention 1209600.0 // 14 days
retentionPeriod 1209600.0 // 14 days
}

// Create main queue with DLQ
Expand Down
Loading