{ "info": { "author": "Amazon Web Services", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "## AWS Cloud Development Kit Core 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\nThis library includes the basic building blocks of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) (AWS CDK). It defines the core classes that are used in the rest of the\nAWS Construct Library.\n\nSee the [AWS CDK Developer\nGuide](https://docs.aws.amazon.com/cdk/latest/guide/home.html) for\ninformation of most of the capabilities of this library. The rest of this\nREADME will only cover topics not already covered in the Developer Guide.\n\n## Durations\n\nTo make specifications of time intervals unambiguous, a single class called\n`Duration` is used throughout the AWS Construct Library by all constructs\nthat that take a time interval as a parameter (be it for a timeout, a\nrate, or something else).\n\nAn instance of Duration is constructed by using one of the static factory\nmethods on it:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nDuration.seconds(300)# 5 minutes\nDuration.minutes(5)# 5 minutes\nDuration.hours(1)# 1 hour\nDuration.days(7)# 7 days\nDuration.parse(\"PT5M\")\n```\n\n## Secrets\n\nTo help avoid accidental storage of secrets as plain text, we use the `SecretValue` type to\nrepresent secrets. Any construct that takes a value that should be a secret (such as\na password or an access key) will take a parameter of type `SecretValue`.\n\nThe best practice is to store secrets in AWS Secrets Manager and reference them using `SecretValue.secretsManager`:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nsecret = SecretValue.secrets_manager(\"secretId\",\n json_field=\"password\", # optional: key of a JSON field to retrieve (defaults to all content),\n version_id=\"id\", # optional: id of the version (default AWSCURRENT)\n version_stage=\"stage\"\n)\n```\n\nUsing AWS Secrets Manager is the recommended way to reference secrets in a CDK app.\n`SecretValue` also supports the following secret sources:\n\n* `SecretValue.plainText(secret)`: stores the secret as plain text in your app and the resulting template (not recommended).\n* `SecretValue.ssmSecure(param, version)`: refers to a secret stored as a SecureString in the SSM Parameter Store.\n* `SecretValue.cfnParameter(param)`: refers to a secret passed through a CloudFormation parameter (must have `NoEcho: true`).\n* `SecretValue.cfnDynamicReference(dynref)`: refers to a secret described by a CloudFormation dynamic reference (used by `ssmSecure` and `secretsManager`).\n\n## ARN manipulation\n\nSometimes you will need to put together or pick apart Amazon Resource Names\n(ARNs). The functions `stack.formatArn()` and `stack.parseArn()` exist for\nthis purpose.\n\n`formatArn()` can be used to build an ARN from components. It will automatically\nuse the region and account of the stack you're calling it on:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Builds \"arn::lambda:::function:MyFunction\"\nstack.format_arn(\n service=\"lambda\",\n resource=\"function\",\n sep=\":\",\n resource_name=\"MyFunction\"\n)\n```\n\n`parseArn()` can be used to get a single component from an ARN. `parseArn()`\nwill correctly deal with both literal ARNs and deploy-time values (tokens),\nbut in case of a deploy-time value be aware that the result will be another\ndeploy-time value which cannot be inspected in the CDK application.\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Extracts the function name out of an AWS Lambda Function ARN\narn_components = stack.parse_arn(arn, \":\")\nfunction_name = arn_components.resource_name\n```\n\nNote that depending on the service, the resource separator can be either\n`:` or `/`, and the resource name can be either the 6th or 7th\ncomponent in the ARN. When using these functions, you will need to know\nthe format of the ARN you are dealing with.\n\nFor an exhaustive list of ARN formats used in AWS, see [AWS ARNs and\nNamespaces](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)\nin the AWS General Reference.\n\n## Dependencies\n\n### Construct Dependencies\n\nSometimes AWS resources depend on other resources, and the creation of one\nresource must be completed before the next one can be started.\n\nIn general, CloudFormation will correctly infer the dependency relationship\nbetween resources based on the property values that are used. In the cases where\nit doesn't, the AWS Construct Library will add the dependency relationship for\nyou.\n\nIf you need to add an ordering dependency that is not automatically inferred,\nyou do so by adding a dependency relationship using\n`constructA.node.addDependency(constructB)`. This will add a dependency\nrelationship between all resources in the scope of `constructA` and all\nresources in the scope of `constructB`.\n\nIf you want a single object to represent a set of constructs that are not\nnecessarily in the same scope, you can use a `ConcreteDependable`. The\nfollowing creates a single object that represents a dependency on two\nconstruts, `constructB` and `constructC`:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# Declare the dependable object\nb_and_c = ConcreteDependable()\nb_and_c.add(construct_b)\nb_and_c.add(construct_c)\n\n# Take the dependency\nconstruct_a.node.add_dependency(b_and_c)\n```\n\n### Stack Dependencies\n\nTwo different stack instances can have a dependency on one another. This\nhappens when an resource from one stack is referenced in another stack. In\nthat case, CDK records the cross-stack referencing of resources,\nautomatically produces the right CloudFormation primitives, and adds a\ndependency between the two stacks. You can also manually add a dependency\nbetween two stacks by using the `stackA.addDependency(stackB)` method.\n\nA stack dependency has the following implications:\n\n* Cyclic dependencies are not allowed, so if `stackA` is using resources from\n `stackB`, the reverse is not possible anymore.\n* Stacks with dependencies between them are treated specially by the CDK\n toolkit:\n\n * If `stackA` depends on `stackB`, running `cdk deploy stackA` will also\n automatically deploy `stackB`.\n * `stackB`'s deployment will be performed *before* `stackA`'s deployment.\n\n## AWS CloudFormation features\n\nA CDK stack synthesizes to an AWS CloudFormation Template. This section\nexplains how this module allows users to access low-level CloudFormation\nfeatures when needed.\n\n### Stack Outputs\n\nCloudFormation [stack outputs](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/outputs-section-structure.html) and exports are created using\nthe `CfnOutput` class:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nCfnOutput(self, \"OutputName\",\n value=bucket.bucket_name,\n description=\"The name of an S3 bucket\", # Optional\n export_name=\"Global.BucketName\"\n)\n```\n\n### Parameters\n\nCloudFormation templates support the use of [Parameters](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/parameters-section-structure.html) to\ncustomize a template. They enable CloudFormation users to input custom values to\na template each time a stack is created or updated. While the CDK design\nphilosophy favors using build-time parameterization, users may need to use\nCloudFormation in a number of cases (for example, when migrating an existing\nstack to the AWS CDK).\n\nTemplate parameters can be added to a stack by using the `CfnParameter` class:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nCfnParameter(self, \"MyParameter\",\n type=\"Number\",\n default=1337\n)\n```\n\nThe value of parameters can then be obtained using one of the `value` methods.\nAs parameters are only resolved at deployment time, the values obtained are\nplaceholder tokens for the real value (`Token.isUnresolved()` would return `true`\nfor those):\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nparam = CfnParameter(self, \"ParameterName\")\n\n# If the parameter is a String\nparam.value_as_string\n\n# If the parameter is a Number\nparam.value_as_number\n\n# If the parameter is a List\nparam.value_as_list\n```\n\n### Pseudo Parameters\n\nCloudFormation supports a number of [pseudo parameters](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/pseudo-parameter-reference.html),\nwhich resolve to useful values at deployment time. CloudFormation pseudo\nparameters can be obtained from static members of the `Aws` class.\n\nIt is generally recommended to access pseudo parameters from the scope's `stack`\ninstead, which guarantees the values produced are qualifying the designated\nstack, which is essential in cases where resources are shared cross-stack:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# \"this\" is the current construct\nstack = Stack.of(self)\n\nstack.account# Returns the AWS::AccountId for this stack (or the literal value if known)\nstack.region# Returns the AWS::Region for this stack (or the literal value if known)\nstack.partition\n```\n\n### Resource Options\n\nCloudFormation resources can also specify [resource\nattributes](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-product-attribute-reference.html). The `CfnResource` class allows\naccessing those though the `cfnOptions` property:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nraw_bucket = s3.CfnBucket(self, \"Bucket\")\n# -or-\nraw_bucket = bucket.node.default_child\n\n# then\nraw_bucket.condition = CfnCondition(self, \"EnableBucket\")\nraw_bucket.cfn_options.metadata = {\n \"metadata_key\": \"MetadataValue\"\n}\n```\n\nResource dependencies (the `DependsOn` attribute) is modified using the\n`cfnResource.addDependsOn` method:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nresource_a = CfnResource(self, \"ResourceA\")\nresource_b = CfnResource(self, \"ResourceB\")\n\nresource_b.add_depends_on(resource_a)\n```\n\n### Intrinsic Functions and Condition Expressions\n\nCloudFormation supports [intrinsic functions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference.html). These functions\ncan be accessed from the `Fn` class, which provides type-safe methods for each\nintrinsic function as well as condition expressions:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\n# To use Fn::Base64\nFn.base64(\"SGVsbG8gQ0RLIQo=\")\n\n# To compose condition expressions:\nenvironment_parameter = CfnParameter(self, \"Environment\")\nFn.condition_and(\n # The \"Environment\" CloudFormation template parameter evaluates to \"Production\"\n Fn.condition_equals(\"Production\", environment_parameter),\n # The AWS::Region pseudo-parameter value is NOT equal to \"us-east-1\"\n Fn.condition_not(Fn.condition_equals(\"us-east-1\", Aws.REGION)))\n```\n\nWhen working with deploy-time values (those for which `Token.isUnresolved`\nreturns `true`), idiomatic conditionals from the programming language cannot be\nused (the value will not be known until deployment time). When conditional logic\nneeds to be expressed with un-resolved values, it is necessary to use\nCloudFormation conditions by means of the `CfnCondition` class:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nenvironment_parameter = CfnParameter(self, \"Environment\")\nis_prod = CfnCondition(self, \"IsProduction\",\n expression=Fn.condition_equals(\"Production\", environment_parameter)\n)\n\n# Configuration value that is a different string based on IsProduction\nstage = Fn.condition_if(is_prod.logical_id, \"Beta\", \"Prod\").to_string()\n\n# Make Bucket creation condition to IsProduction by accessing\n# and overriding the CloudFormation resource\nbucket = s3.Bucket(self, \"Bucket\")\ncfn_bucket = bucket.node.default_child\ncfn_bucket.cfn_options.condition = is_prod\n```\n\n### Mappings\n\nCloudFormation [mappings](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/mappings-section-structure.html) are created and queried using the\n`CfnMappings` class:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nmapping = CfnMapping(self, \"MappingTable\",\n mapping={\n \"region_name\": {\n \"us-east-1\": \"US East (N. Virginia)\",\n \"us-east-2\": \"US East (Ohio)\"\n }\n }\n)\n\nmapping.find_in_map(\"regionName\", Aws.REGION)\n```\n\n### Dynamic References\n\nCloudFormation supports [dynamically resolving](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html) values\nfor SSM parameters (including secure strings) and Secrets Manager. Encoding such\nreferences is done using the `CfnDynamicReference` class:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nCfnDynamicReference(self, \"SecureStringValue\",\n service=CfnDynamicReferenceService.SECRETS_MANAGER,\n reference_key=\"secret-id:secret-string:json-key:version-stage:version-id\"\n)\n```\n\n### Template Options & Transform\n\nCloudFormation templates support a number of options, including which Macros or\n[Transforms](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-section-structure.html) to use when deploying the stack. Those can be\nconfigured using the `stack.templateOptions` property:\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nstack = Stack(app, \"StackName\")\n\nstack.template_options.description = \"This will appear in the AWS console\"\nstack.template_options.transform = \"AWS::Serverless\"\nstack.template_options.metadata = {\n \"metadata_key\": \"MetadataValue\"\n}\n```\n\n### Emitting Raw Resources\n\nThe `CfnResource` class allows emitting arbitrary entries in the\n[Resources][cfn-resources] section of the CloudFormation template.\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nCfnResource(self, \"ResourceId\",\n type=\"AWS::S3::Bucket\",\n properties={\n \"BucketName\": \"bucket-name\"\n }\n)\n```\n\nAs for any other resource, the logical ID in the CloudFormation template will be\ngenerated by the AWS CDK, but the type and properties will be copied verbatim in\nthe synthesized template.\n\n### Including raw CloudFormation template fragments\n\nWhen migrating a CloudFormation stack to the AWS CDK, it can be useful to\ninclude fragments of an existing template verbatim in the synthesized template.\nThis can be achieved using the `CfnInclude` class.\n\n```python\n# Example may have issues. See https://github.com/aws/jsii/issues/826\nCfnInclude(self, \"ID\",\n template={\n \"Resources\": {\n \"Bucket\": {\n \"Type\": \"AWS::S3::Bucket\",\n \"Properties\": {\n \"BucketName\": \"my-shiny-bucket\"\n }\n }\n }\n }\n)\n```\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.core", "package_url": "https://pypi.org/project/aws-cdk.core/", "platform": "", "project_url": "https://pypi.org/project/aws-cdk.core/", "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.core/1.13.1/", "requires_dist": [ "jsii (~=0.19.0)", "publication (>=0.0.3)", "aws-cdk.cx-api (>=1.13.1,~=1.13)" ], "requires_python": ">=3.6", "summary": "AWS Cloud Development Kit Core Library", "version": "1.13.1" }, "last_serial": 5979755, "releases": { "0.36.0": [ { "comment_text": "", "digests": { "md5": "df7e0be61fbca35f19679d264ce8384c", "sha256": "afa57a7b0b38de5b67744ab5e4ec74b206b6ef5e167a1a7c160d7402e17406dd" }, "downloads": -1, "filename": "aws_cdk.core-0.36.0-py3-none-any.whl", "has_sig": false, "md5_digest": "df7e0be61fbca35f19679d264ce8384c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 493354, "upload_time": "2019-06-25T15:07:32", "url": "https://files.pythonhosted.org/packages/9f/cd/d87f9c100e6cdf6ac5f71b53acd6ac90a012b484674c8213af591a3ee4ba/aws_cdk.core-0.36.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8dc774b3631b5c881fb51fe4092f6f54", "sha256": "345d5a823c6eaa060574384bd74d3e5032c5a30b811e1d64702efad403095622" }, "downloads": -1, "filename": "aws-cdk.core-0.36.0.tar.gz", "has_sig": false, "md5_digest": "8dc774b3631b5c881fb51fe4092f6f54", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 495891, "upload_time": "2019-06-25T15:09:55", "url": "https://files.pythonhosted.org/packages/45/f2/2729876dec9314db4c272a65ef4671b8e66a9969049284a77905f6db33ea/aws-cdk.core-0.36.0.tar.gz" } ], "0.36.1": [ { "comment_text": "", "digests": { "md5": "e4ccd303570775e5210818170503a1c3", "sha256": "4e591d7b13a8ddb2e9c5f1574b4d6116cafcb43d10ec01f015b39888098ae3f7" }, "downloads": -1, "filename": "aws_cdk.core-0.36.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e4ccd303570775e5210818170503a1c3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 495549, "upload_time": "2019-07-01T18:06:02", "url": "https://files.pythonhosted.org/packages/3b/76/3ad59148e1c3c931398e75541a0a61adb340a3cf9873bf41e72cbcf74b17/aws_cdk.core-0.36.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "389f770a3f3f3b3a659938fa707f6cda", "sha256": "e9d4c9492d1a2819eed2e32dc7c55da213f10cd7377d025b3c688f4f2be29ecb" }, "downloads": -1, "filename": "aws-cdk.core-0.36.1.tar.gz", "has_sig": false, "md5_digest": "389f770a3f3f3b3a659938fa707f6cda", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 498091, "upload_time": "2019-07-01T18:08:31", "url": "https://files.pythonhosted.org/packages/e4/de/5b45bf7a8dd62192001f552d90a2c8dcfac6347a0a01e0f6d1383e650915/aws-cdk.core-0.36.1.tar.gz" } ], "0.36.2": [ { "comment_text": "", "digests": { "md5": "006b2f4590047bd6d23762dde82ea437", "sha256": "f113e7236582fa8bfcbd1f2c75f981c867632612786784a85c72cfbff2f82ad7" }, "downloads": -1, "filename": "aws_cdk.core-0.36.2-py3-none-any.whl", "has_sig": false, "md5_digest": "006b2f4590047bd6d23762dde82ea437", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 505402, "upload_time": "2019-07-03T13:40:12", "url": "https://files.pythonhosted.org/packages/f5/fa/48a984fa0975b1c156ce254f1e9f4301facea46ea7a808baf7c67dfbab76/aws_cdk.core-0.36.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f70b6301f8ab88fafad2c287c6073f07", "sha256": "b6f52df1f1caa2d039e5f9bf65dcd711dde125766fc6ed1096f88910d9006ea3" }, "downloads": -1, "filename": "aws-cdk.core-0.36.2.tar.gz", "has_sig": false, "md5_digest": "f70b6301f8ab88fafad2c287c6073f07", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 509776, "upload_time": "2019-07-03T13:42:30", "url": "https://files.pythonhosted.org/packages/bd/b3/ab343797a0af96a3100992a377bb1844b3a7a5d1779189a263ef111c2277/aws-cdk.core-0.36.2.tar.gz" } ], "0.37.0": [ { "comment_text": "", "digests": { "md5": "f755127abc2dd1330e6067252f1e5d62", "sha256": "4279a8bb91ebbf96f4528188cbc1715ae24761c492c078729209e954fd7af252" }, "downloads": -1, "filename": "aws_cdk.core-0.37.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f755127abc2dd1330e6067252f1e5d62", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 505028, "upload_time": "2019-07-04T20:34:14", "url": "https://files.pythonhosted.org/packages/16/58/a73acb298f81bf1c795d3e6c9d3022f780e26116cbeb2a0caffa60295b51/aws_cdk.core-0.37.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d0015c2087085005a76eec046cf171d", "sha256": "94bfec5afb3ac7307e91b54875439c175374d8b4cbf36f0ddd171cca1daec650" }, "downloads": -1, "filename": "aws-cdk.core-0.37.0.tar.gz", "has_sig": false, "md5_digest": "1d0015c2087085005a76eec046cf171d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 509382, "upload_time": "2019-07-04T20:36:32", "url": "https://files.pythonhosted.org/packages/19/45/c1dad1586a9d8edba2f2645bd89fe01e0758b0fc5a41e8ce62d65bbfa577/aws-cdk.core-0.37.0.tar.gz" } ], "0.38.0": [ { "comment_text": "", "digests": { "md5": "5f4aa437511f9379bfd39de87c43a32d", "sha256": "907e55e255df21c05c0b6ed897895657123b29d3d03a60c9e34253292c778f31" }, "downloads": -1, "filename": "aws_cdk.core-0.38.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5f4aa437511f9379bfd39de87c43a32d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 511005, "upload_time": "2019-07-08T14:15:08", "url": "https://files.pythonhosted.org/packages/38/92/8b5bde28f129b589165247df618d2e2a57576312f4c79b7b08f5532179a4/aws_cdk.core-0.38.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3e27d540a1cc5ea2426506413bf7091", "sha256": "44d2966a8c8b8714d3a4fb1e15866d78895fe660edb120cbba6091e238959416" }, "downloads": -1, "filename": "aws-cdk.core-0.38.0.tar.gz", "has_sig": false, "md5_digest": "e3e27d540a1cc5ea2426506413bf7091", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 515834, "upload_time": "2019-07-08T14:17:30", "url": "https://files.pythonhosted.org/packages/97/5c/d5d64a2e8a3fcd4c64af568d4c3c97f3efa6bc4d68d5477fd6caf7769257/aws-cdk.core-0.38.0.tar.gz" } ], "0.39.0": [ { "comment_text": "", "digests": { "md5": "4168ff5372918f70e9a019e285f8c4a4", "sha256": "d0dbc8bfaf2d2015e708b8ce0a0a0c48b0619bed1682654fce9ef88c1ad67117" }, "downloads": -1, "filename": "aws_cdk.core-0.39.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4168ff5372918f70e9a019e285f8c4a4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 511000, "upload_time": "2019-07-09T00:44:00", "url": "https://files.pythonhosted.org/packages/77/3d/d5c9e35932f7fc81dfe3412d126cb37a742b46793a12e986bda3f22d8278/aws_cdk.core-0.39.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7c12405f0f8596f5664ece772d53a957", "sha256": "67d5168bb2fcdb3bf0835bfa1941cdc367480f05faeb113a0778962b4efa2527" }, "downloads": -1, "filename": "aws-cdk.core-0.39.0.tar.gz", "has_sig": false, "md5_digest": "7c12405f0f8596f5664ece772d53a957", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 515764, "upload_time": "2019-07-09T00:46:25", "url": "https://files.pythonhosted.org/packages/f9/06/953f5bab3da1656d59c718e9e37e8341d683e5cd55b885cb3b4e550b5db8/aws-cdk.core-0.39.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "f699e2f8760e9a049f55217b4b6e357c", "sha256": "6305e9e6fa0b524fef65b241efaccb5d1d4dbc86b60912e1e50b6c2633578c79" }, "downloads": -1, "filename": "aws_cdk.core-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f699e2f8760e9a049f55217b4b6e357c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 508429, "upload_time": "2019-07-11T15:20:13", "url": "https://files.pythonhosted.org/packages/60/99/6b1bc6e1059d0d97050550cfb7aee7ca154cf69ef4afd85e516340b8fd6d/aws_cdk.core-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8bb56b46d68bdfdce4285043e470c9c8", "sha256": "ff50dc8639147dfb0e32f7c42d1e9c6ba8678a0d8f346c6bb5ca883691e71ea1" }, "downloads": -1, "filename": "aws-cdk.core-1.0.0.tar.gz", "has_sig": false, "md5_digest": "8bb56b46d68bdfdce4285043e470c9c8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 511839, "upload_time": "2019-07-11T15:22:53", "url": "https://files.pythonhosted.org/packages/a4/4e/9d58952af23a8be543279871cd97baa402432d859635864a4c00a3c17b0b/aws-cdk.core-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "420e0b8c25ad79b6c3eab7fd6b5ab6bc", "sha256": "19f4077ff95b064fbe586654456eb097663077b3e5707943b6b96275e3bb3044" }, "downloads": -1, "filename": "aws_cdk.core-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "420e0b8c25ad79b6c3eab7fd6b5ab6bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 508448, "upload_time": "2019-07-19T21:25:43", "url": "https://files.pythonhosted.org/packages/1c/3f/228d5ccb2043ad0c612fecdd970ab20a708fbaa56828e98da05f28782ca5/aws_cdk.core-1.1.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "417be59342485c4d3bb4af326f50a8ea", "sha256": "998b5757c2a495bf387e6c485d7cf78c5cf1e8a716745cf920f1eebb0b483f42" }, "downloads": -1, "filename": "aws-cdk.core-1.1.0.tar.gz", "has_sig": false, "md5_digest": "417be59342485c4d3bb4af326f50a8ea", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 511857, "upload_time": "2019-07-19T21:28:06", "url": "https://files.pythonhosted.org/packages/23/63/0c9b88976e7ab59828b4b4bc08a8be085db1619db26c15ab6393d3e9d15f/aws-cdk.core-1.1.0.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "9300cf50aa3808595772b7590a486cf5", "sha256": "3766b3653efa9373348eb8294c667a75f09026206c535ff2e81861d5cc1614a8" }, "downloads": -1, "filename": "aws_cdk.core-1.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9300cf50aa3808595772b7590a486cf5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 546659, "upload_time": "2019-09-30T09:21:19", "url": "https://files.pythonhosted.org/packages/aa/89/aa16b9f7023fade65d12b2fb73f5d6806e83e907a623103cbf852f7edfc3/aws_cdk.core-1.10.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20a191e21d38780095d5e5d4ec69ec48", "sha256": "89c8149581022b445019e73836678f98c2fce9869b2a207d268eb042dc4de11c" }, "downloads": -1, "filename": "aws-cdk.core-1.10.0.tar.gz", "has_sig": false, "md5_digest": "20a191e21d38780095d5e5d4ec69ec48", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 554570, "upload_time": "2019-09-30T09:24:26", "url": "https://files.pythonhosted.org/packages/73/87/514cb1addbe40d66245c925596e6aa3b6eb5479ef7078dd55bb11dfb8017/aws-cdk.core-1.10.0.tar.gz" } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "c4d98995238c4e556c9785e7b72d60f5", "sha256": "ba68fb9f9fc240664b8057c57a20fcbe7d4be379e30e0ef750ebdff0a6baf356" }, "downloads": -1, "filename": "aws_cdk.core-1.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c4d98995238c4e556c9785e7b72d60f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 546658, "upload_time": "2019-10-01T15:38:45", "url": "https://files.pythonhosted.org/packages/54/62/f0a76000488c7405d9cb1ebf1d8426f776f46bf5692e51213a34f1bf2be5/aws_cdk.core-1.10.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c4f12acbce4245134962ae425b8529af", "sha256": "66cffb88262aabe29422f038336efa9d59416cf2d7c827fb288b1d4109b35ed7" }, "downloads": -1, "filename": "aws-cdk.core-1.10.1.tar.gz", "has_sig": false, "md5_digest": "c4f12acbce4245134962ae425b8529af", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 554578, "upload_time": "2019-10-01T15:41:54", "url": "https://files.pythonhosted.org/packages/cc/f5/03e4863ceabfedad2b976ab792e4cb6176e6e3f44e467e862f48bc29fa4f/aws-cdk.core-1.10.1.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "78e0091a936889eec75c31fe59ffb3d4", "sha256": "2855c8a87969d5fc5a2cc5b49871662ca9d85c1724ca6336659940b11955e893" }, "downloads": -1, "filename": "aws_cdk.core-1.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "78e0091a936889eec75c31fe59ffb3d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 546662, "upload_time": "2019-10-02T19:10:53", "url": "https://files.pythonhosted.org/packages/a3/bc/f14ca301f39d7529cca8c4a03e0d7055b05d1115a426f84eb709b4ac0cf3/aws_cdk.core-1.11.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c10a38f3bbd30aa92ce75d838f84a81", "sha256": "fa571ab16eca2ead0c7656d4e6dbfb4cf4ea40bafef37972b1facc08b39545c0" }, "downloads": -1, "filename": "aws-cdk.core-1.11.0.tar.gz", "has_sig": false, "md5_digest": "1c10a38f3bbd30aa92ce75d838f84a81", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 554553, "upload_time": "2019-10-02T19:14:00", "url": "https://files.pythonhosted.org/packages/ad/19/5d8a958d799750e50bde19c9d55e3218607362b80162abef517d1392d1d4/aws-cdk.core-1.11.0.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "ead1e715167eba322d7ce123d9cc7d60", "sha256": "28fac77eeabf6f3f549d34fbdcd1d7715d49f39db05ea883eb3ebbfb151eec6a" }, "downloads": -1, "filename": "aws_cdk.core-1.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ead1e715167eba322d7ce123d9cc7d60", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 561244, "upload_time": "2019-10-07T16:23:17", "url": "https://files.pythonhosted.org/packages/86/4e/1fac5e2d6a7c6b74901289bf4d9a1566eb3254191385504591599d2593d0/aws_cdk.core-1.12.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "78af036fc4d56d02dffc0b079b83b570", "sha256": "3ee934c95262f22df8c903790aa0fe75640a0d41262feee50a452a367aea611b" }, "downloads": -1, "filename": "aws-cdk.core-1.12.0.tar.gz", "has_sig": false, "md5_digest": "78af036fc4d56d02dffc0b079b83b570", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 568795, "upload_time": "2019-10-07T16:26:26", "url": "https://files.pythonhosted.org/packages/a0/c0/b5cb0234af2315668bad706b1aec8ce82cd0988727bedf396b28b2131aac/aws-cdk.core-1.12.0.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "bbf42a01d3eab6ef8a9413a3c8e522cc", "sha256": "ece9e5c16541f0965067c4c55bc0d65984cf1b39012b436f07f8613c9e92ac74" }, "downloads": -1, "filename": "aws_cdk.core-1.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bbf42a01d3eab6ef8a9413a3c8e522cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 563602, "upload_time": "2019-10-15T13:18:27", "url": "https://files.pythonhosted.org/packages/06/ed/0b68d336e2cec745aaf033447320a94cf2d1355525e2af42ae0bb5899bf2/aws_cdk.core-1.13.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1223d222e18593c8133b6320fd9ff9f", "sha256": "17e52066b64565d59d138e72f19fe5d6272dfc0fe3ba9968ecf44d6579482ff0" }, "downloads": -1, "filename": "aws-cdk.core-1.13.0.tar.gz", "has_sig": false, "md5_digest": "d1223d222e18593c8133b6320fd9ff9f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 571024, "upload_time": "2019-10-15T13:22:06", "url": "https://files.pythonhosted.org/packages/2d/74/cdaaee2c7a3849115e4ef9e10d1e29ce80b5b2746ea93151dcacda568ee0/aws-cdk.core-1.13.0.tar.gz" } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "d0754f8a0ee978c5b7a57b8a6708b6ec", "sha256": "aff9b7aeaacad2d126dd9a49d046b4c631a8c53d6542cdfa628b684ed72b42ed" }, "downloads": -1, "filename": "aws_cdk.core-1.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d0754f8a0ee978c5b7a57b8a6708b6ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 563606, "upload_time": "2019-10-15T20:44:15", "url": "https://files.pythonhosted.org/packages/f6/ed/c881564b87f3f5e08b712f5268e1479b809f79e34f14ce0737b6e63aefbf/aws_cdk.core-1.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc16da259cadeff678347fcd0668acbb", "sha256": "371f2bd6fc452970a91ee7be2415b162bddc6e13e4318cff5e9da8334f1c0428" }, "downloads": -1, "filename": "aws-cdk.core-1.13.1.tar.gz", "has_sig": false, "md5_digest": "cc16da259cadeff678347fcd0668acbb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 571007, "upload_time": "2019-10-15T20:47:41", "url": "https://files.pythonhosted.org/packages/dd/56/5872de62890899f742e3b228fd8fe3f1ca3cfa4b2027b5326b096f46a0a4/aws-cdk.core-1.13.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "997658fd392df8cb1aaa00ad19cc56b5", "sha256": "f9e42c2c6e39ea610ac4e495c3e73b3e90ba9d00105d990a8190a6ab65c3e389" }, "downloads": -1, "filename": "aws_cdk.core-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "997658fd392df8cb1aaa00ad19cc56b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 509347, "upload_time": "2019-07-25T17:50:14", "url": "https://files.pythonhosted.org/packages/0b/e0/df9912eec59864ad727b88df5a7caa47d4fa98d0d4d84cdef020d441efb6/aws_cdk.core-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "09ec0766bc1c1193b5fc2eb1785ff03e", "sha256": "ff2faa38f22457aad5b12ff901dabfe20acc206f9628244a1691acc02cbdaba8" }, "downloads": -1, "filename": "aws-cdk.core-1.2.0.tar.gz", "has_sig": false, "md5_digest": "09ec0766bc1c1193b5fc2eb1785ff03e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 513211, "upload_time": "2019-07-25T17:52:39", "url": "https://files.pythonhosted.org/packages/e7/75/ac6f4ed5ffb0411360f032dfea5ddabfc612e8f0600a50433c8ad537374f/aws-cdk.core-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "4f3b24ebb31b82877125ea6ecb781cb2", "sha256": "0453fa0990c7f8f88bd984e74a4c4ab241f31fa375e8c723f1b928cf57816bd3" }, "downloads": -1, "filename": "aws_cdk.core-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4f3b24ebb31b82877125ea6ecb781cb2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 513021, "upload_time": "2019-08-02T11:16:28", "url": "https://files.pythonhosted.org/packages/f1/4b/4e4a421048e4c14cfc347f7745cc2882ecd80e16d9467977d8dcad1fa80d/aws_cdk.core-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b0bf308aa5472cf69a87a00c135dd7a3", "sha256": "e3cb7e3a5e8799e37b4ba3fdfc713b2511a8d66b93afd03fd41f876e218f533b" }, "downloads": -1, "filename": "aws-cdk.core-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b0bf308aa5472cf69a87a00c135dd7a3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 520988, "upload_time": "2019-08-02T11:18:58", "url": "https://files.pythonhosted.org/packages/5a/a6/6eebef48e84c1935e015f2c13e080d63d38e88f2b9416ecd66fe1ef398f4/aws-cdk.core-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "22c6bcf7a1401902d05f2fd478a666f1", "sha256": "95b22f49faa4c05b48e025adce052f9e63dd75553b6c0a9399601673cfe9abb0" }, "downloads": -1, "filename": "aws_cdk.core-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "22c6bcf7a1401902d05f2fd478a666f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 536864, "upload_time": "2019-08-14T08:20:35", "url": "https://files.pythonhosted.org/packages/7f/8b/d17631575c9181db496d1dba6241d6f01022bd97bffd7152a6c5d98e4d70/aws_cdk.core-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6045df8bf7b581e16e038b3a5db11aca", "sha256": "2acec63222f0f7ed2913d5f55cf005354177521478e3f33fbfe293fc0d9f8f6c" }, "downloads": -1, "filename": "aws-cdk.core-1.4.0.tar.gz", "has_sig": false, "md5_digest": "6045df8bf7b581e16e038b3a5db11aca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 544307, "upload_time": "2019-08-14T16:34:07", "url": "https://files.pythonhosted.org/packages/24/1d/67a67d5e1a49a9aef52d4f4b9190c515de1fabe3c137d9b4f8c8f9db097a/aws-cdk.core-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "1a1ecce116c848b21f8ae1a6cba1cd3e", "sha256": "a2d4817b8cf85805f1c09867856a617c28b807af1b7e7af88875a05f4ee50e3e" }, "downloads": -1, "filename": "aws_cdk.core-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1a1ecce116c848b21f8ae1a6cba1cd3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 536847, "upload_time": "2019-08-21T11:34:28", "url": "https://files.pythonhosted.org/packages/02/a2/f223c89bd1f2ec11bbdf1d377386b7075bc2d01dab0d1d87923ca364bbdd/aws_cdk.core-1.5.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69fc202f19d1639943f143d8307d5072", "sha256": "5a9996884a3ab1b62c1f9b56caa4735909bbe58921f9d87ae120b19e0aa39df4" }, "downloads": -1, "filename": "aws-cdk.core-1.5.0.tar.gz", "has_sig": false, "md5_digest": "69fc202f19d1639943f143d8307d5072", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 544326, "upload_time": "2019-08-21T11:37:05", "url": "https://files.pythonhosted.org/packages/69/53/d217da9fd81911a8e7ff35414fdffe4efc9adde5237562c4f1eac8817a60/aws-cdk.core-1.5.0.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "571f7f311bb918bf3a2972134091859c", "sha256": "ddcf0651efd51490d51290965e1fefeeb934bb39656235a6842679018e7c55f8" }, "downloads": -1, "filename": "aws_cdk.core-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "571f7f311bb918bf3a2972134091859c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 538571, "upload_time": "2019-08-27T18:13:16", "url": "https://files.pythonhosted.org/packages/54/99/8d159ee4d6b143a93b04b02e5bee28d327534fc8431143aaf6462b602487/aws_cdk.core-1.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa8f62508a1492ed5ac39ba3888b5320", "sha256": "3114ac3e268b434ac7d698f71eeb70223ff4a0ce1fcedf84d7955c127239013e" }, "downloads": -1, "filename": "aws-cdk.core-1.6.0.tar.gz", "has_sig": false, "md5_digest": "aa8f62508a1492ed5ac39ba3888b5320", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 546198, "upload_time": "2019-08-27T18:15:57", "url": "https://files.pythonhosted.org/packages/7a/b8/be5d6f13fec409c1b18e33469fdd7f8b2308077e6f5942adf48f6e76293e/aws-cdk.core-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "f2972069c58700cc195f63d92157e783", "sha256": "204ba93e3fc039409b726e353701a2db7bddb2e96051eca708014562cbe03024" }, "downloads": -1, "filename": "aws_cdk.core-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f2972069c58700cc195f63d92157e783", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 538573, "upload_time": "2019-08-29T14:38:20", "url": "https://files.pythonhosted.org/packages/fb/ff/13e356ab4f2b142a580e642fd8ac3b86e0ba0c28f20aca3f50f7ddcc740e/aws_cdk.core-1.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "773d27355a96e8732591c227784d4c6a", "sha256": "65ff263513d80d83ecd55fef07805e6d0c42e17a2a9db005a9443ed2662d4b88" }, "downloads": -1, "filename": "aws-cdk.core-1.6.1.tar.gz", "has_sig": false, "md5_digest": "773d27355a96e8732591c227784d4c6a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 546191, "upload_time": "2019-08-29T14:41:05", "url": "https://files.pythonhosted.org/packages/ab/e6/aae034d5abca6636945ad53ca6127bf5955e0d471d9df15062906ff92e8e/aws-cdk.core-1.6.1.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "86fb0d1bddeaa1b909043f9245b9ba67", "sha256": "97b2416ed24bdb67a825e9c2a8e487df868cf80039a26e450d3a20a19f13e14a" }, "downloads": -1, "filename": "aws_cdk.core-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "86fb0d1bddeaa1b909043f9245b9ba67", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 538605, "upload_time": "2019-09-06T01:57:05", "url": "https://files.pythonhosted.org/packages/64/7a/48521e81ccade003fd4dfc5cc849e4d1af267bfec7c98c58c116542f0d92/aws_cdk.core-1.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fcbd935265a2300ec6f774ce25482bb6", "sha256": "1c17e7abc5b01e54d9c370004812052b7bf43e87cf81121e9a2a1d8a367a1116" }, "downloads": -1, "filename": "aws-cdk.core-1.7.0.tar.gz", "has_sig": false, "md5_digest": "fcbd935265a2300ec6f774ce25482bb6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 546228, "upload_time": "2019-09-06T01:59:46", "url": "https://files.pythonhosted.org/packages/ef/39/9f2cb3f89a400a1c564b663735adeb6554550f3d6fd4157a2263372bac27/aws-cdk.core-1.7.0.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "2b4d7bbe185874b2fac4df18afa45c0a", "sha256": "bd6f369b36b465538221946c891c931107db38415bc4e1fa38b51272dbbb815e" }, "downloads": -1, "filename": "aws_cdk.core-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2b4d7bbe185874b2fac4df18afa45c0a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 538605, "upload_time": "2019-09-10T22:12:27", "url": "https://files.pythonhosted.org/packages/fc/d9/90d473fb4c59f61c0aa456464350381faf8c45411f0028d3295b24dd2092/aws_cdk.core-1.8.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e24f426f409c8493149b7bc4ba4b1abd", "sha256": "9e09781b3b6fb40725e10a1945a177c1791cc6a7cbc24bec328969a11b5ccec0" }, "downloads": -1, "filename": "aws-cdk.core-1.8.0.tar.gz", "has_sig": false, "md5_digest": "e24f426f409c8493149b7bc4ba4b1abd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 546252, "upload_time": "2019-09-10T22:15:20", "url": "https://files.pythonhosted.org/packages/81/c1/d19e69337a7286413e1e050892fd63cf1d78d424916fb18e63af12308192/aws-cdk.core-1.8.0.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "1b28c935fad6cb608b8f589fc09d28f7", "sha256": "84d3f644247b7f6502ba0237b25e7c6ef958d528335c0d97c05ca61d5484b08b" }, "downloads": -1, "filename": "aws_cdk.core-1.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1b28c935fad6cb608b8f589fc09d28f7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 539754, "upload_time": "2019-09-20T10:48:52", "url": "https://files.pythonhosted.org/packages/a7/04/647c997404a1d15c86122c0f7efc896c3ef7a773282c9d3c28800823d319/aws_cdk.core-1.9.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df12f8a03661da0c9f574e7dc6ebed6e", "sha256": "85ac58ceea83f97a7f102038227ecbe41ab1bffa4e041ef3ae93d55e4186438d" }, "downloads": -1, "filename": "aws-cdk.core-1.9.0.tar.gz", "has_sig": false, "md5_digest": "df12f8a03661da0c9f574e7dc6ebed6e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 547430, "upload_time": "2019-09-20T10:51:49", "url": "https://files.pythonhosted.org/packages/ff/a4/3c4924df8625594f3826486e7919489b04aded41bb0e6e02482ac0309e97/aws-cdk.core-1.9.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d0754f8a0ee978c5b7a57b8a6708b6ec", "sha256": "aff9b7aeaacad2d126dd9a49d046b4c631a8c53d6542cdfa628b684ed72b42ed" }, "downloads": -1, "filename": "aws_cdk.core-1.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d0754f8a0ee978c5b7a57b8a6708b6ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 563606, "upload_time": "2019-10-15T20:44:15", "url": "https://files.pythonhosted.org/packages/f6/ed/c881564b87f3f5e08b712f5268e1479b809f79e34f14ce0737b6e63aefbf/aws_cdk.core-1.13.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cc16da259cadeff678347fcd0668acbb", "sha256": "371f2bd6fc452970a91ee7be2415b162bddc6e13e4318cff5e9da8334f1c0428" }, "downloads": -1, "filename": "aws-cdk.core-1.13.1.tar.gz", "has_sig": false, "md5_digest": "cc16da259cadeff678347fcd0668acbb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 571007, "upload_time": "2019-10-15T20:47:41", "url": "https://files.pythonhosted.org/packages/dd/56/5872de62890899f742e3b228fd8fe3f1ca3cfa4b2027b5326b096f46a0a4/aws-cdk.core-1.13.1.tar.gz" } ] }