gammarer.aws-secure-log-bucket


Namegammarer.aws-secure-log-bucket JSON
Version 1.5.6 PyPI version JSON
download
home_pagehttps://github.com/gammarer/aws-secure-log-bucket.git
Summarysecure multiple transition phases in a single lifecycle policy bucket.
upload_time2024-04-21 18:24:07
maintainerNone
docs_urlNone
authoryicr<yicr@users.noreply.github.com>
requires_python~=3.8
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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/@gammarer/aws-secure-log-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarer/aws-secure-log-bucket)
[![PyPI](https://img.shields.io/pypi/v/gammarer.aws-secure-log-bucket?style=flat-square)](https://pypi.org/project/gammarer.aws-secure-log-bucket/)
[![Nuget](https://img.shields.io/nuget/v/Gammarer.CDK.AWS.SecureLogBucket?style=flat-square)](https://www.nuget.org/packages/Gammarer.CDK.AWS.SecureLogBucket/)
[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.gammarer/aws-secure-log-bucket?server=https%3A%2F%2Fs01.oss.sonatype.org%2F&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/releases/com/gammarer/aws-secure-log-bucket/)
[![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=@gammarer/aws-secure-log-bucket)](https://constructs.dev/packages/@gammarer/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   | 60 days                      |
| INTELLIGENT_TIERING | 120 days                     |
| GLACIER             | 180 days                     |
| DEEP_ARCHIVE        | 360 days                     |

## Install

### TypeScript

```shell
npm install @gammarer/aws-secure-log-bucket
# or
yarn add @gammarer/aws-secure-log-bucket
```

### Python

```shell
pip install gammarer.aws-secure-log-bucket
```

### C# / .NET

```shell
dotnet add package Gammarer.CDK.AWS.SecureLogBucket
```

### Java

Add the following to pom.xml:

```xml
<dependency>
  <groupId>com.gammarer</groupId>
  <artifactId>aws-secure-log-bucket</artifactId>
</dependency>
```

## Example

```python
import { SecureLogBucket } from '@gammarer/aws-secure-log-bucket';

new SecureLogBucket(stack, 'SecureLogBucket');
```

## License

This project is licensed under the Apache-2.0 License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gammarer/aws-secure-log-bucket.git",
    "name": "gammarer.aws-secure-log-bucket",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.8",
    "maintainer_email": null,
    "keywords": null,
    "author": "yicr<yicr@users.noreply.github.com>",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/7c/af/c2462ef7236f59412f1501f18c73bf9251061c5ab28d011b568911fa836c/gammarer.aws-secure-log-bucket-1.5.6.tar.gz",
    "platform": null,
    "description": "# AWS Secure Log Bucket\n\n[![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)\n[![npm (scoped)](https://img.shields.io/npm/v/@gammarer/aws-secure-log-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarer/aws-secure-log-bucket)\n[![PyPI](https://img.shields.io/pypi/v/gammarer.aws-secure-log-bucket?style=flat-square)](https://pypi.org/project/gammarer.aws-secure-log-bucket/)\n[![Nuget](https://img.shields.io/nuget/v/Gammarer.CDK.AWS.SecureLogBucket?style=flat-square)](https://www.nuget.org/packages/Gammarer.CDK.AWS.SecureLogBucket/)\n[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.gammarer/aws-secure-log-bucket?server=https%3A%2F%2Fs01.oss.sonatype.org%2F&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/releases/com/gammarer/aws-secure-log-bucket/)\n[![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)\n[![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)\n\n[![View on Construct Hub](https://constructs.dev/badge?package=@gammarer/aws-secure-log-bucket)](https://constructs.dev/packages/@gammarer/aws-secure-log-bucket)\n\nsecure multiple transition phases in a single lifecycle policy bucket.\n\n## Lifecycle rule\n\nThe storage class will be changed with the following lifecycle configuration.\n\n| Storage Class       | Defaul transition after days |\n| ------------------- |------------------------------|\n| INFREQUENT_ACCESS   | 60 days                      |\n| INTELLIGENT_TIERING | 120 days                     |\n| GLACIER             | 180 days                     |\n| DEEP_ARCHIVE        | 360 days                     |\n\n## Install\n\n### TypeScript\n\n```shell\nnpm install @gammarer/aws-secure-log-bucket\n# or\nyarn add @gammarer/aws-secure-log-bucket\n```\n\n### Python\n\n```shell\npip install gammarer.aws-secure-log-bucket\n```\n\n### C# / .NET\n\n```shell\ndotnet add package Gammarer.CDK.AWS.SecureLogBucket\n```\n\n### Java\n\nAdd the following to pom.xml:\n\n```xml\n<dependency>\n  <groupId>com.gammarer</groupId>\n  <artifactId>aws-secure-log-bucket</artifactId>\n</dependency>\n```\n\n## Example\n\n```python\nimport { SecureLogBucket } from '@gammarer/aws-secure-log-bucket';\n\nnew SecureLogBucket(stack, 'SecureLogBucket');\n```\n\n## License\n\nThis project is licensed under the Apache-2.0 License.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "secure multiple transition phases in a single lifecycle policy bucket.",
    "version": "1.5.6",
    "project_urls": {
        "Homepage": "https://github.com/gammarer/aws-secure-log-bucket.git",
        "Source": "https://github.com/gammarer/aws-secure-log-bucket.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dc4b025113c1c47a589ee4d254b7d0c5898e49d0424311f99270383e9f0c917",
                "md5": "013aec965d85ef4c94f6af94a490a971",
                "sha256": "e1492b6af2e5d5dbd903e6c11b5afca3b8c931d602af99ee554bfb0e1a617f1b"
            },
            "downloads": -1,
            "filename": "gammarer.aws_secure_log_bucket-1.5.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "013aec965d85ef4c94f6af94a490a971",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 34949,
            "upload_time": "2024-04-21T18:24:05",
            "upload_time_iso_8601": "2024-04-21T18:24:05.562878Z",
            "url": "https://files.pythonhosted.org/packages/7d/c4/b025113c1c47a589ee4d254b7d0c5898e49d0424311f99270383e9f0c917/gammarer.aws_secure_log_bucket-1.5.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cafc2462ef7236f59412f1501f18c73bf9251061c5ab28d011b568911fa836c",
                "md5": "b2d2b1e041a379bfcf9fff94063b1563",
                "sha256": "d3453f8de7363bf1a1e39dcf45bd1cb99f51b237920a0faa460fd9301e7a276b"
            },
            "downloads": -1,
            "filename": "gammarer.aws-secure-log-bucket-1.5.6.tar.gz",
            "has_sig": false,
            "md5_digest": "b2d2b1e041a379bfcf9fff94063b1563",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 36323,
            "upload_time": "2024-04-21T18:24:07",
            "upload_time_iso_8601": "2024-04-21T18:24:07.702982Z",
            "url": "https://files.pythonhosted.org/packages/7c/af/c2462ef7236f59412f1501f18c73bf9251061c5ab28d011b568911fa836c/gammarer.aws-secure-log-bucket-1.5.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-21 18:24:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gammarer",
    "github_project": "aws-secure-log-bucket",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gammarer.aws-secure-log-bucket"
}
        
Elapsed time: 0.72940s