# aws-constructs-factories module
<!--BEGIN STABILITY BANNER-->---
![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge)
> All classes are under active development and subject to non-backward compatible changes or removal in any
> future version. These are not subject to the [Semantic Versioning](https://semver.org/) model.
> This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
---
<!--END STABILITY BANNER-->
| **Reference Documentation**:| <span style="font-weight: normal">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|
|:-------------|:-------------|
<div style="height:8px"></div>
| **Language** | **Package** |
|:-------------|-----------------|
|![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_constructs_factories`|
|![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-constructs-factories`|
|![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.constructsfactories`|
## Overview
This AWS Solutions Construct exposes the same code used to create our underlying resources as factories, so clients can create individual resources that are well-architected.
There are factories to create:
[Amazon S3 buckets](https://docs.aws.amazon.com/solutions/latest/constructs/aws-constructs-factories.html#s3-buckets) - Create a well architected S3 bucket (e.g. - includes an access logging bucket)
[AWS Step Functions state machines](https://docs.aws.amazon.com/solutions/latest/constructs/aws-constructs-factories.html#step-functions-state-machines) - Create a well architected Step Functions state machine and log group (e.g. log group has /aws/vendedlogs/ name prefix to avoid resource policy issues)
## S3 Buckets
Create fully well-architected S3 buckets with as little as one function call. Here is a minimal deployable pattern definition:
Typescript
```python
import { Construct } from 'constructs';
import { Stack, StackProps } from 'aws-cdk-lib';
import { ConstructsFactories } from '@aws-solutions-constructs/aws-constructs-factories';
const factories = new ConstructsFactories(this, 'MyFactories');
factories.s3BucketFactory('GoodBucket', {});
```
Python
```python
from aws_cdk import (
Stack,
)
from constructs import Construct
from aws_solutions_constructs import (
aws_constructs_factories as cf
)
factories = cf.ConstructsFactories(self, 'MyFactories')
factories.s3_bucket_factory('GoodBucket')
```
Java
```java
import software.constructs.Construct;
import software.amazon.awscdk.Stack;
import software.amazon.awscdk.StackProps;
import software.amazon.awsconstructs.services.constructsfactories.ConstructsFactories;
import software.amazon.awsconstructs.services.constructsfactories.S3BucketFactoryProps;
final ConstructsFactories factories = new ConstructsFactories(this, "MyFactories");
factories.s3BucketFactory("GoodBucket",
new S3BucketFactoryProps.Builder().build());
```
# S3BucketFactory Function Signature
```python
s3BucketFactory(id: string, props: S3BucketFactoryProps): S3BucketFactoryResponse
```
# S3BucketFactoryProps
| **Name** | **Type** | **Description** |
|:-------------|:----------------|-----------------|
|bucketProps?|[`s3.BucketProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.BucketProps.html)|Optional user provided props to override the default props for the S3 Bucket.|
|logS3AccessLogs?|`boolean`|Whether to turn on Access Logging for the S3 bucket. Creates an S3 bucket with associated storage costs for the logs. Enabling Access Logging is a best practice. default - true|
|loggingBucketProps?|[`s3.BucketProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.BucketProps.html)|Optional user provided props to override the default props for the S3 Logging Bucket.|
# S3BucketFactoryResponse
| **Name** | **Type** | **Description** |
|:-------------|:----------------|-----------------|
|s3Bucket|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|The s3.Bucket created by the factory. |
|s3LoggingBucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|The s3.Bucket created by the construct as the logging bucket for the primary bucket. If the logS3AccessLogs property is false, this value will be undefined.|
# Default settings
Out of the box implementation of the Construct without any override will set the following defaults:
* An S3 Content Bucket
* AWS managed Server Side Encryption (AES256)
* Lifecycle rule to transition objects to Glacier storage class in 90 days
* Access Logging enabled
* All Public access blocked
* Versioning enabled
* UpdateReplacePolicy is delete
* Deletion policy is delete
* Bucket policy requiring SecureTransport
* An S3 Bucket for Access Logs
* AWS managed Server Side Encryption (AES256)
* All public access blocked
* Versioning enabled
* UpdateReplacePolicy is delete
* Deletion policy is delete
* Bucket policy requiring SecureTransport
* Bucket policy granting PutObject privileges to the S3 logging service, from the content bucket in the content bucket account.
* cfn_nag suppression of access logging finding (not logging access to the access log bucket)
# Architecture
![Architecture Diagram](architecture.png)
## Step Functions State Machines
Create fully well-architected Step Functions state machine with log group. The log group name includes the vendedlogs prefix. Here
but is unique to the stack, avoiding naming collions between instances. is a minimal deployable pattern definition:
Typescript
```python
import { App, Stack } from "aws-cdk-lib";
import { ConstructsFactories } from "../../lib";
import { generateIntegStackName, CreateTestStateMachineDefinitionBody } from '@aws-solutions-constructs/core';
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
const placeholderTask = new sftasks.EvaluateExpression(this, 'placeholder', {
expression: '$.argOne + $.argTwo'
});
const factories = new ConstructsFactories(this, 'minimalImplementation');
factories.stateMachineFactory('testsm', {
stateMachineProps: {
definitionBody: sfn.DefinitionBody.fromChainable(placeholderTask)
}
});
```
Python
```python
# Pending
```
Java
```java
// Pending
```
# stateMachineFactory Function Signature
```python
stateMachineFactory(id: string, props: StateMachineFactoryProps): StateMachineFactoryResponse
```
# StateMachineFactoryProps
| **Name** | **Type** | **Description** |
|:-------------|:----------------|-----------------|
|stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)|The CDK properties that define the state machine. This property is required and must include a definitionBody or definition (definition is deprecated)|
|logGroup?|[]`logs.LogGroup`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroup.html)|An existing LogGroup to which the new state machine will write log entries. Default: none, the construct will create a new log group.|
|createCloudWatchAlarms?|boolean|Whether to create recommended CloudWatch alarms for the State Machine. Default: the alarms are created|
|cloudWatchAlarmsPrefix?|string|Creating multiple State Machines with one Factories construct will result in name collisions as the cloudwatch alarms originally had fixed resource ids. This value was added to avoid collisions while not making changes that would be destructive for existing stacks. Unless you are creating multiple State Machines using factories you can ignore it|
# StateMachineFactoryResponse
| **Name** | **Type** | **Description** |
|:-------------|:----------------|-----------------|
|stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)||
|logGroup|[]`logs.LogGroupProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroupProps.html)||
|cloudwatchAlarms?|[`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html)|The alarms created by the factory (ExecutionFailed, ExecutionThrottled, ExecutionAborted)|
# Default settings
Out of the box implementation of the Construct without any override will set the following defaults:
* An AWS Step Functions State Machine
* Configured to log to the new log group at LogLevel.ERROR
* Amazon CloudWatch Logs Log Group
* Log name is prefaced with /aws/vendedlogs/ to avoid resource policy [issues](https://docs.aws.amazon.com/step-functions/latest/dg/cw-logs.html#cloudwatch-iam-policy). The Log Group name is still created to be unique to the stack to avoid name collisions.
* CloudWatch alarms for:
* 1 or more failed executions
* 1 or more executions being throttled
* 1 or more executions being aborted
# Architecture
![Architecture Diagram](sf-architecture.png)
## SQS Queues
Create SQS queues complete with DLQs and KMS CMKs with one function call. Here is a minimal deployable pattern definition:
Typescript
```python
import { Construct } from 'constructs';
import { Stack, StackProps } from 'aws-cdk-lib';
import { ConstructsFactories } from '@aws-solutions-constructs/aws-constructs-factories';
const factories = new ConstructsFactories(this, 'MyFactories');
factories.sqsQueueFacgory('GoodQueue', {});
```
Python
```python
Pending
```
Java
```java
Pendiong
```
# SqsQueueFactory Function Signature
```python
SqsQueueFactory(id: string, props: SqsQueueFactoryProps): SqsQueueFactoryResponse
```
# SqsQueueFactoryProps
| **Name** | **Type** | **Description** |
|:-------------|:----------------|-----------------|
|queueProps?|sqs.QueueProps|Optional user provided props to override the default props for the primary queue.|
|enableEncryptionWithCustomerManagedKey?|boolean|If no key is provided, this flag determines whether the queue is encrypted with a new CMK or an AWS managed key. This flag is ignored if any of the following are defined: queueProps.encryptionMasterKey, encryptionKey or encryptionKeyProps. default - False if queueProps.encryptionMasterKey, encryptionKey, and encryptionKeyProps are all undefined.|
|encryptionKey?|kms.Key|An optional, imported encryption key to encrypt the SQS Queue with. Default - none|
|encryptionKeyProps?|kms.KeyProps|Optional user provided properties to override the default properties for the KMS encryption key used to encrypt the SQS Queue with. @default - None|
|deployDeadLetterQueue?|boolean|Whether to deploy a secondary queue to be used as a dead letter queue.|
|deadLetterQueueProps?|sqs.QueueProps|Optional user provided properties for the dead letter queue|
|maxReceiveCount?|number|The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. default - [code](https://github.com/awslabs/aws-solutions-constructs/blob/8b30791902e09db2f7c49410a03d5d95ccc2ef51/source/patterns/%40aws-solutions-constructs/core/lib/sqs-defaults.ts#L32)|
# SqsQueueFactoryResponse
| **Name** | **Type** | **Description** |
|:-------------|:----------------|-----------------|
|queue|sqs.Queue|The queue created by the factory.|
|key|kms.IKey|The key used to encrypt the queue, if the queue was configured to use a CMK|
|deadLetterQueue?|sqs.DeadLetterQueue|The dead letter queue associated with the queue created by the factory|
# Default settings
Out of the box implementation of the Construct without any override will set the following defaults:
* An SQS queue
* Encrypted by default with KMS managed key by default, can be KMS CMK if flag is set
* Only queue owner can perform operations by default (your IAM policies can override)
* Enforced encryption for data in transit
* DLQ configured
* An SQS dead letter queue
* Receives messages not processable in maxReceiveCount attempts
* Encrypted with KMS managed key
* Enforced encryption for data in transit
# Architecture
![Architecture Diagram](sqs-architecture.png)
---
© Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Raw data
{
"_id": null,
"home_page": "https://github.com/awslabs/aws-solutions-constructs.git",
"name": "aws-solutions-constructs.aws-constructs-factories",
"maintainer": null,
"docs_url": null,
"requires_python": "~=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Amazon Web Services",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/f4/e9/370168e765e0f92ea2223331c9ae1ce71a51440beca5fc82d8a4c4e198e7/aws_solutions_constructs_aws_constructs_factories-2.74.0.tar.gz",
"platform": null,
"description": "# aws-constructs-factories module\n\n<!--BEGIN STABILITY BANNER-->---\n\n\n![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge)\n\n> All classes are under active development and subject to non-backward compatible changes or removal in any\n> future version. These are not subject to the [Semantic Versioning](https://semver.org/) model.\n> This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.\n\n---\n<!--END STABILITY BANNER-->\n\n| **Reference Documentation**:| <span style=\"font-weight: normal\">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|\n|:-------------|:-------------|\n\n<div style=\"height:8px\"></div>\n\n| **Language** | **Package** |\n|:-------------|-----------------|\n|![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_constructs_factories`|\n|![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-constructs-factories`|\n|![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.constructsfactories`|\n\n## Overview\n\nThis AWS Solutions Construct exposes the same code used to create our underlying resources as factories, so clients can create individual resources that are well-architected.\nThere are factories to create:\n\n[Amazon S3 buckets](https://docs.aws.amazon.com/solutions/latest/constructs/aws-constructs-factories.html#s3-buckets) - Create a well architected S3 bucket (e.g. - includes an access logging bucket)\n[AWS Step Functions state machines](https://docs.aws.amazon.com/solutions/latest/constructs/aws-constructs-factories.html#step-functions-state-machines) - Create a well architected Step Functions state machine and log group (e.g. log group has /aws/vendedlogs/ name prefix to avoid resource policy issues)\n\n## S3 Buckets\n\nCreate fully well-architected S3 buckets with as little as one function call. Here is a minimal deployable pattern definition:\n\nTypescript\n\n```python\nimport { Construct } from 'constructs';\nimport { Stack, StackProps } from 'aws-cdk-lib';\nimport { ConstructsFactories } from '@aws-solutions-constructs/aws-constructs-factories';\n\nconst factories = new ConstructsFactories(this, 'MyFactories');\n\nfactories.s3BucketFactory('GoodBucket', {});\n```\n\nPython\n\n```python\nfrom aws_cdk import (\n Stack,\n)\nfrom constructs import Construct\n\nfrom aws_solutions_constructs import (\n aws_constructs_factories as cf\n)\n\nfactories = cf.ConstructsFactories(self, 'MyFactories')\nfactories.s3_bucket_factory('GoodBucket')\n```\n\nJava\n\n```java\nimport software.constructs.Construct;\nimport software.amazon.awscdk.Stack;\nimport software.amazon.awscdk.StackProps;\n\nimport software.amazon.awsconstructs.services.constructsfactories.ConstructsFactories;\nimport software.amazon.awsconstructs.services.constructsfactories.S3BucketFactoryProps;\n\nfinal ConstructsFactories factories = new ConstructsFactories(this, \"MyFactories\");\nfactories.s3BucketFactory(\"GoodBucket\",\n new S3BucketFactoryProps.Builder().build());\n```\n\n# S3BucketFactory Function Signature\n\n```python\ns3BucketFactory(id: string, props: S3BucketFactoryProps): S3BucketFactoryResponse\n```\n\n# S3BucketFactoryProps\n\n| **Name** | **Type** | **Description** |\n|:-------------|:----------------|-----------------|\n|bucketProps?|[`s3.BucketProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.BucketProps.html)|Optional user provided props to override the default props for the S3 Bucket.|\n|logS3AccessLogs?|`boolean`|Whether to turn on Access Logging for the S3 bucket. Creates an S3 bucket with associated storage costs for the logs. Enabling Access Logging is a best practice. default - true|\n|loggingBucketProps?|[`s3.BucketProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.BucketProps.html)|Optional user provided props to override the default props for the S3 Logging Bucket.|\n\n# S3BucketFactoryResponse\n\n| **Name** | **Type** | **Description** |\n|:-------------|:----------------|-----------------|\n|s3Bucket|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|The s3.Bucket created by the factory. |\n|s3LoggingBucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|The s3.Bucket created by the construct as the logging bucket for the primary bucket. If the logS3AccessLogs property is false, this value will be undefined.|\n\n# Default settings\n\nOut of the box implementation of the Construct without any override will set the following defaults:\n\n* An S3 Content Bucket\n\n * AWS managed Server Side Encryption (AES256)\n * Lifecycle rule to transition objects to Glacier storage class in 90 days\n * Access Logging enabled\n * All Public access blocked\n * Versioning enabled\n * UpdateReplacePolicy is delete\n * Deletion policy is delete\n * Bucket policy requiring SecureTransport\n* An S3 Bucket for Access Logs\n\n * AWS managed Server Side Encryption (AES256)\n * All public access blocked\n * Versioning enabled\n * UpdateReplacePolicy is delete\n * Deletion policy is delete\n * Bucket policy requiring SecureTransport\n * Bucket policy granting PutObject privileges to the S3 logging service, from the content bucket in the content bucket account.\n * cfn_nag suppression of access logging finding (not logging access to the access log bucket)\n\n# Architecture\n\n![Architecture Diagram](architecture.png)\n\n## Step Functions State Machines\n\nCreate fully well-architected Step Functions state machine with log group. The log group name includes the vendedlogs prefix. Here\nbut is unique to the stack, avoiding naming collions between instances. is a minimal deployable pattern definition:\n\nTypescript\n\n```python\nimport { App, Stack } from \"aws-cdk-lib\";\nimport { ConstructsFactories } from \"../../lib\";\nimport { generateIntegStackName, CreateTestStateMachineDefinitionBody } from '@aws-solutions-constructs/core';\nimport { IntegTest } from '@aws-cdk/integ-tests-alpha';\n\nconst placeholderTask = new sftasks.EvaluateExpression(this, 'placeholder', {\n expression: '$.argOne + $.argTwo'\n});\n\nconst factories = new ConstructsFactories(this, 'minimalImplementation');\n\nfactories.stateMachineFactory('testsm', {\n stateMachineProps: {\n definitionBody: sfn.DefinitionBody.fromChainable(placeholderTask)\n }\n});\n```\n\nPython\n\n```python\n\n# Pending\n\n```\n\nJava\n\n```java\n\n// Pending\n\n```\n\n# stateMachineFactory Function Signature\n\n```python\nstateMachineFactory(id: string, props: StateMachineFactoryProps): StateMachineFactoryResponse\n```\n\n# StateMachineFactoryProps\n\n| **Name** | **Type** | **Description** |\n|:-------------|:----------------|-----------------|\n|stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)|The CDK properties that define the state machine. This property is required and must include a definitionBody or definition (definition is deprecated)|\n|logGroup?|[]`logs.LogGroup`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroup.html)|An existing LogGroup to which the new state machine will write log entries. Default: none, the construct will create a new log group.|\n|createCloudWatchAlarms?|boolean|Whether to create recommended CloudWatch alarms for the State Machine. Default: the alarms are created|\n|cloudWatchAlarmsPrefix?|string|Creating multiple State Machines with one Factories construct will result in name collisions as the cloudwatch alarms originally had fixed resource ids. This value was added to avoid collisions while not making changes that would be destructive for existing stacks. Unless you are creating multiple State Machines using factories you can ignore it|\n\n# StateMachineFactoryResponse\n\n| **Name** | **Type** | **Description** |\n|:-------------|:----------------|-----------------|\n|stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)||\n|logGroup|[]`logs.LogGroupProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroupProps.html)||\n|cloudwatchAlarms?|[`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html)|The alarms created by the factory (ExecutionFailed, ExecutionThrottled, ExecutionAborted)|\n\n# Default settings\n\nOut of the box implementation of the Construct without any override will set the following defaults:\n\n* An AWS Step Functions State Machine\n\n * Configured to log to the new log group at LogLevel.ERROR\n* Amazon CloudWatch Logs Log Group\n\n * Log name is prefaced with /aws/vendedlogs/ to avoid resource policy [issues](https://docs.aws.amazon.com/step-functions/latest/dg/cw-logs.html#cloudwatch-iam-policy). The Log Group name is still created to be unique to the stack to avoid name collisions.\n* CloudWatch alarms for:\n\n * 1 or more failed executions\n * 1 or more executions being throttled\n * 1 or more executions being aborted\n\n# Architecture\n\n![Architecture Diagram](sf-architecture.png)\n\n## SQS Queues\n\nCreate SQS queues complete with DLQs and KMS CMKs with one function call. Here is a minimal deployable pattern definition:\n\nTypescript\n\n```python\nimport { Construct } from 'constructs';\nimport { Stack, StackProps } from 'aws-cdk-lib';\nimport { ConstructsFactories } from '@aws-solutions-constructs/aws-constructs-factories';\n\nconst factories = new ConstructsFactories(this, 'MyFactories');\n\nfactories.sqsQueueFacgory('GoodQueue', {});\n```\n\nPython\n\n```python\nPending\n```\n\nJava\n\n```java\nPendiong\n```\n\n# SqsQueueFactory Function Signature\n\n```python\nSqsQueueFactory(id: string, props: SqsQueueFactoryProps): SqsQueueFactoryResponse\n```\n\n# SqsQueueFactoryProps\n\n| **Name** | **Type** | **Description** |\n|:-------------|:----------------|-----------------|\n|queueProps?|sqs.QueueProps|Optional user provided props to override the default props for the primary queue.|\n|enableEncryptionWithCustomerManagedKey?|boolean|If no key is provided, this flag determines whether the queue is encrypted with a new CMK or an AWS managed key. This flag is ignored if any of the following are defined: queueProps.encryptionMasterKey, encryptionKey or encryptionKeyProps. default - False if queueProps.encryptionMasterKey, encryptionKey, and encryptionKeyProps are all undefined.|\n|encryptionKey?|kms.Key|An optional, imported encryption key to encrypt the SQS Queue with. Default - none|\n|encryptionKeyProps?|kms.KeyProps|Optional user provided properties to override the default properties for the KMS encryption key used to encrypt the SQS Queue with. @default - None|\n|deployDeadLetterQueue?|boolean|Whether to deploy a secondary queue to be used as a dead letter queue.|\n|deadLetterQueueProps?|sqs.QueueProps|Optional user provided properties for the dead letter queue|\n|maxReceiveCount?|number|The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. default - [code](https://github.com/awslabs/aws-solutions-constructs/blob/8b30791902e09db2f7c49410a03d5d95ccc2ef51/source/patterns/%40aws-solutions-constructs/core/lib/sqs-defaults.ts#L32)|\n\n# SqsQueueFactoryResponse\n\n| **Name** | **Type** | **Description** |\n|:-------------|:----------------|-----------------|\n|queue|sqs.Queue|The queue created by the factory.|\n|key|kms.IKey|The key used to encrypt the queue, if the queue was configured to use a CMK|\n|deadLetterQueue?|sqs.DeadLetterQueue|The dead letter queue associated with the queue created by the factory|\n\n# Default settings\n\nOut of the box implementation of the Construct without any override will set the following defaults:\n\n* An SQS queue\n\n * Encrypted by default with KMS managed key by default, can be KMS CMK if flag is set\n * Only queue owner can perform operations by default (your IAM policies can override)\n * Enforced encryption for data in transit\n * DLQ configured\n* An SQS dead letter queue\n\n * Receives messages not processable in maxReceiveCount attempts\n * Encrypted with KMS managed key\n * Enforced encryption for data in transit\n\n# Architecture\n\n![Architecture Diagram](sqs-architecture.png)\n\n---\n\n\n\u00a9 Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Factories to allow creation of individual resources",
"version": "2.74.0",
"project_urls": {
"Homepage": "https://github.com/awslabs/aws-solutions-constructs.git",
"Source": "https://github.com/awslabs/aws-solutions-constructs.git"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "fa7b5fa8d6067e20092d74dcecd60b0fa30761b5a392764b9aa4d89464c7fa9f",
"md5": "c274f499d8f81492fcc5f3b7d9527942",
"sha256": "4834ee2129303f7bf59006840cd1240d269c7e84ab0aac1b194d840bdab3b137"
},
"downloads": -1,
"filename": "aws_solutions_constructs.aws_constructs_factories-2.74.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c274f499d8f81492fcc5f3b7d9527942",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "~=3.8",
"size": 156959,
"upload_time": "2024-10-22T18:07:27",
"upload_time_iso_8601": "2024-10-22T18:07:27.445297Z",
"url": "https://files.pythonhosted.org/packages/fa/7b/5fa8d6067e20092d74dcecd60b0fa30761b5a392764b9aa4d89464c7fa9f/aws_solutions_constructs.aws_constructs_factories-2.74.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f4e9370168e765e0f92ea2223331c9ae1ce71a51440beca5fc82d8a4c4e198e7",
"md5": "80aeb8810ff869f5175e6e3c7c7cddef",
"sha256": "a1e238c82b3f5ad88b3b6ef03f7155de90032713eab8ad1cfa9c58cca9e834ce"
},
"downloads": -1,
"filename": "aws_solutions_constructs_aws_constructs_factories-2.74.0.tar.gz",
"has_sig": false,
"md5_digest": "80aeb8810ff869f5175e6e3c7c7cddef",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "~=3.8",
"size": 158703,
"upload_time": "2024-10-22T18:09:15",
"upload_time_iso_8601": "2024-10-22T18:09:15.451983Z",
"url": "https://files.pythonhosted.org/packages/f4/e9/370168e765e0f92ea2223331c9ae1ce71a51440beca5fc82d8a4c4e198e7/aws_solutions_constructs_aws_constructs_factories-2.74.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-22 18:09:15",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "awslabs",
"github_project": "aws-solutions-constructs",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "aws-solutions-constructs.aws-constructs-factories"
}