gammarers.aws-secure-bucket


Namegammarers.aws-secure-bucket JSON
Version 2.4.3 PyPI version JSON
download
home_pagehttps://github.com/gammarers/aws-secure-bucket.git
SummaryThis is a Simple S3 Secure Bucket.
upload_time2025-09-02 12:43:44
maintainerNone
docs_urlNone
authoryicr<yicr@users.noreply.github.com>
requires_python~=3.9
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # AWS Secure Bucket

[![GitHub](https://img.shields.io/github/license/gammarers/aws-secure-bucket?style=flat-square)](https://github.com/gammarers/aws-secure-bucket/blob/main/LICENSE)
[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-secure-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-secure-bucket)
[![PyPI](https://img.shields.io/pypi/v/gammarers.aws-secure-bucket?style=flat-square)](https://pypi.org/project/gammarers.aws-secure-bucket/)
[![Nuget](https://img.shields.io/nuget/v/Gammarers.CDK.AWS.SecureBucket?style=flat-square)](https://www.nuget.org/packages/Gammarers.CDK.AWS.SecureBucket/)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-secure-bucket/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-secure-bucket/actions/workflows/release.yml)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-secure-bucket?sort=semver&style=flat-square)](https://github.com/gammarers/aws-secure-bucket/releases)

[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-secure-bucket)](https://constructs.dev/packages/@gammarers/aws-secure-bucket)

This is a Simple S3 Secure Bucket.

* Bucket Access Control is Private
* Public Read Access is false
* Enforce SSL
* All Block public access
* Require encryption

## Additional Properties

| **Name** | **Type** | **Default** | **Description** |
| --- | --- | --- | --- |
| bucketType | SecureBucketType | SecureBucketType.DEFAULT | The type of the bucket. Available types: DEFAULT, SINGLE_PIPELINE_ARTIFACT, MULTI_PIPELINE_ARTIFACT, CLOUD_FRONT_ORIGIN |
| isPipelineArtifactBucket | boolean | false | ⚠️ **Deprecated**: Use bucketType property instead. If you are setting a custom Qualifier and using it as the artifact bucket for the CDK pipeline, set it to true. |
| isCloudFrontOriginBucket | boolean | false | ⚠️ **Deprecated**: Use bucketType property instead. If you are using it as the CloudFront origin bucket, set it to true. |

## Install

### TypeScript

#### install by npm

```shell
npm install @gammarers/aws-secure-bucket
```

#### install by yarn

```shell
yarn add @gammarers/aws-secure-bucket
```

### Python

```shell
pip install gammarers.aws-secure-bucket
```

### C# / .Net

```shell
dotnet add package Gammarers.CDK.AWS.SecureBucket
```

## Example

```python
import { SecureBucket } from '@gammarers/aws-secure-bucket';

const bucket = new SecureBucket(stack, 'SecureBucket', {
  bucketName: 'example-secure-bucket',
});
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gammarers/aws-secure-bucket.git",
    "name": "gammarers.aws-secure-bucket",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "~=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "yicr<yicr@users.noreply.github.com>",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/1a/40/9d4517bfc0ed887147e6a6f50d55287f288725c4d34c11c65fcd4a628d7a/gammarers_aws_secure_bucket-2.4.3.tar.gz",
    "platform": null,
    "description": "# AWS Secure Bucket\n\n[![GitHub](https://img.shields.io/github/license/gammarers/aws-secure-bucket?style=flat-square)](https://github.com/gammarers/aws-secure-bucket/blob/main/LICENSE)\n[![npm (scoped)](https://img.shields.io/npm/v/@gammarers/aws-secure-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarers/aws-secure-bucket)\n[![PyPI](https://img.shields.io/pypi/v/gammarers.aws-secure-bucket?style=flat-square)](https://pypi.org/project/gammarers.aws-secure-bucket/)\n[![Nuget](https://img.shields.io/nuget/v/Gammarers.CDK.AWS.SecureBucket?style=flat-square)](https://www.nuget.org/packages/Gammarers.CDK.AWS.SecureBucket/)\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarers/aws-secure-bucket/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarers/aws-secure-bucket/actions/workflows/release.yml)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarers/aws-secure-bucket?sort=semver&style=flat-square)](https://github.com/gammarers/aws-secure-bucket/releases)\n\n[![View on Construct Hub](https://constructs.dev/badge?package=@gammarers/aws-secure-bucket)](https://constructs.dev/packages/@gammarers/aws-secure-bucket)\n\nThis is a Simple S3 Secure Bucket.\n\n* Bucket Access Control is Private\n* Public Read Access is false\n* Enforce SSL\n* All Block public access\n* Require encryption\n\n## Additional Properties\n\n| **Name** | **Type** | **Default** | **Description** |\n| --- | --- | --- | --- |\n| bucketType | SecureBucketType | SecureBucketType.DEFAULT | The type of the bucket. Available types: DEFAULT, SINGLE_PIPELINE_ARTIFACT, MULTI_PIPELINE_ARTIFACT, CLOUD_FRONT_ORIGIN |\n| isPipelineArtifactBucket | boolean | false | \u26a0\ufe0f **Deprecated**: Use bucketType property instead. If you are setting a custom Qualifier and using it as the artifact bucket for the CDK pipeline, set it to true. |\n| isCloudFrontOriginBucket | boolean | false | \u26a0\ufe0f **Deprecated**: Use bucketType property instead. If you are using it as the CloudFront origin bucket, set it to true. |\n\n## Install\n\n### TypeScript\n\n#### install by npm\n\n```shell\nnpm install @gammarers/aws-secure-bucket\n```\n\n#### install by yarn\n\n```shell\nyarn add @gammarers/aws-secure-bucket\n```\n\n### Python\n\n```shell\npip install gammarers.aws-secure-bucket\n```\n\n### C# / .Net\n\n```shell\ndotnet add package Gammarers.CDK.AWS.SecureBucket\n```\n\n## Example\n\n```python\nimport { SecureBucket } from '@gammarers/aws-secure-bucket';\n\nconst bucket = new SecureBucket(stack, 'SecureBucket', {\n  bucketName: 'example-secure-bucket',\n});\n```\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "This is a Simple S3 Secure Bucket.",
    "version": "2.4.3",
    "project_urls": {
        "Homepage": "https://github.com/gammarers/aws-secure-bucket.git",
        "Source": "https://github.com/gammarers/aws-secure-bucket.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "019d8794afa10e6c4bd5c6e9d932cbf1b9552124c4ff725b141e4f830074f354",
                "md5": "64eae30504dccab7aa6a5c4e9810756b",
                "sha256": "8e8e188e16e15e9f353c2202fdf5884086d66ab2969eaee1c771a32e87952f7c"
            },
            "downloads": -1,
            "filename": "gammarers_aws_secure_bucket-2.4.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "64eae30504dccab7aa6a5c4e9810756b",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.9",
            "size": 56996,
            "upload_time": "2025-09-02T12:43:42",
            "upload_time_iso_8601": "2025-09-02T12:43:42.850792Z",
            "url": "https://files.pythonhosted.org/packages/01/9d/8794afa10e6c4bd5c6e9d932cbf1b9552124c4ff725b141e4f830074f354/gammarers_aws_secure_bucket-2.4.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1a409d4517bfc0ed887147e6a6f50d55287f288725c4d34c11c65fcd4a628d7a",
                "md5": "0e180bbf072a9a6c3aa4dd68fb683c06",
                "sha256": "557d1973a8b36db07d2b83d2cb9ea184684153ae086232c910aed34b8cce18b0"
            },
            "downloads": -1,
            "filename": "gammarers_aws_secure_bucket-2.4.3.tar.gz",
            "has_sig": false,
            "md5_digest": "0e180bbf072a9a6c3aa4dd68fb683c06",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.9",
            "size": 58575,
            "upload_time": "2025-09-02T12:43:44",
            "upload_time_iso_8601": "2025-09-02T12:43:44.074612Z",
            "url": "https://files.pythonhosted.org/packages/1a/40/9d4517bfc0ed887147e6a6f50d55287f288725c4d34c11c65fcd4a628d7a/gammarers_aws_secure_bucket-2.4.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-02 12:43:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gammarers",
    "github_project": "aws-secure-bucket",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gammarers.aws-secure-bucket"
}
        
Elapsed time: 1.43736s