Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gammarers/aws-secure-log-bucket
secure multiple transition phases in a single lifecycle policy bucket.
https://github.com/gammarers/aws-secure-log-bucket
Last synced: about 2 months ago
JSON representation
secure multiple transition phases in a single lifecycle policy bucket.
- Host: GitHub
- URL: https://github.com/gammarers/aws-secure-log-bucket
- Owner: gammarers
- License: apache-2.0
- Created: 2023-03-06T06:02:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-23T04:34:20.000Z (9 months ago)
- Last Synced: 2024-04-23T05:41:57.697Z (9 months ago)
- Language: TypeScript
- Size: 1.32 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Secure Log Bucket
[![GitHub](https://img.shields.io/github/license/yicr/aws-secure-log-bucket?style=flat-square)](https://github.com/yicr/aws-secure-log-bucket/blob/main/LICENSE)
[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-secure-log-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-secure-log-bucket)
[![PyPI](https://img.shields.io/pypi/v/gammarers.aws-secure-log-bucket?style=flat-square)](https://pypi.org/project/gammarers.aws-secure-log-bucket/)
[![Nuget](https://img.shields.io/nuget/v/Gammarers.CDK.AWS.SecureLogBucket?style=flat-square)](https://www.nuget.org/packages/Gammarers.CDK.AWS.SecureLogBucket/)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/yicr/aws-secure-log-bucket/release.yml?branch=main&label=release&style=flat-square)](https://github.com/yicr/aws-secure-log-bucket/actions/workflows/release.yml)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/yicr/aws-secure-log-bucket?sort=semver&style=flat-square)](https://github.com/yicr/aws-secure-log-bucket/releases)[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-secure-log-bucket)](https://constructs.dev/packages/@gammarers/aws-secure-log-bucket)
secure multiple transition phases in a single lifecycle policy bucket.
## Lifecycle rule
The storage class will be changed with the following lifecycle configuration.
| Storage Class | Defaul transition after days |
| ------------------- |------------------------------|
| INFREQUENT_ACCESS | 400 days |
| GLACIER | 720 days |
| DEEP_ARCHIVE | 980 days |## Install
### TypeScript
#### install by npm
```shell
npm install @gammarers/aws-secure-log-bucket
```
#### install by yarn```shell
yarn add @gammarers/aws-secure-log-bucket
```
#### install by pnpm```shell
pnpm add @gammarers/aws-secure-log-bucket
```
#### install by bun```shell
bun add @gammarers/aws-secure-log-bucket
```### Python
```shell
pip install gammarers.aws-secure-log-bucket
```### C# / .NET
```shell
dotnet add package Gammarers.CDK.AWS.SecureLogBucket
```## Example
```typescript
import { SecureLogBucket } from '@gammarers/aws-secure-log-bucket';new SecureLogBucket(stack, 'SecureLogBucket');
```## License
This project is licensed under the Apache-2.0 License.