aws-solutions-constructs.aws-s3-stepfunctions 2.85.2__py3-none-any.whl → 2.85.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,162 +1,5 @@
1
1
  r'''
2
- # aws-s3-stepfunctions module
3
-
4
- <!--BEGIN STABILITY BANNER-->---
5
-
6
-
7
- ![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge)
8
-
9
- > All classes are under active development and subject to non-backward compatible changes or removal in any
10
- > future version. These are not subject to the [Semantic Versioning](https://semver.org/) model.
11
- > 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.
12
-
13
- ---
14
- <!--END STABILITY BANNER-->
15
-
16
- | **Reference Documentation**:| <span style="font-weight: normal">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|
17
- |:-------------|:-------------|
18
-
19
- <div style="height:8px"></div>
20
-
21
- | **Language** | **Package** |
22
- |:-------------|-----------------|
23
- |![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_s3_stepfunctions`|
24
- |![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-s3-stepfunctions`|
25
- |![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.s3stepfunctions`|
26
-
27
- ## Overview
28
-
29
- This AWS Solutions Construct implements an Amazon S3 bucket connected to an AWS Step Functions.
30
-
31
- *Note - This constructs sends S3 Event Notification to EventBridge, then triggers AWS Step Functions State Machine executions from EventBridge.*
32
-
33
- *An alternative architecture can be built that triggers a Lambda function from S3 Event notifications using aws-s3-lambda and aws-lambda-stepfunctions. Channelling the S3 events through Lambda is less flexible than EventBridge, but is more cost effective and has lower latency.*
34
-
35
- Here is a minimal deployable pattern definition:
36
-
37
- Typescript
38
-
39
- ```python
40
- import { Construct } from 'constructs';
41
- import { Stack, StackProps } from 'aws-cdk-lib';
42
- import { S3ToStepfunctions, S3ToStepfunctionsProps } from '@aws-solutions-constructs/aws-s3-stepfunctions';
43
- import * as stepfunctions from 'aws-cdk-lib/aws-stepfunctions';
44
-
45
- const startState = new stepfunctions.Pass(this, 'StartState');
46
-
47
- new S3ToStepfunctions(this, 'test-s3-stepfunctions-stack', {
48
- stateMachineProps: {
49
- definition: startState
50
- }
51
- });
52
- ```
53
-
54
- Python
55
-
56
- ```python
57
- from aws_solutions_constructs.aws_s3_stepfunctions import S3ToStepfunctions
58
- from aws_cdk import (
59
- aws_stepfunctions as stepfunctions,
60
- Stack
61
- )
62
- from constructs import Construct
63
-
64
- start_state = stepfunctions.Pass(self, 'start_state')
65
-
66
- S3ToStepfunctions(
67
- self, 'test_s3_stepfunctions_stack',
68
- state_machine_props=stepfunctions.StateMachineProps(
69
- definition=start_state)
70
- )
71
- ```
72
-
73
- Java
74
-
75
- ```java
76
- import software.constructs.Construct;
77
-
78
- import software.amazon.awscdk.Stack;
79
- import software.amazon.awscdk.StackProps;
80
- import software.amazon.awscdk.services.stepfunctions.*;
81
- import software.amazon.awsconstructs.services.s3stepfunctions.*;
82
-
83
- final Pass startState = new Pass(this, "StartState");
84
-
85
- new S3ToStepfunctions(this, "test_s3_stepfunctions_stack",
86
- new S3ToStepfunctionsProps.Builder()
87
- .stateMachineProps(new StateMachineProps.Builder()
88
- .definition(startState)
89
- .build())
90
- .build());
91
- ```
92
-
93
- ## Pattern Construct Props
94
-
95
- | **Name** | **Type** | **Description** |
96
- |:-------------|:----------------|-----------------|
97
- |existingBucketObj?|[`s3.IBucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.IBucket.html)|Existing instance of S3 Bucket object. If this is provided, then also providing bucketProps is an error. **The existing bucket must have [EventBridge enabled](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-event-notifications-eventbridge.html) for this to work.**|
98
- |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.|
99
- |stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)|User provided props to override the default props for sfn.StateMachine.|
100
- |eventRuleProps?|[`events.RuleProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_events.RuleProps.html)|Optional user provided eventRuleProps to override the defaults.|
101
- |deployCloudTrail?|`boolean`|Whether to deploy a Trail in AWS CloudTrail to log API events in Amazon S3. Defaults to `true`. <span style="color:red">**This is now deprecated and ignored because the construct no longer needs CloudTrail since it uses S3 Event Notifications**</span>.|
102
- |createCloudWatchAlarms|`boolean`|Whether to create recommended CloudWatch alarms.|
103
- |logGroupProps?|[`logs.LogGroupProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroupProps.html)|Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.|
104
- |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.|
105
- |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|
106
-
107
- ## Pattern Properties
108
-
109
- | **Name** | **Type** | **Description** |
110
- |:-------------|:----------------|-----------------|
111
- |stateMachine|[`sfn.StateMachine`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachine.html)|Returns an instance of sfn.StateMachine created by the construct.|
112
- |stateMachineLogGroup|[`logs.ILogGroup`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.ILogGroup.html)|Returns an instance of the ILogGroup created by the construct for StateMachine.|
113
- |cloudwatchAlarms?|[`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html)|Returns a list of cloudwatch.Alarm created by the construct.|
114
- |s3Bucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|Returns an instance of the s3.Bucket created by the construct.|
115
- |s3LoggingBucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|Returns an instance of s3.Bucket created by the construct as the logging bucket for the primary bucket.|
116
- |s3BucketInterface|[`s3.IBucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.IBucket.html)|Returns an instance of s3.IBucket created by the construct.|
117
-
118
- *Note - with the release of Enable EventBridge for Amazon S3, AWS CloudTrail is no longer required to implement this construct. Because of this, the following properties have been removed:*
119
-
120
- * cloudtrail
121
- * cloudtrailBucket
122
- * cloudtrailLoggingBucket
123
-
124
- ## Default settings
125
-
126
- Out of the box implementation of the Construct without any override will set the following defaults:
127
-
128
- ### Amazon S3 Bucket
129
-
130
- * Enable EventBridge to send events from the S3 Bucket
131
- * Configure Access logging for S3 Bucket
132
- * Enable server-side encryption for S3 Bucket using AWS managed KMS Key
133
- * Enforce encryption of data in transit
134
- * Turn on the versioning for S3 Bucket
135
- * Don't allow public access for S3 Bucket
136
- * Retain the S3 Bucket when deleting the CloudFormation stack
137
- * Applies Lifecycle Rule to move noncurrent object versions to Glacier storage after 90 days
138
-
139
- ### AWS S3 Event Notification
140
-
141
- * Enable S3 to send events to EventBridge when an object is created.
142
-
143
- ### Amazon CloudWatch Events Rule
144
-
145
- * Grant least privilege permissions to CloudWatch Events to trigger the Lambda Function
146
-
147
- ### AWS Step Functions
148
-
149
- * Enable CloudWatch logging for API Gateway
150
- * Deploy best practices CloudWatch Alarms for the Step Functions
151
-
152
- ## Architecture
153
-
154
- ![Architecture Diagram](architecture.png)
155
-
156
- ---
157
-
158
-
159
- © Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
+ Documentation for this pattern can be found [here](https://github.com/awslabs/aws-solutions-constructs/blob/main/source/patterns/%40aws-solutions-constructs/aws-s3-stepfunctions/README.adoc)
160
3
  '''
