Metadata-Version: 2.1
Name: compliantdynamodb
Version: 0.0.20
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

```
this.backupVault = new backup.BackupVault(this, 'BackupVault', {
      backupVaultName: `${props.tableName}-backup-vault`,
      accessPolicy: new iam.PolicyDocument({
        statements: [
          new iam.PolicyStatement({
            sid: 'backup-recovery-point-manual-deletion-disabled',
            effect: iam.Effect.DENY,
            principals: [new iam.AnyPrincipal()],
            actions: [
              'backup:DeleteRecoveryPoint',
              'backup:PutBackupVaultAccessPolicy',
              'backup:UpdateRecoveryPointLifecycle',
            ],
            resources: ['*'],
          }),
        ],
      }),
    });
```


