Metadata-Version: 2.1
Name: compliantdynamodb
Version: 0.0.23
Summary: compliantdynamodb
Home-page: https://github.com/jhornung/compliantDynamodb.git
Author: Janek<jhornung@oev.de>
License: Apache-2.0
Project-URL: Source, https://github.com/jhornung/compliantDynamodb.git
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Typing :: Typed
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# this is where we place the documentation

```python
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
self.backup_vault = backup.BackupVault(self, "BackupVault",
    backup_vault_name=f"{props.tableName}-backup-vault",
    access_policy=iam.PolicyDocument(
        statements=[
            iam.PolicyStatement(
                sid="backup-recovery-point-manual-deletion-disabled",
                effect=iam.Effect.DENY,
                principals=[iam.AnyPrincipal()],
                actions=["backup:DeleteRecoveryPoint", "backup:PutBackupVaultAccessPolicy", "backup:UpdateRecoveryPointLifecycle"
                ],
                resources=["*"]
            )
        ]
    )
)
```


