gammarer.aws-ec2-instance-connect-custom-resource


Namegammarer.aws-ec2-instance-connect-custom-resource JSON
Version 1.1.29 PyPI version JSON
download
home_pagehttps://github.com/gammarer/aws-ec2-instance-connect-custom-resource.git
SummaryAWS EC2 instance connect custom resource
upload_time2024-05-02 16:17:20
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.
            [![GitHub](https://img.shields.io/github/license/yicr/aws-ec2-instance-connect-custom-resource?style=flat-square)](https://github.com/yicr/aws-ec2-instance-connect-custom-resource/blob/main/LICENSE)
[![npm (scoped)](https://img.shields.io/npm/v/@gammarer/aws-ec2-instance-connect-custom-resource?style=flat-square)](https://www.npmjs.com/package/@gammarer/aws-ec2-instance-connect-custom-resource)
[![PyPI](https://img.shields.io/pypi/v/gammarer.aws-ec2-instance-connect-custom-resource?style=flat-square)](https://pypi.org/project/gammarer.aws-ec2-instance-connect-custom-resource/)
[![Nuget](https://img.shields.io/nuget/v/Gammarer.CDK.AWS.Ec2InstanceConnectCustomResource?style=flat-square)](https://www.nuget.org/packages/Gammarer.CDK.AWS.Ec2InstanceConnectCustomResource/)
[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.gammarer/aws-ec2-instance-connect-custom-resource?server=https%3A%2F%2Fs01.oss.sonatype.org%2F&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/releases/com/gammarer/aws-ec2-instance-connect-custom-resource/)
[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/yicr/aws-ec2-instance-connect-custom-resource/release.yml?branch=main&label=release&style=flat-square)](https://github.com/yicr/aws-ec2-instance-connect-custom-resource/actions/workflows/release.yml)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/yicr/aws-ec2-instance-connect-custom-resource?sort=semver&style=flat-square)](https://github.com/yicr/aws-ec2-instance-connect-custom-resource/releases)

# AWS EC2 Instance Connect Custom Resource

AWS EC2 instance connect custom resource

## Resources

This construct creating resource list.

* AWS Custom Resource

  * Lambda Function Iam Role
  * Lambda Function
  * Custom Resource Iam Role
  * Custom Policy

## Install

### TypeScript

```shell
npm install @gammarer/aws-ec2-instance-connect-custom-resource
# or
yarn add @gammarer/aws-ec2-instance-connect-custom-resource
```

### Python

```shell
pip install gammarer.aws-ec2-instance-connect-custom-resource
```

### C# / .NET

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

### Java

Add the following to pom.xml:

```xml
<dependency>
  <groupId>com.gammarer</groupId>
  <artifactId>aws-ec2-instance-connect-custom-resource</artifactId>
</dependency>
```

## Example

```python
import { EC2InstanceConnectCustomResource } from '@gammarer/aws-ec2-instance-connect-custom-resource';

new EC2InstanceConnectCustomResource(stack, 'EC2InstanceConnectCustomResource', {
  subnetId: 'example-subnet-id',
  securityGroupIds: [
    'example-security-group-id',
  ],
});
```

## License

This project is licensed under the Apache-2.0 License.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gammarer/aws-ec2-instance-connect-custom-resource.git",
    "name": "gammarer.aws-ec2-instance-connect-custom-resource",
    "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/10/92/22ce125a3f40a93ff97cc35b08b8dde2c3757a39ae1512582e81a9bc5d62/gammarer.aws-ec2-instance-connect-custom-resource-1.1.29.tar.gz",
    "platform": null,
    "description": "[![GitHub](https://img.shields.io/github/license/yicr/aws-ec2-instance-connect-custom-resource?style=flat-square)](https://github.com/yicr/aws-ec2-instance-connect-custom-resource/blob/main/LICENSE)\n[![npm (scoped)](https://img.shields.io/npm/v/@gammarer/aws-ec2-instance-connect-custom-resource?style=flat-square)](https://www.npmjs.com/package/@gammarer/aws-ec2-instance-connect-custom-resource)\n[![PyPI](https://img.shields.io/pypi/v/gammarer.aws-ec2-instance-connect-custom-resource?style=flat-square)](https://pypi.org/project/gammarer.aws-ec2-instance-connect-custom-resource/)\n[![Nuget](https://img.shields.io/nuget/v/Gammarer.CDK.AWS.Ec2InstanceConnectCustomResource?style=flat-square)](https://www.nuget.org/packages/Gammarer.CDK.AWS.Ec2InstanceConnectCustomResource/)\n[![Sonatype Nexus (Releases)](https://img.shields.io/nexus/r/com.gammarer/aws-ec2-instance-connect-custom-resource?server=https%3A%2F%2Fs01.oss.sonatype.org%2F&style=flat-square)](https://s01.oss.sonatype.org/content/repositories/releases/com/gammarer/aws-ec2-instance-connect-custom-resource/)\n[![GitHub Workflow Status (branch)](https://img.shields.io/github/actions/workflow/status/yicr/aws-ec2-instance-connect-custom-resource/release.yml?branch=main&label=release&style=flat-square)](https://github.com/yicr/aws-ec2-instance-connect-custom-resource/actions/workflows/release.yml)\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/yicr/aws-ec2-instance-connect-custom-resource?sort=semver&style=flat-square)](https://github.com/yicr/aws-ec2-instance-connect-custom-resource/releases)\n\n# AWS EC2 Instance Connect Custom Resource\n\nAWS EC2 instance connect custom resource\n\n## Resources\n\nThis construct creating resource list.\n\n* AWS Custom Resource\n\n  * Lambda Function Iam Role\n  * Lambda Function\n  * Custom Resource Iam Role\n  * Custom Policy\n\n## Install\n\n### TypeScript\n\n```shell\nnpm install @gammarer/aws-ec2-instance-connect-custom-resource\n# or\nyarn add @gammarer/aws-ec2-instance-connect-custom-resource\n```\n\n### Python\n\n```shell\npip install gammarer.aws-ec2-instance-connect-custom-resource\n```\n\n### C# / .NET\n\n```shell\ndotnet add package Gammarer.CDK.AWS.Ec2InstanceConnectCustomResource\n```\n\n### Java\n\nAdd the following to pom.xml:\n\n```xml\n<dependency>\n  <groupId>com.gammarer</groupId>\n  <artifactId>aws-ec2-instance-connect-custom-resource</artifactId>\n</dependency>\n```\n\n## Example\n\n```python\nimport { EC2InstanceConnectCustomResource } from '@gammarer/aws-ec2-instance-connect-custom-resource';\n\nnew EC2InstanceConnectCustomResource(stack, 'EC2InstanceConnectCustomResource', {\n  subnetId: 'example-subnet-id',\n  securityGroupIds: [\n    'example-security-group-id',\n  ],\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": "AWS EC2 instance connect custom resource",
    "version": "1.1.29",
    "project_urls": {
        "Homepage": "https://github.com/gammarer/aws-ec2-instance-connect-custom-resource.git",
        "Source": "https://github.com/gammarer/aws-ec2-instance-connect-custom-resource.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1f65623b20063db4183666ddacf2b7a287e0fb33aa9fd4d7334eb3012eac3ef",
                "md5": "1642ddcef946c5d4fb728f72351b5b4d",
                "sha256": "df0bee55a576fe1d013e96e05b76d5c27eeab80261ec3df01089e27df16d3ac2"
            },
            "downloads": -1,
            "filename": "gammarer.aws_ec2_instance_connect_custom_resource-1.1.29-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1642ddcef946c5d4fb728f72351b5b4d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "~=3.8",
            "size": 27307,
            "upload_time": "2024-05-02T16:17:19",
            "upload_time_iso_8601": "2024-05-02T16:17:19.267674Z",
            "url": "https://files.pythonhosted.org/packages/e1/f6/5623b20063db4183666ddacf2b7a287e0fb33aa9fd4d7334eb3012eac3ef/gammarer.aws_ec2_instance_connect_custom_resource-1.1.29-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "109222ce125a3f40a93ff97cc35b08b8dde2c3757a39ae1512582e81a9bc5d62",
                "md5": "2fc7b99172fd736d8d7fc9e2bfbcde96",
                "sha256": "e39f90df52268fdcbc85d98a880a4b792f433ac124496b0b72dc583d81494ed2"
            },
            "downloads": -1,
            "filename": "gammarer.aws-ec2-instance-connect-custom-resource-1.1.29.tar.gz",
            "has_sig": false,
            "md5_digest": "2fc7b99172fd736d8d7fc9e2bfbcde96",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "~=3.8",
            "size": 28060,
            "upload_time": "2024-05-02T16:17:20",
            "upload_time_iso_8601": "2024-05-02T16:17:20.715478Z",
            "url": "https://files.pythonhosted.org/packages/10/92/22ce125a3f40a93ff97cc35b08b8dde2c3757a39ae1512582e81a9bc5d62/gammarer.aws-ec2-instance-connect-custom-resource-1.1.29.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-02 16:17:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gammarer",
    "github_project": "aws-ec2-instance-connect-custom-resource",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gammarer.aws-ec2-instance-connect-custom-resource"
}
        
Elapsed time: 0.30182s