gammarer.aws-secure-vpc-bucket


Namegammarer.aws-secure-vpc-bucket JSON
Version 1.2.6 PyPI version JSON
download
home_pagehttps://github.com/gammarer/aws-secure-vpc-bucket.git
SummaryAccess from specific VPC Endpoint only Bucket
upload_time2024-04-21 18:21:57
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 VPC Bucket

[![GitHub](https://img.shields.io/github/license/gammarer/aws-secure-vpc-bucket?style=flat-square)](https://github.com/gammarer/aws-secure-vpc-bucket/blob/main/LICENSE)
[![npm (scoped)](https://img.shields.io/npm/v/@gammarer/aws-secure-vpc-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarer/aws-secure-vpc-bucket)
[![PyPI](https://img.shields.io/pypi/v/gammarer.aws-secure-vpc-bucket?style=flat-square)](https://pypi.org/project/gammarer.aws-secure-vpc-bucket/)
[![Nuget](https://img.shields.io/nuget/v/Gammarer.CDK.AWS.SecureVpcBucket?style=flat-square)](https://www.nuget.org/packages/Gammarer.CDK.AWS.SecureVpcBucket/)
[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.gammarer/aws-secure-vpc-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-vpc-bucket/)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarer/aws-secure-vpc-bucket/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarer/aws-secure-vpc-bucket/actions/workflows/release.yml)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarer/aws-secure-vpc-bucket?sort=semver&style=flat-square)](https://github.com/gammarer/aws-secure-vpc-bucket/releases)

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

Access from specific VPC Endpoint only Bucket

## Install

### TypeScript

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

### Python

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

### C# / .NET

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

### Java

Add the following to pom.xml:

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

## Example

```python
import { SecureSpecificVpcOnlyBucket } from '@gammarer/aws-secure-vpc-bucket';

new SecureVpcBucket(stack, 'SecureVpcBucket', {
  bucketName: 'example-origin-bucket',
  vpcEndpointId: 'vpce-0xxxxxxxxxxxxxxxx', // allready created vpc endpoint id
});
```

## License

This project is licensed under the Apache-2.0 License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gammarer/aws-secure-vpc-bucket.git",
    "name": "gammarer.aws-secure-vpc-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/0f/fa/7c7b452f56a384ebd65cea489de2d8c442994b99b14b4db381b072bde87d/gammarer.aws-secure-vpc-bucket-1.2.6.tar.gz",
    "platform": null,
    "description": "# AWS Secure VPC Bucket\n\n[![GitHub](https://img.shields.io/github/license/gammarer/aws-secure-vpc-bucket?style=flat-square)](https://github.com/gammarer/aws-secure-vpc-bucket/blob/main/LICENSE)\n[![npm (scoped)](https://img.shields.io/npm/v/@gammarer/aws-secure-vpc-bucket?style=flat-square)](https://www.npmjs.com/package/@gammarer/aws-secure-vpc-bucket)\n[![PyPI](https://img.shields.io/pypi/v/gammarer.aws-secure-vpc-bucket?style=flat-square)](https://pypi.org/project/gammarer.aws-secure-vpc-bucket/)\n[![Nuget](https://img.shields.io/nuget/v/Gammarer.CDK.AWS.SecureVpcBucket?style=flat-square)](https://www.nuget.org/packages/Gammarer.CDK.AWS.SecureVpcBucket/)\n[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.gammarer/aws-secure-vpc-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-vpc-bucket/)\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/gammarer/aws-secure-vpc-bucket/release.yml?branch=main&label=release&style=flat-square)](https://github.com/gammarer/aws-secure-vpc-bucket/actions/workflows/release.yml)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/gammarer/aws-secure-vpc-bucket?sort=semver&style=flat-square)](https://github.com/gammarer/aws-secure-vpc-bucket/releases)\n\n[![View on Construct Hub](https://constructs.dev/badge?package=@gammarer/aws-secure-vpc-bucket)](https://constructs.dev/packages/@gammarer/aws-secure-vpc-bucket)\n\nAccess from specific VPC Endpoint only Bucket\n\n## Install\n\n### TypeScript\n\n```shell\nnpm install @gammarer/aws-secure-vpc-bucket\n# or\nyarn add @gammarer/aws-secure-vpc-bucket\n```\n\n### Python\n\n```shell\npip install gammarer.aws-secure-vpc-bucket\n```\n\n### C# / .NET\n\n```shell\ndotnet add package Gammarer.CDK.AWS.SecureVpcBucket\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-vpc-bucket</artifactId>\n</dependency>\n```\n\n## Example\n\n```python\nimport { SecureSpecificVpcOnlyBucket } from '@gammarer/aws-secure-vpc-bucket';\n\nnew SecureVpcBucket(stack, 'SecureVpcBucket', {\n  bucketName: 'example-origin-bucket',\n  vpcEndpointId: 'vpce-0xxxxxxxxxxxxxxxx', // allready created vpc endpoint id\n});\n```\n\n## License\n\nThis project is licensed under the Apache-2.0 License.\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Access from specific VPC Endpoint only Bucket",
    "version": "1.2.6",
    "project_urls": {
        "Homepage": "https://github.com/gammarer/aws-secure-vpc-bucket.git",
        "Source": "https://github.com/gammarer/aws-secure-vpc-bucket.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e437088b15fa45c788057fafcccb1fdf63d506e611131ef31e107428e9736479",
                "md5": "ea30f52d9e819ddf685cd22cb2900db9",
                "sha256": "863276be567b477a68dc11d282d2a98e2ffde251d9d405aab3703cf8157b357b"
            },
            "downloads": -1,
            "filename": "gammarer.aws_secure_vpc_bucket-1.2.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ea30f52d9e819ddf685cd22cb2900db9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 39709,
            "upload_time": "2024-04-21T18:21:56",
            "upload_time_iso_8601": "2024-04-21T18:21:56.190896Z",
            "url": "https://files.pythonhosted.org/packages/e4/37/088b15fa45c788057fafcccb1fdf63d506e611131ef31e107428e9736479/gammarer.aws_secure_vpc_bucket-1.2.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ffa7c7b452f56a384ebd65cea489de2d8c442994b99b14b4db381b072bde87d",
                "md5": "2ce6aa2ac3fb44f233ae2ecf0ecac8c9",
                "sha256": "636dff2d2b59bee127ba405a44293811e7a3a03a959818419487413211216145"
            },
            "downloads": -1,
            "filename": "gammarer.aws-secure-vpc-bucket-1.2.6.tar.gz",
            "has_sig": false,
            "md5_digest": "2ce6aa2ac3fb44f233ae2ecf0ecac8c9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 40903,
            "upload_time": "2024-04-21T18:21:57",
            "upload_time_iso_8601": "2024-04-21T18:21:57.626304Z",
            "url": "https://files.pythonhosted.org/packages/0f/fa/7c7b452f56a384ebd65cea489de2d8c442994b99b14b4db381b072bde87d/gammarer.aws-secure-vpc-bucket-1.2.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-21 18:21:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gammarer",
    "github_project": "aws-secure-vpc-bucket",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gammarer.aws-secure-vpc-bucket"
}
        
Elapsed time: 0.92983s