{ "info": { "author": "Amazon Web Services", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "## Amazon EC2 Construct Library\n\n---\n\n\n![Stability: Stable](https://img.shields.io/badge/stability-Stable-success.svg?style=for-the-badge)\n\n---\n\n\nThe `@aws-cdk/aws-ec2` package contains primitives for setting up networking and\ninstances.\n\n## VPC\n\nMost projects need a Virtual Private Cloud to provide security by means of\nnetwork partitioning. This is achieved by creating an instance of\n`Vpc`:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nimport aws_cdk.aws_ec2 as ec2\n\nvpc = ec2.Vpc(self, \"VPC\")\n```\n\nAll default constructs require EC2 instances to be launched inside a VPC, so\nyou should generally start by defining a VPC whenever you need to launch\ninstances for your project.\n\n### Subnet Types\n\nA VPC consists of one or more subnets that instances can be placed into. CDK\ndistinguishes three different subnet types:\n\n* **Public** - public subnets connect directly to the Internet using an\n Internet Gateway. If you want your instances to have a public IP address\n and be directly reachable from the Internet, you must place them in a\n public subnet.\n* **Private** - instances in private subnets are not directly routable from the\n Internet, and connect out to the Internet via a NAT gateway. By default, a\n NAT gateway is created in every public subnet for maximum availability. Be\n aware that you will be charged for NAT gateways.\n* **Isolated** - isolated subnets do not route from or to the Internet, and\n as such do not require NAT gateways. They can only connect to or be\n connected to from other instances in the same VPC. A default VPC configuration\n will not include isolated subnets,\n\nA default VPC configuration will create public and private subnets, but not\nisolated subnets. See *Advanced Subnet Configuration* below for information\non how to change the default subnet configuration.\n\nConstructs using the VPC will \"launch instances\" (or more accurately, create\nElastic Network Interfaces) into one or more of the subnets. They all accept\na property called `subnetSelection` (sometimes called `vpcSubnets`) to allow\nyou to select in what subnet to place the ENIs, usually defaulting to\n*private* subnets if the property is omitted.\n\nIf you would like to save on the cost of NAT gateways, you can use\n*isolated* subnets instead of *private* subnets (as described in Advanced\n*Subnet Configuration*). If you need private instances to have\ninternet connectivity, another option is to reduce the number of NAT gateways\ncreated by setting the `natGateways` property to a lower value (the default\nis one NAT gateway per availability zone). Be aware that this may have\navailability implications for your application.\n\n[Read more about\nsubnets](https://docs.aws.amazon.com/AmazonVPC/latest/UserGuide/VPC_Subnets.html).\n\n### Control over availability zones\n\nBy default, a VPC will spread over at most 3 Availability Zones available to\nit. To change the number of Availability Zones that the VPC will spread over,\nspecify the `maxAzs` property when defining it.\n\nThe number of Availability Zones that are available depends on the *region*\nand *account* of the Stack containing the VPC. If the [region and account are\nspecified](https://docs.aws.amazon.com/cdk/latest/guide/environments.html) on\nthe Stack, the CLI will [look up the existing Availability\nZones](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#using-regions-availability-zones-describe)\nand get an accurate count. If region and account are not specified, the stack\ncould be deployed anywhere and it will have to make a safe choice, limiting\nitself to 2 Availability Zones.\n\nTherefore, to get the VPC to spread over 3 or more availability zones, you\nmust specify the environment where the stack will be deployed.\n\n### Advanced Subnet Configuration\n\nIf the default VPC configuration (public and private subnets spanning the\nsize of the VPC) don't suffice for you, you can configure what subnets to\ncreate by specifying the `subnetConfiguration` property. It allows you\nto configure the number and size of all subnets. Specifying an advanced\nsubnet configuration could look like this:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nvpc = ec2.Vpc(self, \"TheVPC\",\n # 'cidr' configures the IP range and size of the entire VPC.\n # The IP space will be divided over the configured subnets.\n cidr=\"10.0.0.0/21\",\n\n # 'maxAzs' configures the maximum number of availability zones to use\n max_azs=3,\n\n # 'subnetConfiguration' specifies the \"subnet groups\" to create.\n # Every subnet group will have a subnet for each AZ, so this\n # configuration will create `3 groups \u00d7 3 AZs = 9` subnets.\n subnet_configuration=[{\n # 'subnetType' controls Internet access, as described above.\n \"subnet_type\": ec2.SubnetType.PUBLIC,\n\n # 'name' is used to name this particular subnet group. You will have to\n # use the name for subnet selection if you have more than one subnet\n # group of the same type.\n \"name\": \"Ingress\",\n\n # 'cidrMask' specifies the IP addresses in the range of of individual\n # subnets in the group. Each of the subnets in this group will contain\n # `2^(32 address bits - 24 subnet bits) - 2 reserved addresses = 254`\n # usable IP addresses.\n #\n # If 'cidrMask' is left out the available address space is evenly\n # divided across the remaining subnet groups.\n \"cidr_mask\": 24\n }, {\n \"cidr_mask\": 24,\n \"name\": \"Application\",\n \"subnet_type\": ec2.SubnetType.PRIVATE\n }, {\n \"cidr_mask\": 28,\n \"name\": \"Database\",\n \"subnet_type\": ec2.SubnetType.ISOLATED,\n\n # 'reserved' can be used to reserve IP address space. No resources will\n # be created for this subnet, but the IP range will be kept available for\n # future creation of this subnet, or even for future subdivision.\n \"reserved\": True\n }\n ]\n)\n```\n\nThe example above is one possible configuration, but the user can use the\nconstructs above to implement many other network configurations.\n\nThe `Vpc` from the above configuration in a Region with three\navailability zones will be the following:\n\nSubnet Name |Type |IP Block |AZ|Features\n------------------|----------|--------------|--|--------\nIngressSubnet1 |`PUBLIC` |`10.0.0.0/24` |#1|NAT Gateway\nIngressSubnet2 |`PUBLIC` |`10.0.1.0/24` |#2|NAT Gateway\nIngressSubnet3 |`PUBLIC` |`10.0.2.0/24` |#3|NAT Gateway\nApplicationSubnet1|`PRIVATE` |`10.0.3.0/24` |#1|Route to NAT in IngressSubnet1\nApplicationSubnet2|`PRIVATE` |`10.0.4.0/24` |#2|Route to NAT in IngressSubnet2\nApplicationSubnet3|`PRIVATE` |`10.0.5.0/24` |#3|Route to NAT in IngressSubnet3\nDatabaseSubnet1 |`ISOLATED`|`10.0.6.0/28` |#1|Only routes within the VPC\nDatabaseSubnet2 |`ISOLATED`|`10.0.6.16/28`|#2|Only routes within the VPC\nDatabaseSubnet3 |`ISOLATED`|`10.0.6.32/28`|#3|Only routes within the VPC\n\n### Reserving subnet IP space\n\nThere are situations where the IP space for a subnet or number of subnets\nwill need to be reserved. This is useful in situations where subnets would\nneed to be added after the vpc is originally deployed, without causing IP\nrenumbering for existing subnets. The IP space for a subnet may be reserved\nby setting the `reserved` subnetConfiguration property to true, as shown\nbelow:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nimport aws_cdk.aws_ec2 as ec2\nvpc = ec2.Vpc(self, \"TheVPC\",\n nat_gateways=1,\n subnet_configuration=[{\n \"cidr_mask\": 26,\n \"name\": \"Public\",\n \"subnet_type\": ec2.SubnetType.PUBLIC\n }, {\n \"cidr_mask\": 26,\n \"name\": \"Application1\",\n \"subnet_type\": ec2.SubnetType.PRIVATE\n }, {\n \"cidr_mask\": 26,\n \"name\": \"Application2\",\n \"subnet_type\": ec2.SubnetType.PRIVATE,\n \"reserved\": True\n }, {\n \"cidr_mask\": 27,\n \"name\": \"Database\",\n \"subnet_type\": ec2.SubnetType.ISOLATED\n }\n ]\n)\n```\n\nIn the example above, the subnet for Application2 is not actually provisioned\nbut its IP space is still reserved. If in the future this subnet needs to be\nprovisioned, then the `reserved: true` property should be removed. Reserving\nparts of the IP space prevents the other subnets from getting renumbered.\n\n### Sharing VPCs between stacks\n\nIf you are creating multiple `Stack`s inside the same CDK application, you\ncan reuse a VPC defined in one Stack in another by simply passing the VPC\ninstance around:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n#\n# Stack1 creates the VPC\n#\nclass Stack1(cdk.Stack):\n\n def __init__(self, scope, id, props=None):\n super().__init__(scope, id, props)\n\n self.vpc = ec2.Vpc(self, \"VPC\")\n\n#\n# Stack2 consumes the VPC\n#\nclass Stack2(cdk.Stack):\n def __init__(self, scope, id, *, vpc):\n super().__init__(scope, id, vpc=vpc)\n\n # Pass the VPC to a construct that needs it\n ConstructThatTakesAVpc(self, \"Construct\",\n vpc=vpc\n )\n\nstack1 = Stack1(app, \"Stack1\")\nstack2 = Stack2(app, \"Stack2\",\n vpc=stack1.vpc\n)\n```\n\n### Importing an existing VPC\n\nIf your VPC is created outside your CDK app, you can use `Vpc.fromLookup()`.\nThe CDK CLI will search for the specified VPC in the the stack's region and\naccount, and import the subnet configuration. Looking up can be done by VPC\nID, but more flexibly by searching for a specific tag on the VPC.\n\nThe import does assume that the VPC will be *symmetric*, i.e. that there are\nsubnet groups that have a subnet in every Availability Zone that the VPC\nspreads over. VPCs with other layouts cannot currently be imported, and will\neither lead to an error on import, or when another construct tries to access\nthe subnets.\n\nSubnet types will be determined from the `aws-cdk:subnet-type` tag on the\nsubnet if it exists, or the presence of a route to an Internet Gateway\notherwise. Subnet names will be determined from the `aws-cdk:subnet-name` tag\non the subnet if it exists, or will mirror the subnet type otherwise (i.e.\na public subnet will have the name `\"Public\"`).\n\nHere's how `Vpc.fromLookup()` can be used:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nvpc = ec2.Vpc.from_lookup(stack, \"VPC\",\n # This imports the default VPC but you can also\n # specify a 'vpcName' or 'tags'.\n is_default=True\n)\n```\n\n## Allowing Connections\n\nIn AWS, all network traffic in and out of **Elastic Network Interfaces** (ENIs)\nis controlled by **Security Groups**. You can think of Security Groups as a\nfirewall with a set of rules. By default, Security Groups allow no incoming\n(ingress) traffic and all outgoing (egress) traffic. You can add ingress rules\nto them to allow incoming traffic streams. To exert fine-grained control over\negress traffic, set `allowAllOutbound: false` on the `SecurityGroup`, after\nwhich you can add egress traffic rules.\n\nYou can manipulate Security Groups directly:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nmy_security_group = ec2.SecurityGroup(self, \"SecurityGroup\",\n vpc=vpc,\n description=\"Allow ssh access to ec2 instances\",\n allow_all_outbound=True\n)\nmy_security_group.add_ingress_rule(ec2.Peer.any_ipv4(), ec2.Port.tcp(22), \"allow ssh access from the world\")\n```\n\nAll constructs that create ENIs on your behalf (typically constructs that create\nEC2 instances or other VPC-connected resources) will all have security groups\nautomatically assigned. Those constructs have an attribute called\n**connections**, which is an object that makes it convenient to update the\nsecurity groups. If you want to allow connections between two constructs that\nhave security groups, you have to add an **Egress** rule to one Security Group,\nand an **Ingress** rule to the other. The connections object will automatically\ntake care of this for you:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Allow connections from anywhere\nload_balancer.connections.allow_from_any_ipv4(ec2.Port.tcp(443), \"Allow inbound HTTPS\")\n\n# The same, but an explicit IP address\nload_balancer.connections.allow_from(ec2.Peer.ipv4(\"1.2.3.4/32\"), ec2.Port.tcp(443), \"Allow inbound HTTPS\")\n\n# Allow connection between AutoScalingGroups\napp_fleet.connections.allow_to(db_fleet, ec2.Port.tcp(443), \"App can call database\")\n```\n\n### Connection Peers\n\nThere are various classes that implement the connection peer part:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Simple connection peers\npeer = ec2.Peer.ipv4(\"10.0.0.0/16\")\npeer = ec2.Peer.any_ipv4()\npeer = ec2.Peer.ipv6(\"::0/0\")\npeer = ec2.Peer.any_ipv6()\npeer = ec2.Peer.prefix_list(\"pl-12345\")\nfleet.connections.allow_to(peer, ec2.Port.tcp(443), \"Allow outbound HTTPS\")\n```\n\nAny object that has a security group can itself be used as a connection peer:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# These automatically create appropriate ingress and egress rules in both security groups\nfleet1.connections.allow_to(fleet2, ec2.Port.tcp(80), \"Allow between fleets\")\n\nfleet.connections.allow_from_any_ipv4(ec2.Port.tcp(80), \"Allow from load balancer\")\n```\n\n### Port Ranges\n\nThe connections that are allowed are specified by port ranges. A number of classes provide\nthe connection specifier:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nec2.Port.tcp(80)\nec2.Port.tcp_range(60000, 65535)\nec2.Port.all_tcp()\nec2.Port.all_traffic()\n```\n\n> NOTE: This set is not complete yet; for example, there is no library support for ICMP at the moment.\n> However, you can write your own classes to implement those.\n\n### Default Ports\n\nSome Constructs have default ports associated with them. For example, the\nlistener of a load balancer does (it's the public port), or instances of an\nRDS database (it's the port the database is accepting connections on).\n\nIf the object you're calling the peering method on has a default port associated with it, you can call\n`allowDefaultPortFrom()` and omit the port specifier. If the argument has an associated default port, call\n`allowDefaultPortTo()`.\n\nFor example:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Port implicit in listener\nlistener.connections.allow_default_port_from_any_ipv4(\"Allow public\")\n\n# Port implicit in peer\nfleet.connections.allow_default_port_to(rds_database, \"Fleet can access database\")\n```\n\n## Machine Images (AMIs)\n\nAMIs control the OS that gets launched when you start your EC2 instance. The EC2\nlibrary contains constructs to select the AMI you want to use.\n\nDepending on the type of AMI, you select it a different way.\n\nThe latest version of Amazon Linux and Microsoft Windows images are\nselectable by instantiating one of these classes:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Pick a Windows edition to use\nwindows = ec2.WindowsImage(ec2.WindowsVersion.WINDOWS_SERVER_2019_ENGLISH_FULL_BASE)\n\n# Pick the right Amazon Linux edition. All arguments shown are optional\n# and will default to these values when omitted.\namzn_linux = ec2.AmazonLinuxImage(\n generation=ec2.AmazonLinuxGeneration.AMAZON_LINUX,\n edition=ec2.AmazonLinuxEdition.STANDARD,\n virtualization=ec2.AmazonLinuxVirt.HVM,\n storage=ec2.AmazonLinuxStorage.GENERAL_PURPOSE\n)\n\n# For other custom (Linux) images, instantiate a `GenericLinuxImage` with\n# a map giving the AMI to in for each region:\n\nlinux = ec2.GenericLinuxImage(\n us-east-1=\"ami-97785bed\",\n eu-west-1=\"ami-12345678\"\n)\n\n# For other custom (Windows) images, instantiate a `GenericWindowsImage` with\n# a map giving the AMI to in for each region:\n\ngeneric_windows = ec2.GenericWindowsImage(\n us-east-1=\"ami-97785bed\",\n eu-west-1=\"ami-12345678\"\n)\n```\n\n> NOTE: The Amazon Linux images selected will be cached in your `cdk.json`, so that your\n> AutoScalingGroups don't automatically change out from under you when you're making unrelated\n> changes. To update to the latest version of Amazon Linux, remove the cache entry from the `context`\n> section of your `cdk.json`.\n>\n> We will add command-line options to make this step easier in the future.\n\n## VPN connections to a VPC\n\nCreate your VPC with VPN connections by specifying the `vpnConnections` props (keys are construct `id`s):\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nvpc = ec2.Vpc(stack, \"MyVpc\",\n vpn_connections={\n \"dynamic\": {# Dynamic routing (BGP)\n \"ip\": \"1.2.3.4\"},\n \"static\": {# Static routing\n \"ip\": \"4.5.6.7\",\n \"static_routes\": [\"192.168.10.0/24\", \"192.168.20.0/24\"\n ]}\n }\n)\n```\n\nTo create a VPC that can accept VPN connections, set `vpnGateway` to `true`:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nvpc = ec2.Vpc(stack, \"MyVpc\",\n vpn_gateway=True\n)\n```\n\nVPN connections can then be added:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nvpc.add_vpn_connection(\"Dynamic\",\n ip=\"1.2.3.4\"\n)\n```\n\nRoutes will be propagated on the route tables associated with the private subnets.\n\nVPN connections expose [metrics (cloudwatch.Metric)](https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/aws-cloudwatch/README.md) across all tunnels in the account/region and per connection:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Across all tunnels in the account/region\nall_data_out = VpnConnection.metric_all_tunnel_data_out()\n\n# For a specific vpn connection\nvpn_connection = vpc.add_vpn_connection(\"Dynamic\",\n ip=\"1.2.3.4\"\n)\nstate = vpn_connection.metric_tunnel_state()\n```\n\n## VPC endpoints\n\nA VPC endpoint enables you to privately connect your VPC to supported AWS services and VPC endpoint services powered by PrivateLink without requiring an internet gateway, NAT device, VPN connection, or AWS Direct Connect connection. Instances in your VPC do not require public IP addresses to communicate with resources in the service. Traffic between your VPC and the other service does not leave the Amazon network.\n\nEndpoints are virtual devices. They are horizontally scaled, redundant, and highly available VPC components that allow communication between instances in your VPC and services without imposing availability risks or bandwidth constraints on your network traffic.\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Add gateway endpoints when creating the VPC\nvpc = ec2.Vpc(self, \"MyVpc\",\n gateway_endpoints={\n \"S3\": {\n \"service\": ec2.GatewayVpcEndpointAwsService.S3\n }\n }\n)\n\n# Alternatively gateway endpoints can be added on the VPC\ndynamo_db_endpoint = vpc.add_gateway_endpoint(\"DynamoDbEndpoint\",\n service=ec2.GatewayVpcEndpointAwsService.DYNAMODB\n)\n\n# This allows to customize the endpoint policy\ndynamo_db_endpoint.add_to_policy(\n iam.PolicyStatement(# Restrict to listing and describing tables\n principals=[iam.AnyPrincipal()],\n actions=[\"dynamodb:DescribeTable\", \"dynamodb:ListTables\"],\n resources=[\"*\"]))\n\n# Add an interface endpoint\necr_docker_endpoint = vpc.add_interface_endpoint(\"EcrDockerEndpoint\",\n service=ec2.InterfaceVpcEndpointAwsService.ECR_DOCKER\n)\n\n# When working with an interface endpoint, use the connections object to\n# allow traffic to flow to the endpoint.\necr_docker_endpoint.connections.allow_default_port_from_any_ipv4()\n```\n\n## Bastion Hosts\n\nA bastion host functions as an instance used to access servers and resources in a VPC without open up the complete VPC on a network level.\nYou can use bastion hosts using a standard SSH connection targetting port 22 on the host. As an alternative, you can connect the SSH connection\nfeature of AWS Systems Manager Session Manager, which does not need an opened security group. (https://aws.amazon.com/about-aws/whats-new/2019/07/session-manager-launches-tunneling-support-for-ssh-and-scp/)\n\nA default bastion host for use via SSM can be configured like:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nhost = ec2.BastionHostLinux(self, \"BastionHost\", vpc=vpc)\n```\n\nIf you want to connect from the internet using SSH, you need to place the host into a public subnet. You can then configure allowed source hosts.\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nhost = ec2.BastionHostLinux(self, \"BastionHost\",\n vpc=vpc,\n subnet_selection={\"subnet_type\": SubnetType.PUBLIC}\n)\nhost.allow_ssh_access_from(Peer.ipv4(\"1.2.3.4/32\"))\n```\n\nAs there are no SSH public keys deployed on this machine, you need to use [EC2 Instance Connect](https://aws.amazon.com/de/blogs/compute/new-using-amazon-ec2-instance-connect-for-ssh-access-to-your-ec2-instances/)\nwith the command `aws ec2-instance-connect send-ssh-public-key` to provide your SSH public key.\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/aws/aws-cdk", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "aws-cdk.aws-ec2", "package_url": "https://pypi.org/project/aws-cdk.aws-ec2/", "platform": "", "project_url": "https://pypi.org/project/aws-cdk.aws-ec2/", "project_urls": { "Homepage": "https://github.com/aws/aws-cdk", "Source": "https://github.com/aws/aws-cdk.git" }, "release_url": "https://pypi.org/project/aws-cdk.aws-ec2/1.13.1/", "requires_dist": [ "jsii (~=0.19.0)", "publication (>=0.0.3)", "aws-cdk.aws-cloudwatch (>=1.13.1,~=1.13)", "aws-cdk.aws-iam (>=1.13.1,~=1.13)", "aws-cdk.aws-ssm (>=1.13.1,~=1.13)", "aws-cdk.core (>=1.13.1,~=1.13)", "aws-cdk.cx-api (>=1.13.1,~=1.13)" ], "requires_python": ">=3.6", "summary": "CDK Constructs for AWS EC2", "version": "1.13.1" }, "last_serial": 5979673, "releases": { "0.26.0": [ { "comment_text": "", "digests": { "md5": "ad06a3512107ff3850dbec6bd556f7dd", "sha256": "47623a93d1674a0a6975f1c06652a00ba47b741d9e65e7b8baefc07cbc5e1c19" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.26.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ad06a3512107ff3850dbec6bd556f7dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 371671, "upload_time": "2019-03-28T17:36:12", "url": "https://files.pythonhosted.org/packages/ba/67/92f9319388577e824b8beb2874ddc76a5515ea5970b21427d4e5a6bc7c0d/aws_cdk.aws_ec2-0.26.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95da77f1c5e8890e1abe8a5754673437", "sha256": "b493c4780ece000dc9ab26b509569f1c045ca343fdce673ea7ad6eb5270ed5d4" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.26.0.tar.gz", "has_sig": false, "md5_digest": "95da77f1c5e8890e1abe8a5754673437", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 378075, "upload_time": "2019-03-28T17:39:04", "url": "https://files.pythonhosted.org/packages/51/d2/f4781e67829765a4346217dfc4d6e0745fb1f3d623474a8d2d1abaef8752/aws-cdk.aws-ec2-0.26.0.tar.gz" } ], "0.27.0": [ { "comment_text": "", "digests": { "md5": "3bf51202fd2338c3470417c7b3c74610", "sha256": "ad28e6fe641b46a2f607100cdf0231b3619026d4e27b8a1705e2d2f471aaa61d" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.27.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3bf51202fd2338c3470417c7b3c74610", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 371741, "upload_time": "2019-03-28T22:18:58", "url": "https://files.pythonhosted.org/packages/3b/a2/dbb317ca81280a8272cb6b3ae90266571e334c0ff965cc58a257220b558d/aws_cdk.aws_ec2-0.27.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7c997636fda95f361ebd4b04ab2b265", "sha256": "79875d5f580f97ec1287008c20dc443b6056caba6504791b3c12e998f6d97d08" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.27.0.tar.gz", "has_sig": false, "md5_digest": "c7c997636fda95f361ebd4b04ab2b265", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 378268, "upload_time": "2019-03-28T22:20:56", "url": "https://files.pythonhosted.org/packages/45/18/fcd1a91ace629ae155722516a0c944e4a6d1346a6209f7b057f69458ae8d/aws-cdk.aws-ec2-0.27.0.tar.gz" } ], "0.28.0": [ { "comment_text": "", "digests": { "md5": "f88c234735b2a049681a75a91ce36cfc", "sha256": "0549814a9fa6046c25c77c9e320def4f886187733a2012ea871502b770201669" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.28.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f88c234735b2a049681a75a91ce36cfc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 373998, "upload_time": "2019-04-04T15:59:53", "url": "https://files.pythonhosted.org/packages/15/2d/e184779bf6d2091e524f234063ae9e0861a6976b72bd4c642c2ed6f528cd/aws_cdk.aws_ec2-0.28.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a4ef2e3c03e22afce347ae57809873fa", "sha256": "bb3d124d1a8378314bb6f648b384a3029c09bfbcc3b79ec12e125f3c9bb520aa" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.28.0.tar.gz", "has_sig": false, "md5_digest": "a4ef2e3c03e22afce347ae57809873fa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 381197, "upload_time": "2019-04-04T16:01:55", "url": "https://files.pythonhosted.org/packages/75/d5/9b51173a019e094177fe537685647e45b54fa19d15da6c2ead8af1697045/aws-cdk.aws-ec2-0.28.0.tar.gz" } ], "0.29.0": [ { "comment_text": "", "digests": { "md5": "27d3032ea683033729fab481df4fbe9e", "sha256": "22c7671e6107cd1be2c6e371a100d06e4c1f16f477d65e4486ddb78c2bcd2a8a" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.29.0-py3-none-any.whl", "has_sig": false, "md5_digest": "27d3032ea683033729fab481df4fbe9e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 440243, "upload_time": "2019-04-24T21:44:54", "url": "https://files.pythonhosted.org/packages/be/02/de6e5abce0993fb5b55cadc0b3b6a77e3124398bff0369aab569824a32ac/aws_cdk.aws_ec2-0.29.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0940746dc904cbe7fe8cddbba0d039af", "sha256": "477624632128dfca15c6f64556603515d7d756ca4420e36ba8988b2b1ecc293d" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.29.0.tar.gz", "has_sig": false, "md5_digest": "0940746dc904cbe7fe8cddbba0d039af", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 447963, "upload_time": "2019-04-24T21:47:58", "url": "https://files.pythonhosted.org/packages/0a/b2/02be55f88847bd4f8f04fbc463a049dffe7d4ec09324328b216e199af4dd/aws-cdk.aws-ec2-0.29.0.tar.gz" } ], "0.30.0": [ { "comment_text": "", "digests": { "md5": "c87f3c23d2062021cf5c93ff8cb156cf", "sha256": "fba80cf2dd79666d452ebaaf65b57f3b5f9a78eafba2ed381782afc3c5dc11f0" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.30.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c87f3c23d2062021cf5c93ff8cb156cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 447088, "upload_time": "2019-05-02T10:52:35", "url": "https://files.pythonhosted.org/packages/20/0b/dae45ba85b8dc1d0ca7b304302b02ca920278f7fa274afcf0be3f9fe8ea7/aws_cdk.aws_ec2-0.30.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04495498c1559a7cf11ff224f79914f4", "sha256": "102171f89d8ec1ed6f04efa7f8e0764ec3c8cbc45c260901c02c989cf8da6013" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.30.0.tar.gz", "has_sig": false, "md5_digest": "04495498c1559a7cf11ff224f79914f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 455645, "upload_time": "2019-05-02T10:54:42", "url": "https://files.pythonhosted.org/packages/d9/1b/fc37e71c395edb1171f19db792d560c647b4b5817dd31758b063f7dc8a85/aws-cdk.aws-ec2-0.30.0.tar.gz" } ], "0.31.0": [ { "comment_text": "", "digests": { "md5": "43af93d27f566119070e9e64e76b1a3f", "sha256": "aa49699adab5d8242fa9af582112ebad625be282f655f6e1cd6557e46ec0ada8" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.31.0-py3-none-any.whl", "has_sig": false, "md5_digest": "43af93d27f566119070e9e64e76b1a3f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 446666, "upload_time": "2019-05-07T08:04:51", "url": "https://files.pythonhosted.org/packages/4d/12/9e3606995fa0464cf614700b1f5e6c2ce3dafc05deff802d86c6d474ddc0/aws_cdk.aws_ec2-0.31.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f65d02cc345b44800095fe8a20a53092", "sha256": "3eafffb0ec0a8415485553e077add23f9367a888fa0e8a25f12945cc6a4b92bc" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.31.0.tar.gz", "has_sig": false, "md5_digest": "f65d02cc345b44800095fe8a20a53092", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 455343, "upload_time": "2019-05-07T08:06:57", "url": "https://files.pythonhosted.org/packages/ee/f7/76b9332593e1b351fff34864520914a062d9f6d9a9f14ec3e42b669d75d3/aws-cdk.aws-ec2-0.31.0.tar.gz" } ], "0.32.0": [ { "comment_text": "", "digests": { "md5": "f80aa37ae353135907a8b99a4f56ff04", "sha256": "ac4a9b7f0047bd65e51886a0ccb9454c9cf1992f7b5db338b732352e1a7e16bd" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.32.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f80aa37ae353135907a8b99a4f56ff04", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 436338, "upload_time": "2019-05-24T10:59:09", "url": "https://files.pythonhosted.org/packages/7a/6b/3c49627261ca4532f8a3d8bb24618fe1aa5ccfaf636323d764a6ae111c8d/aws_cdk.aws_ec2-0.32.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5d1dbbce5e1f3d76d08520c16bca2df0", "sha256": "3df2c12984719f9db7cfc107ce813ed92894f1be19ce0fc0f26fda69cfd1cb7b" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.32.0.tar.gz", "has_sig": false, "md5_digest": "5d1dbbce5e1f3d76d08520c16bca2df0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 444284, "upload_time": "2019-05-24T11:01:23", "url": "https://files.pythonhosted.org/packages/1c/17/fe7c145c317a01ce751f0394e3ea6938107be550e52b2b3f6075b13caa2e/aws-cdk.aws-ec2-0.32.0.tar.gz" } ], "0.33.0": [ { "comment_text": "", "digests": { "md5": "45da06b2ca269ebdcca7c17a09cd9411", "sha256": "ee60c61127791a581803c43811930efdf39666ab2823e7df0175f42f2f9110b5" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.33.0-py3-none-any.whl", "has_sig": false, "md5_digest": "45da06b2ca269ebdcca7c17a09cd9411", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 448357, "upload_time": "2019-05-30T15:46:57", "url": "https://files.pythonhosted.org/packages/40/eb/a8d43e938c526dd8e04495df22c24849d6a74f3b443e59d925c153f62498/aws_cdk.aws_ec2-0.33.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f70500919f00fdef07914eb9d9682e4f", "sha256": "439a809423ca66d938dd10c001cb7f9e468e1a36de9f202bad8ef566fe2e8426" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.33.0.tar.gz", "has_sig": false, "md5_digest": "f70500919f00fdef07914eb9d9682e4f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 457072, "upload_time": "2019-05-30T15:49:20", "url": "https://files.pythonhosted.org/packages/f5/f0/5882927a9488db02fb4d7f4fc4cec94ec09ef66bdecfa2ffdbb846bd635f/aws-cdk.aws-ec2-0.33.0.tar.gz" } ], "0.34.0": [ { "comment_text": "", "digests": { "md5": "4e88fdcccaf31a38db80cffd3edb19e5", "sha256": "7713742ab3c7219ac0fbb26713b8ff941f3d0e171e8628f8cc9489effb3352b0" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.34.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4e88fdcccaf31a38db80cffd3edb19e5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 452637, "upload_time": "2019-06-10T15:38:02", "url": "https://files.pythonhosted.org/packages/a3/d4/93d1a7259208cd8bd605479ac9ce2efa58c5a424cdc7579d2d775ee17884/aws_cdk.aws_ec2-0.34.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c432ebbc541134c2bad40d5de7b5d7e", "sha256": "823915f497460a8fa2daf69b4620f96bdbe9c4403d56ecfd0b44e96e166bb5a2" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.34.0.tar.gz", "has_sig": false, "md5_digest": "9c432ebbc541134c2bad40d5de7b5d7e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 460919, "upload_time": "2019-06-10T15:40:22", "url": "https://files.pythonhosted.org/packages/73/5f/e802ba6c26ddb10b482add67c02892120405cb6961f30652723d029d8cd5/aws-cdk.aws-ec2-0.34.0.tar.gz" } ], "0.35.0": [ { "comment_text": "", "digests": { "md5": "061d95516edeb62300cbe64c9606705d", "sha256": "2f36a92e9d375bb49ec4019534eb6b3625ed847a84090f79fab51b048324ef75" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.35.0-py3-none-any.whl", "has_sig": false, "md5_digest": "061d95516edeb62300cbe64c9606705d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 488975, "upload_time": "2019-06-19T17:11:04", "url": "https://files.pythonhosted.org/packages/7c/71/322b6bb9167407fcdaa26e86bb2de45bacda17cd36302a3e4817e5c87be0/aws_cdk.aws_ec2-0.35.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ecc3f41717cc51b0c74b80e9a0bd993f", "sha256": "3026ec84027ba9941c5e33f180ff24fd3d566db9c903ae5ae47a3a9995f6a7ba" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.35.0.tar.gz", "has_sig": false, "md5_digest": "ecc3f41717cc51b0c74b80e9a0bd993f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 498234, "upload_time": "2019-06-19T17:13:40", "url": "https://files.pythonhosted.org/packages/4f/de/7c576db8f5fca48464bcf0e4cb6c7413cbf854c834a5bb8b70aec6f3a9e5/aws-cdk.aws-ec2-0.35.0.tar.gz" } ], "0.36.0": [ { "comment_text": "", "digests": { "md5": "88f3abd6f7b204792de7d42f5c5c13f9", "sha256": "89b88db39336a4b6f1ca5f3989da00f9d1cf06f60bd086a9f3ac17d5ce9b5b1a" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.36.0-py3-none-any.whl", "has_sig": false, "md5_digest": "88f3abd6f7b204792de7d42f5c5c13f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 486372, "upload_time": "2019-06-25T15:06:00", "url": "https://files.pythonhosted.org/packages/e3/02/e797862bd3e98ef7235f8d3e57817a1fdd0de7088114f423d9eb57b12be7/aws_cdk.aws_ec2-0.36.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6bc9c3fa0c4a09c31ad712943dd0ff0", "sha256": "f85deb527ea1e9e5ebede18742ebcffb301ea167c4b542b6de2e95474911477c" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.36.0.tar.gz", "has_sig": false, "md5_digest": "a6bc9c3fa0c4a09c31ad712943dd0ff0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 491207, "upload_time": "2019-06-25T15:08:28", "url": "https://files.pythonhosted.org/packages/99/24/ed4faf592a008b92a922732c522221d0bda2d54c35f78311da209c8485f9/aws-cdk.aws-ec2-0.36.0.tar.gz" } ], "0.36.1": [ { "comment_text": "", "digests": { "md5": "7b43befaa27c994776628dd88785a913", "sha256": "a50143dcb960d2c1952e242a2030893bf0ccbddf7d80bb6b915abb651122925e" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.36.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7b43befaa27c994776628dd88785a913", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 486355, "upload_time": "2019-07-01T18:04:20", "url": "https://files.pythonhosted.org/packages/89/f0/8a4825cc4a2fc098dc7e484ae1166c80f06441b13e536edd8c4361aa5528/aws_cdk.aws_ec2-0.36.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "28833467a53398817cea1bc48479f645", "sha256": "86f6a09d796f9078d2c7e227cb9252ac72e9e5def4302bc012d8990776322cd1" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.36.1.tar.gz", "has_sig": false, "md5_digest": "28833467a53398817cea1bc48479f645", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 491280, "upload_time": "2019-07-01T18:06:58", "url": "https://files.pythonhosted.org/packages/0b/51/8e9594a410dfa35ce0e08c640708dda2da110d18652e16b3921eee7ef221/aws-cdk.aws-ec2-0.36.1.tar.gz" } ], "0.36.2": [ { "comment_text": "", "digests": { "md5": "122c5a15369bd75ee3b6f03344029972", "sha256": "30a4071cf0591ad435eedbfba0eda81be24fec548af3833699dc2b0f100edba6" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.36.2-py3-none-any.whl", "has_sig": false, "md5_digest": "122c5a15369bd75ee3b6f03344029972", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 485891, "upload_time": "2019-07-03T13:38:40", "url": "https://files.pythonhosted.org/packages/d5/87/a2c358dace8c6f0efcf1ca16a10980b4c40870f25d4d3bc90a033ebb2b53/aws_cdk.aws_ec2-0.36.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c495f756e5dd56a27c398dec634e4fa4", "sha256": "db0784fff3ab3f7f6a1fae27784d34dc648f4bb1e4bcac0e2345ff9160f8c7ed" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.36.2.tar.gz", "has_sig": false, "md5_digest": "c495f756e5dd56a27c398dec634e4fa4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 490587, "upload_time": "2019-07-03T13:41:06", "url": "https://files.pythonhosted.org/packages/0b/33/4f8b297fc3b5dc094ed5d5501febdc6dd488772d093ba3cab3712524628e/aws-cdk.aws-ec2-0.36.2.tar.gz" } ], "0.37.0": [ { "comment_text": "", "digests": { "md5": "766ba3f07781bfccc4f9ba8db37cec0c", "sha256": "12d37743d71089a119fb774346291277838a1e899f65f7170917f83e5c622229" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.37.0-py3-none-any.whl", "has_sig": false, "md5_digest": "766ba3f07781bfccc4f9ba8db37cec0c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 485942, "upload_time": "2019-07-04T20:32:42", "url": "https://files.pythonhosted.org/packages/5f/8b/0590477f2b9be4ffb4a2409159acdfb79fdeed8fc0c1fff8091d7b85910b/aws_cdk.aws_ec2-0.37.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebf672975c42af40ebeae281fc9e1b91", "sha256": "2a804f7ca1931bf4a110047f6d24f4f2d934efa5d2614bc7969ca4ee286eb036" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.37.0.tar.gz", "has_sig": false, "md5_digest": "ebf672975c42af40ebeae281fc9e1b91", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 490609, "upload_time": "2019-07-04T20:35:08", "url": "https://files.pythonhosted.org/packages/e2/82/8de9a9305ebc34af19d96e0de33eb739788115f91dbefe1740f341edbf9c/aws-cdk.aws-ec2-0.37.0.tar.gz" } ], "0.38.0": [ { "comment_text": "", "digests": { "md5": "0c9afe276253b089853e94ead320fe3a", "sha256": "df0456e0cd099cd47a4815d9c38b14dc1b22b4d7086b94dfad86c83c128cce6f" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.38.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0c9afe276253b089853e94ead320fe3a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 504585, "upload_time": "2019-07-08T14:13:37", "url": "https://files.pythonhosted.org/packages/60/f5/636853aea10287f62d77b95ddc9a24178e43e9cca1703a0bc1ec6f1a6cbe/aws_cdk.aws_ec2-0.38.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d6ce4fbe84865c8c64f5c2b1b03c131c", "sha256": "9f3548509dfb5dd880542871d8e0f8b381dc3a0cf21595280d4733cd0a030561" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.38.0.tar.gz", "has_sig": false, "md5_digest": "d6ce4fbe84865c8c64f5c2b1b03c131c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 509086, "upload_time": "2019-07-08T14:16:02", "url": "https://files.pythonhosted.org/packages/7d/fd/1675252f35e1a86cb55e64ee05c46c9e553239746dba74aa90854b41071a/aws-cdk.aws-ec2-0.38.0.tar.gz" } ], "0.39.0": [ { "comment_text": "", "digests": { "md5": "6dd5c6f9a60b02492f5a067e822bdb7a", "sha256": "f5e046f28075036917628f2a9b26e16536deca0f48e13b37d78bad36708553c9" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-0.39.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6dd5c6f9a60b02492f5a067e822bdb7a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 504537, "upload_time": "2019-07-09T00:42:28", "url": "https://files.pythonhosted.org/packages/a9/22/afd4d0b52a773c1a0d6bf1fee9d116f63ef45bdac3ccec6ea50519859c8a/aws_cdk.aws_ec2-0.39.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ad68fb6afaea12b5e294eb890ffe903a", "sha256": "e69070dce394ac6d143578ddd40af6b7796955940bec9634bdf7dc2c46cb1ebf" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-0.39.0.tar.gz", "has_sig": false, "md5_digest": "ad68fb6afaea12b5e294eb890ffe903a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 509014, "upload_time": "2019-07-09T00:44:54", "url": "https://files.pythonhosted.org/packages/2c/36/912a04c1227a2e264fe35b504fa180e50eca0d462499ec808c9a56f101c2/aws-cdk.aws-ec2-0.39.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "f932ad640e52a0f9a11db07de19a33cf", "sha256": "2364e57a1030f3eddda0b4ef87cf399681dc540be1204b66e3eccf7d795d2f6d" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f932ad640e52a0f9a11db07de19a33cf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 504832, "upload_time": "2019-07-11T15:18:31", "url": "https://files.pythonhosted.org/packages/87/0c/90b7420d14949283fa21ba9e38de10865cb81fbf1e639b3ef9eef933e408/aws_cdk.aws_ec2-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da412b72278e8df45d7139865c425d64", "sha256": "37cbb4084ce34aaf469e79e54b5c9de827e6bc001611280557817c64483f30c3" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.0.0.tar.gz", "has_sig": false, "md5_digest": "da412b72278e8df45d7139865c425d64", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 509240, "upload_time": "2019-07-11T15:21:15", "url": "https://files.pythonhosted.org/packages/fe/b3/29ef193ada3785460ecb56c28ccd84922a3709885e2ddc0256440ecb361f/aws-cdk.aws-ec2-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "9d85542ba29751face33db2c6b72a144", "sha256": "777b63c009f860631e2b0e28a849dc57707c13b1129b91e7a71b83e2faf6ca1a" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9d85542ba29751face33db2c6b72a144", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 506744, "upload_time": "2019-07-19T21:24:04", "url": "https://files.pythonhosted.org/packages/e9/f8/fae171dee1cac3862a778acbf0f09a7f6c151b577d00774e6f63034322aa/aws_cdk.aws_ec2-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "55885017aa0b40e609aaae1eefd81e74", "sha256": "6639b10e1eb90eb57e1a1832cf82e4d71285b74bb8b8a23b12a2f6456419b07a" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.1.0.tar.gz", "has_sig": false, "md5_digest": "55885017aa0b40e609aaae1eefd81e74", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 511247, "upload_time": "2019-07-19T21:26:37", "url": "https://files.pythonhosted.org/packages/1a/24/0354426cb8735d9765a9ba3ff1178d313f6aa7cbc88ab7fab29f1e2e6eca/aws-cdk.aws-ec2-1.1.0.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "47a660dd10518c43b8d39e232f9e0b66", "sha256": "e302255a274e2907157aa81a54df485691014dd8d97224319d81721decb11ce9" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "47a660dd10518c43b8d39e232f9e0b66", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586423, "upload_time": "2019-09-30T09:19:09", "url": "https://files.pythonhosted.org/packages/b8/79/fc32fdafc8e7c464976e536197674e3c7d6dd99b754c6a92a742ef9257fb/aws_cdk.aws_ec2-1.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "406a1e1b61eabcea5ff1284f1f9c4791", "sha256": "1ddf550a5df1b42950185a529df91be18151b124ec037b68e6dfb138e0a3b324" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.10.0.tar.gz", "has_sig": false, "md5_digest": "406a1e1b61eabcea5ff1284f1f9c4791", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596430, "upload_time": "2019-09-30T09:22:32", "url": "https://files.pythonhosted.org/packages/72/b6/63051364752ce79551dc9d80d693361da5a8b26dd2353d185f418088ff28/aws-cdk.aws-ec2-1.10.0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "e855a0ec25759cadba68fc0c1d5f0b2d", "sha256": "36a9b0dfddba5983c7e146762e621ebb2033aa1644ff2cbf1f9c7023fe716920" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e855a0ec25759cadba68fc0c1d5f0b2d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586467, "upload_time": "2019-10-01T15:33:09", "url": "https://files.pythonhosted.org/packages/a0/84/3bd13f90306f7468925c974e7e439c7298d57981c2d9627ef54b26e8fe35/aws_cdk.aws_ec2-1.10.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8bd8f5d932cb1d0a2c49339f1aeb3a82", "sha256": "7ae53835b02366eb42e5cf39d93e3f48a09ccf99f3bdd22a58fda5f9c6e2f936" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.10.1.tar.gz", "has_sig": false, "md5_digest": "8bd8f5d932cb1d0a2c49339f1aeb3a82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596484, "upload_time": "2019-10-01T15:39:55", "url": "https://files.pythonhosted.org/packages/06/03/5bea6ed2a039b55d0b813856164bafb16a60d921ec4f11a4992d2548415c/aws-cdk.aws-ec2-1.10.1.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "11acafc9900db84984524bca981357bf", "sha256": "fe7c3677917d9dbfc6c55546e89901484287f77b5ec2fc549c6810f707a58475" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "11acafc9900db84984524bca981357bf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586359, "upload_time": "2019-10-02T19:08:41", "url": "https://files.pythonhosted.org/packages/68/d3/f5baa23b8ba2a997d85d7a99535e9890d32cd8198c5b83a2709b25146659/aws_cdk.aws_ec2-1.11.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88388051e14d4b93da83f15db60b1ea9", "sha256": "303f0a818e75220a9d87e91fba88b376feabb10918f060251a76fd078c2c8c3a" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.11.0.tar.gz", "has_sig": false, "md5_digest": "88388051e14d4b93da83f15db60b1ea9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596377, "upload_time": "2019-10-02T19:12:02", "url": "https://files.pythonhosted.org/packages/98/fc/5b55cb5b948a26be8713847b2cdaf39e645f90448422d33e085f713a31b3/aws-cdk.aws-ec2-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "ead02d2899b4243a69bf565acbd6b553", "sha256": "35322f134bceb92d664c829db385c498df090268ffa2fcef221d09b6a017461f" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ead02d2899b4243a69bf565acbd6b553", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586392, "upload_time": "2019-10-07T16:21:05", "url": "https://files.pythonhosted.org/packages/52/20/6f5f800e72b37d3142dcb161f749352ffbf024e7675002cc178550a08546/aws_cdk.aws_ec2-1.12.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "94ee08b5c7e06b5130cbab307152c293", "sha256": "daa008b29ed1f1cd554be42ecf5e6d2c75f5cabe590206048230d32789822ea6" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.12.0.tar.gz", "has_sig": false, "md5_digest": "94ee08b5c7e06b5130cbab307152c293", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596383, "upload_time": "2019-10-07T16:24:27", "url": "https://files.pythonhosted.org/packages/af/08/448e228ab839bea4fe4d9fdd740b3ae79464c7b87935b7889db7155ec4f9/aws-cdk.aws-ec2-1.12.0.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "132b800b178c07e4e004af4ca0d3d57d", "sha256": "ff9ffc330c5455b3b36129623216ed63d0ecfb2beb064fe4d6286224c64e9376" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "132b800b178c07e4e004af4ca0d3d57d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586355, "upload_time": "2019-10-15T13:15:51", "url": "https://files.pythonhosted.org/packages/fc/60/58fcc12dc9aac212b085a9a56cdc57edaa79348b5ab6f548c20b93f54df0/aws_cdk.aws_ec2-1.13.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "00bd3f09acbc0aabe0712dd7e23215df", "sha256": "bd32db06f0508854e3e372a01f80cd4f2ad856c5e540924f11c7780a839dec97" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.13.0.tar.gz", "has_sig": false, "md5_digest": "00bd3f09acbc0aabe0712dd7e23215df", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596180, "upload_time": "2019-10-15T13:19:48", "url": "https://files.pythonhosted.org/packages/d6/8f/db342eb4d24703170bb64194b8e13997158bdd79be7d83d6907dead94c65/aws-cdk.aws-ec2-1.13.0.tar.gz" } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "2a4e64fa93575f26583db521c6fb5e2f", "sha256": "21597816076c07a46c0b2ae3fd8bdfb2761cbd6c23ea5321a0b3e1625a59710e" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2a4e64fa93575f26583db521c6fb5e2f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586375, "upload_time": "2019-10-15T20:40:33", "url": "https://files.pythonhosted.org/packages/20/f2/9fe70807688db13cc98632151d89107038d5042f2b41eb516e70580ff22f/aws_cdk.aws_ec2-1.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "befbe0e7c7a85daaee085d1689c733c6", "sha256": "e719e8636ef884b97dc52547f66aaa47330e274cbfe59cfcfcb17b4cf6f1dd96" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.13.1.tar.gz", "has_sig": false, "md5_digest": "befbe0e7c7a85daaee085d1689c733c6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596178, "upload_time": "2019-10-15T20:45:34", "url": "https://files.pythonhosted.org/packages/26/ac/70fe49d64fb09b8e5d57beef0d24486f8f9898285fb1ab81a77150d34911/aws-cdk.aws-ec2-1.13.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "de475f358d60cfcf6bbc21f7a4fe2393", "sha256": "d9d052bfa24b58aa0c78b1f73e9fd15dd0ec5cf35cc39fcda0236b3274e2dc0d" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "de475f358d60cfcf6bbc21f7a4fe2393", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 510005, "upload_time": "2019-07-25T17:48:38", "url": "https://files.pythonhosted.org/packages/93/c1/7740dcd934e8c9b9ed41f2a64043f4fd92741898539350c6b179cd92d3eb/aws_cdk.aws_ec2-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "62e6ece86f809f6b90f7878b959e085f", "sha256": "8d33c92be40f7e7de71176f4ac2870c09af2a66d9e72330ae6464744893bc73b" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.2.0.tar.gz", "has_sig": false, "md5_digest": "62e6ece86f809f6b90f7878b959e085f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 514437, "upload_time": "2019-07-25T17:51:10", "url": "https://files.pythonhosted.org/packages/16/30/b19ece3b7c0e4213bf1884868c3cd7097cd854df1aa3326697adf533f3ee/aws-cdk.aws-ec2-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "dc7bb5d53a6af60ca5359a9953bbd17e", "sha256": "a96b6597db7cd7f7dfbc5740589051c495fd591ec55553e761ad0645526232b6" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dc7bb5d53a6af60ca5359a9953bbd17e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 510353, "upload_time": "2019-08-02T11:14:48", "url": "https://files.pythonhosted.org/packages/14/a1/91d9485577cfa5d80fb737de9943cc1814c647ef263955382edf8a46089a/aws_cdk.aws_ec2-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c81d267e242f213e8eec70567d4309ac", "sha256": "6d91f8119db09b9bef055e6f9628f1c9c20515997976e52d34f8217b42fbcf79" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.3.0.tar.gz", "has_sig": false, "md5_digest": "c81d267e242f213e8eec70567d4309ac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 518300, "upload_time": "2019-08-02T11:17:23", "url": "https://files.pythonhosted.org/packages/36/65/fbc93983c5a46ea1764b39878b961c321bf617b62708c0c0a1809934f065/aws-cdk.aws-ec2-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "5badd3f0e461238f4b7e237eff0f247c", "sha256": "be74abc4127b3c24cd476ffff14596d3ecb494d1ef9f95e2ca8ff2863998de27" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5badd3f0e461238f4b7e237eff0f247c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 518560, "upload_time": "2019-08-14T08:18:39", "url": "https://files.pythonhosted.org/packages/2a/45/a356e1d3f18d6873b6318a6ed6b631590c887fc2b72424effb05265b5b81/aws_cdk.aws_ec2-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1142c17a34536cf964f59820c381ad57", "sha256": "4acd4b78a5fdaeb166fdea2c15aaa02e2ded7469cef1dbf14aa27fad54bae9f7" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.4.0.tar.gz", "has_sig": false, "md5_digest": "1142c17a34536cf964f59820c381ad57", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 527088, "upload_time": "2019-08-14T16:32:32", "url": "https://files.pythonhosted.org/packages/cb/f9/9ab412cffe183a0c2782896e7d379084dc02b9974405a6a7e5ce0e9e9815/aws-cdk.aws-ec2-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "2273a3a479ea07e9d98c57f88a942e54", "sha256": "8f9ad5ecedd73564296491759ada538ddc02616d5d2f89554076af9236b14adf" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2273a3a479ea07e9d98c57f88a942e54", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 519608, "upload_time": "2019-08-21T11:32:34", "url": "https://files.pythonhosted.org/packages/83/60/dce2d6cb3d6811a058d3c141cc26d01d5735921fdfcfe8462caacb841ea3/aws_cdk.aws_ec2-1.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "804e86491ab8feb761af7ef3aec43b9f", "sha256": "93d64d46007a3fb2a0049642fc82d18922affde21e80bcb017823bfb1c384fc8" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.5.0.tar.gz", "has_sig": false, "md5_digest": "804e86491ab8feb761af7ef3aec43b9f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 528102, "upload_time": "2019-08-21T11:35:28", "url": "https://files.pythonhosted.org/packages/53/f6/3f82eb4d01ac5f36488a94c2a9331a00fb921dd99fb6eb3cb1025811e433/aws-cdk.aws-ec2-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "570537d811cf1e0bbb0e92435e14e650", "sha256": "17388569ac8e7af29f44c37998af172434762069e5aa3c10c7056492870c9ef2" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "570537d811cf1e0bbb0e92435e14e650", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 548529, "upload_time": "2019-08-27T18:11:27", "url": "https://files.pythonhosted.org/packages/85/83/989558586caad7ac20345043ee41cbde9867b688613f380cadb87c070abc/aws_cdk.aws_ec2-1.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6e7890f39b96fe8d5779bae7691afb1", "sha256": "7a4a156ac81c4cfd4420349b0cc282ee8e678563f0e86346aceb6e10b4e1030f" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.6.0.tar.gz", "has_sig": false, "md5_digest": "a6e7890f39b96fe8d5779bae7691afb1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 556587, "upload_time": "2019-08-27T18:14:16", "url": "https://files.pythonhosted.org/packages/b3/13/93649f9a5673e8f907f91416801856ee7d1f45f7584846831c2946f71ef4/aws-cdk.aws-ec2-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "683a6738f0784d41ef7e6c84f45752fc", "sha256": "1945b42f94be8f3fa3bd46bbdf056eaa321b922a84bc21622e50202e6c107d4f" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "683a6738f0784d41ef7e6c84f45752fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 551545, "upload_time": "2019-08-29T14:36:25", "url": "https://files.pythonhosted.org/packages/e0/53/f3873c26416c97a8c021b6b884a686b5521ffbd08408b7e27519af471608/aws_cdk.aws_ec2-1.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dcaec31e5f072386a7de848046613b7e", "sha256": "9f6590890daa4c723da0cb57dfa12d20eb37fded1cf4f72b03884d6fb61d6b69" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.6.1.tar.gz", "has_sig": false, "md5_digest": "dcaec31e5f072386a7de848046613b7e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 560766, "upload_time": "2019-08-29T14:39:20", "url": "https://files.pythonhosted.org/packages/6f/31/56ebfd082592cb66109b7a7e4a2d4f117438b71130b36ab14918e6fda66c/aws-cdk.aws-ec2-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "cddaab5ad5cbdc4e89af221b48110593", "sha256": "c9b62c0e345d20b0d1aa06562f11637337f65e60178a2a269fd8967134a72c00" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cddaab5ad5cbdc4e89af221b48110593", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 552543, "upload_time": "2019-09-06T01:55:11", "url": "https://files.pythonhosted.org/packages/09/9f/83cbac47f4b0d9194bab4ba7d7242958691c0ba534e7637f9ea7ae3a0f20/aws_cdk.aws_ec2-1.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e505c7a8cbaf47541ce62fd264253fc5", "sha256": "9b8724cf6ad68b535e6623a9ded6bb0473ea56dca700abc5d52ea47086fdc981" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.7.0.tar.gz", "has_sig": false, "md5_digest": "e505c7a8cbaf47541ce62fd264253fc5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 561856, "upload_time": "2019-09-06T01:58:05", "url": "https://files.pythonhosted.org/packages/a8/dd/000d3a47058e9ae083fa26f9f880284358108005c54ccaccbbfe636c1e09/aws-cdk.aws-ec2-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "90d70cb37f221281812f9d8130d97c20", "sha256": "89679b0966bb9231fa6697bc0ac6f99f169314038b798c0ef17275ecfa321453" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "90d70cb37f221281812f9d8130d97c20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 578094, "upload_time": "2019-09-10T22:10:28", "url": "https://files.pythonhosted.org/packages/19/31/2652acf99707b3dcca99de2b12b008f30be38758f5868430adb2a7097f77/aws_cdk.aws_ec2-1.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "762afe9a7b62df892623774223c4219d", "sha256": "e8b986e1d489a8ae148af4b2ac25f01e62b437b1821d91b50409aa08ec9a3963" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.8.0.tar.gz", "has_sig": false, "md5_digest": "762afe9a7b62df892623774223c4219d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 587286, "upload_time": "2019-09-10T22:13:31", "url": "https://files.pythonhosted.org/packages/4e/1e/22767c98456c32bc1ba77bd66bab3727902028b058950b2357d5a6e5ca0f/aws-cdk.aws-ec2-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "589236deada0e14f1b790780fd37b5e9", "sha256": "ca7eaa6c7abce9399bdd79b67f1f0a428ac59caf83fac48e7e59697776924c22" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "589236deada0e14f1b790780fd37b5e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 581409, "upload_time": "2019-09-20T10:46:54", "url": "https://files.pythonhosted.org/packages/a4/4d/389493538b23361d6fa2b9ee99eef6049d81ae4630c00a270a9f3c4162c7/aws_cdk.aws_ec2-1.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da4a287e1edf9133e316630769869fa9", "sha256": "14e8d5cd00476acd077db26b294bc19cf973569560bf7c83e61baf3a8435af5c" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.9.0.tar.gz", "has_sig": false, "md5_digest": "da4a287e1edf9133e316630769869fa9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 590928, "upload_time": "2019-09-20T10:49:57", "url": "https://files.pythonhosted.org/packages/59/73/56a0fe8ce243bc87d362fcaff9c05faf680fc6c10c6e52f2a6bf169b4a89/aws-cdk.aws-ec2-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2a4e64fa93575f26583db521c6fb5e2f", "sha256": "21597816076c07a46c0b2ae3fd8bdfb2761cbd6c23ea5321a0b3e1625a59710e" }, "downloads": -1, "filename": "aws_cdk.aws_ec2-1.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2a4e64fa93575f26583db521c6fb5e2f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 586375, "upload_time": "2019-10-15T20:40:33", "url": "https://files.pythonhosted.org/packages/20/f2/9fe70807688db13cc98632151d89107038d5042f2b41eb516e70580ff22f/aws_cdk.aws_ec2-1.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "befbe0e7c7a85daaee085d1689c733c6", "sha256": "e719e8636ef884b97dc52547f66aaa47330e274cbfe59cfcfcb17b4cf6f1dd96" }, "downloads": -1, "filename": "aws-cdk.aws-ec2-1.13.1.tar.gz", "has_sig": false, "md5_digest": "befbe0e7c7a85daaee085d1689c733c6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 596178, "upload_time": "2019-10-15T20:45:34", "url": "https://files.pythonhosted.org/packages/26/ac/70fe49d64fb09b8e5d57beef0d24486f8f9898285fb1ab81a77150d34911/aws-cdk.aws-ec2-1.13.1.tar.gz" } ] }