161
4
  from pkgutil import extend_path
162
5
  __path__ = extend_path(__path__, __name__)
@@ -35,9 +35,9 @@ import constructs._jsii
35
35
 
36
36
  __jsii_assembly__ = jsii.JSIIAssembly.load(
37
37
  "@aws-solutions-constructs/aws-s3-stepfunctions",
38
- "2.85.2",
38
+ "2.85.4",
39
39
  __name__[0:-6],
40
- "aws-s3-stepfunctions@2.85.2.jsii.tgz",
40
+ "aws-s3-stepfunctions@2.85.4.jsii.tgz",
41
41
  )
42
42
 
43
43
  __all__ = [
@@ -0,0 +1,29 @@
1
+ Metadata-Version: 2.1
2
+ Name: aws-solutions-constructs.aws-s3-stepfunctions
3
+ Version: 2.85.4
4
+ Summary: CDK Constructs for AWS S3 to AWS Step Functions integration
5
+ Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
+ Author: Amazon Web Services
7
+ License: Apache-2.0
8
+ Project-URL: Source, https://github.com/awslabs/aws-solutions-constructs.git
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.9
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Typing :: Typed
17
+ Classifier: License :: OSI Approved
18
+ Requires-Python: ~=3.9
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.193.0
22
+ Requires-Dist: aws-solutions-constructs.aws-eventbridge-stepfunctions==2.85.4
23
+ Requires-Dist: aws-solutions-constructs.core==2.85.4
24
+ Requires-Dist: constructs<11.0.0,>=10.0.0
25
+ Requires-Dist: jsii<2.0.0,>=1.111.0
26
+ Requires-Dist: publication>=0.0.3
27
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
28
+
29
+ Documentation for this pattern can be found [here](https://github.com/awslabs/aws-solutions-constructs/blob/main/source/patterns/%40aws-solutions-constructs/aws-s3-stepfunctions/README.adoc)
@@ -0,0 +1,9 @@
1
+ aws_solutions_constructs/aws_s3_stepfunctions/__init__.py,sha256=6_KfKOUZU7NRLcxv8PzFKkCqIMsdX9Wm3SB0HFgef9s,19916
2
+ aws_solutions_constructs/aws_s3_stepfunctions/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_solutions_constructs/aws_s3_stepfunctions/_jsii/__init__.py,sha256=389SxhLggRKjSnTV6HfRyO5Ap4tpD7TxDXNmIYm7deM,1603
4
+ aws_solutions_constructs/aws_s3_stepfunctions/_jsii/aws-s3-stepfunctions@2.85.4.jsii.tgz,sha256=64Ni4IbG_mMc_PDHo1njmk5sL3QqBjZCGy2X12jjGd0,220652
5
+ aws_solutions_constructs_aws_s3_stepfunctions-2.85.4.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
+ aws_solutions_constructs_aws_s3_stepfunctions-2.85.4.dist-info/METADATA,sha256=d2F0hBA8qmbKtvvn7Llwimob3KUbxp5dalxczfYoJag,1364
7
+ aws_solutions_constructs_aws_s3_stepfunctions-2.85.4.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
8
+ aws_solutions_constructs_aws_s3_stepfunctions-2.85.4.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
+ aws_solutions_constructs_aws_s3_stepfunctions-2.85.4.dist-info/RECORD,,
@@ -1,186 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: aws-solutions-constructs.aws-s3-stepfunctions
3
- Version: 2.85.2
4
- Summary: CDK Constructs for AWS S3 to AWS Step Functions integration
5
- Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
- Author: Amazon Web Services
7
- License: Apache-2.0
8
- Project-URL: Source, https://github.com/awslabs/aws-solutions-constructs.git
9
- Classifier: Intended Audience :: Developers
10
- Classifier: Operating System :: OS Independent
11
- Classifier: Programming Language :: JavaScript
12
- Classifier: Programming Language :: Python :: 3 :: Only
13
- Classifier: Programming Language :: Python :: 3.9
14
- Classifier: Programming Language :: Python :: 3.10
15
- Classifier: Programming Language :: Python :: 3.11
16
- Classifier: Typing :: Typed
17
- Classifier: License :: OSI Approved
18
- Requires-Python: ~=3.9
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
- Requires-Dist: aws-cdk-lib<3.0.0,>=2.193.0
22
- Requires-Dist: aws-solutions-constructs.aws-eventbridge-stepfunctions==2.85.2
23
- Requires-Dist: aws-solutions-constructs.core==2.85.2
24
- Requires-Dist: constructs<11.0.0,>=10.0.0
25
- Requires-Dist: jsii<2.0.0,>=1.111.0
26
- Requires-Dist: publication>=0.0.3
27
- Requires-Dist: typeguard<4.3.0,>=2.13.3
28
-
29
- # aws-s3-stepfunctions module
30
-
31
- <!--BEGIN STABILITY BANNER-->---
32
-
33
-
34
- ![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge)
35
-
36
- > All classes are under active development and subject to non-backward compatible changes or removal in any
37
- > future version. These are not subject to the [Semantic Versioning](https://semver.org/) model.
38
- > 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.
39
-
40
- ---
41
- <!--END STABILITY BANNER-->
42
-
43
- | **Reference Documentation**:| <span style="font-weight: normal">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|
44
- |:-------------|:-------------|
45
-
46
- <div style="height:8px"></div>
47
-
48
- | **Language** | **Package** |
49
- |:-------------|-----------------|
50
- |![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_s3_stepfunctions`|
51
- |![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-s3-stepfunctions`|
52
- |![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.s3stepfunctions`|
53
-
54
- ## Overview
55
-
56
- This AWS Solutions Construct implements an Amazon S3 bucket connected to an AWS Step Functions.
57
-
58
- *Note - This constructs sends S3 Event Notification to EventBridge, then triggers AWS Step Functions State Machine executions from EventBridge.*
59
-
60
- *An alternative architecture can be built that triggers a Lambda function from S3 Event notifications using aws-s3-lambda and aws-lambda-stepfunctions. Channelling the S3 events through Lambda is less flexible than EventBridge, but is more cost effective and has lower latency.*
61
-
62
- Here is a minimal deployable pattern definition:
63
-
64
- Typescript
65
-
66
- ```python
67
- import { Construct } from 'constructs';
68
- import { Stack, StackProps } from 'aws-cdk-lib';
69
- import { S3ToStepfunctions, S3ToStepfunctionsProps } from '@aws-solutions-constructs/aws-s3-stepfunctions';
70
- import * as stepfunctions from 'aws-cdk-lib/aws-stepfunctions';
71
-
72
- const startState = new stepfunctions.Pass(this, 'StartState');
73
-
74
- new S3ToStepfunctions(this, 'test-s3-stepfunctions-stack', {
75
- stateMachineProps: {
76
- definition: startState
77
- }
78
- });
79
- ```
80
-
81
- Python
82
-
83
- ```python
84
- from aws_solutions_constructs.aws_s3_stepfunctions import S3ToStepfunctions
85
- from aws_cdk import (
86
- aws_stepfunctions as stepfunctions,
87
- Stack
88
- )
89
- from constructs import Construct
90
-
91
- start_state = stepfunctions.Pass(self, 'start_state')
92
-
93
- S3ToStepfunctions(
94
- self, 'test_s3_stepfunctions_stack',
95
- state_machine_props=stepfunctions.StateMachineProps(
96
- definition=start_state)
97
- )
98
- ```
99
-
100
- Java
101
-
102
- ```java
103
- import software.constructs.Construct;
104
-
105
- import software.amazon.awscdk.Stack;
106
- import software.amazon.awscdk.StackProps;
107
- import software.amazon.awscdk.services.stepfunctions.*;
108
- import software.amazon.awsconstructs.services.s3stepfunctions.*;
109
-
110
- final Pass startState = new Pass(this, "StartState");
111
-
112
- new S3ToStepfunctions(this, "test_s3_stepfunctions_stack",
113
- new S3ToStepfunctionsProps.Builder()
114
- .stateMachineProps(new StateMachineProps.Builder()
115
- .definition(startState)
116
- .build())
117
- .build());
118
- ```
119
-
120
- ## Pattern Construct Props
121
-
122
- | **Name** | **Type** | **Description** |
123
- |:-------------|:----------------|-----------------|
124
- |existingBucketObj?|[`s3.IBucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.IBucket.html)|Existing instance of S3 Bucket object. If this is provided, then also providing bucketProps is an error. **The existing bucket must have [EventBridge enabled](https://docs.aws.amazon.com/AmazonS3/latest/userguide/enable-event-notifications-eventbridge.html) for this to work.**|
125
- |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.|
126
- |stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)|User provided props to override the default props for sfn.StateMachine.|
127
- |eventRuleProps?|[`events.RuleProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_events.RuleProps.html)|Optional user provided eventRuleProps to override the defaults.|
128
- |deployCloudTrail?|`boolean`|Whether to deploy a Trail in AWS CloudTrail to log API events in Amazon S3. Defaults to `true`. <span style="color:red">**This is now deprecated and ignored because the construct no longer needs CloudTrail since it uses S3 Event Notifications**</span>.|
129
- |createCloudWatchAlarms|`boolean`|Whether to create recommended CloudWatch alarms.|
130
- |logGroupProps?|[`logs.LogGroupProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroupProps.html)|Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.|
131
- |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.|
132
- |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|
133
-
134
- ## Pattern Properties
135
-
136
- | **Name** | **Type** | **Description** |
137
- |:-------------|:----------------|-----------------|
138
- |stateMachine|[`sfn.StateMachine`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachine.html)|Returns an instance of sfn.StateMachine created by the construct.|
139
- |stateMachineLogGroup|[`logs.ILogGroup`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.ILogGroup.html)|Returns an instance of the ILogGroup created by the construct for StateMachine.|
140
- |cloudwatchAlarms?|[`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html)|Returns a list of cloudwatch.Alarm created by the construct.|
141
- |s3Bucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|Returns an instance of the s3.Bucket created by the construct.|
142
- |s3LoggingBucket?|[`s3.Bucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.Bucket.html)|Returns an instance of s3.Bucket created by the construct as the logging bucket for the primary bucket.|
143
- |s3BucketInterface|[`s3.IBucket`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3.IBucket.html)|Returns an instance of s3.IBucket created by the construct.|
144
-
145
- *Note - with the release of Enable EventBridge for Amazon S3, AWS CloudTrail is no longer required to implement this construct. Because of this, the following properties have been removed:*
146
-
147
- * cloudtrail
148
- * cloudtrailBucket
149
- * cloudtrailLoggingBucket
150
-
151
- ## Default settings
152
-
153
- Out of the box implementation of the Construct without any override will set the following defaults:
154
-
155
- ### Amazon S3 Bucket
156
-
157
- * Enable EventBridge to send events from the S3 Bucket
158
- * Configure Access logging for S3 Bucket
159
- * Enable server-side encryption for S3 Bucket using AWS managed KMS Key
160
- * Enforce encryption of data in transit
161
- * Turn on the versioning for S3 Bucket
162
- * Don't allow public access for S3 Bucket
163
- * Retain the S3 Bucket when deleting the CloudFormation stack
164
- * Applies Lifecycle Rule to move noncurrent object versions to Glacier storage after 90 days
165
-
166
- ### AWS S3 Event Notification
167
-
168
- * Enable S3 to send events to EventBridge when an object is created.
169
-
170
- ### Amazon CloudWatch Events Rule
171
-
172
- * Grant least privilege permissions to CloudWatch Events to trigger the Lambda Function
173
-
174
- ### AWS Step Functions
175
-
176
- * Enable CloudWatch logging for API Gateway
177
- * Deploy best practices CloudWatch Alarms for the Step Functions
178
-
179
- ## Architecture
180
-
181
- ![Architecture Diagram](architecture.png)
182
-
183
- ---
184
-
185
-
186
- © Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
@@ -1,9 +0,0 @@
1
- aws_solutions_constructs/aws_s3_stepfunctions/__init__.py,sha256=880B2owHmsMPvg8-_3jFevq1sq3eofV8STzn32zcflA,27760
2
- aws_solutions_constructs/aws_s3_stepfunctions/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- aws_solutions_constructs/aws_s3_stepfunctions/_jsii/__init__.py,sha256=HdSCdsb7a4xyBuwFrHuO_tl_o32y4ObFmAwTOBAMPvU,1603
4
- aws_solutions_constructs/aws_s3_stepfunctions/_jsii/aws-s3-stepfunctions@2.85.2.jsii.tgz,sha256=F-Q15dh2qKHULU9waskATp7CHM1X8q_uvorjhBYIOC8,222968
5
- aws_solutions_constructs_aws_s3_stepfunctions-2.85.2.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
- aws_solutions_constructs_aws_s3_stepfunctions-2.85.2.dist-info/METADATA,sha256=w2arXUL0k8N7ajzMmg31rlARPmHEPQq3LaKcsPuTaJE,9208
7
- aws_solutions_constructs_aws_s3_stepfunctions-2.85.2.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
8
- aws_solutions_constructs_aws_s3_stepfunctions-2.85.2.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
- aws_solutions_constructs_aws_s3_stepfunctions-2.85.2.dist-info/RECORD,,