{ "info": { "author": "Amazon Web Services", "author_email": "", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: AWS CDK", "Framework :: AWS CDK :: 1", "Intended Audience :: Developers", "License :: OSI Approved", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Typing :: Typed" ], "description": "# AWS CDK Custom Resources\n\n---\n\n\n![cdk-constructs: Stable](https://img.shields.io/badge/cdk--constructs-stable-success.svg?style=for-the-badge)\n\n---\n\n\n## Provider Framework\n\nAWS CloudFormation [custom resources](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-custom-resources.html) are extension points to the provisioning\nengine. When CloudFormation needs to create, update or delete a custom resource,\nit sends a lifecycle event notification to a **custom resource provider**. The provider\nhandles the event (e.g. creates a resource) and sends back a response to CloudFormation.\n\nThe `@aws-cdk/custom-resources.Provider` construct is a \"mini-framework\" for\nimplementing providers for AWS CloudFormation custom resources. The framework offers a high-level API which makes it easier to implement robust\nand powerful custom resources and includes the following capabilities:\n\n* Handles responses to AWS CloudFormation and protects against blocked\n deployments\n* Validates handler return values to help with correct handler implementation\n* Supports asynchronous handlers to enable operations that require a long waiting period for a resource, which can exceed the AWS Lambda timeout\n* Implements default behavior for physical resource IDs.\n\nThe following code shows how the `Provider` construct is used in conjunction\nwith a `CustomResource` and a user-provided AWS Lambda function which implements\nthe actual handler.\n\n```python\n# on_event: lambda.Function\n# is_complete: lambda.Function\n# my_role: iam.Role\n\n\nmy_provider = cr.Provider(self, \"MyProvider\",\n on_event_handler=on_event,\n is_complete_handler=is_complete, # optional async \"waiter\"\n log_retention=logs.RetentionDays.ONE_DAY, # default is INFINITE\n role=my_role\n)\n\nCustomResource(self, \"Resource1\", service_token=my_provider.service_token)\nCustomResource(self, \"Resource2\", service_token=my_provider.service_token)\n```\n\nProviders are implemented through AWS Lambda functions that are triggered by the\nprovider framework in response to lifecycle events.\n\nAt the minimum, users must define the `onEvent` handler, which is invoked by the\nframework for all resource lifecycle events (`Create`, `Update` and `Delete`)\nand returns a result which is then submitted to CloudFormation.\n\nThe following example is a skeleton for a Python implementation of `onEvent`:\n\n```py\ndef on_event(event, context):\n print(event)\n request_type = event['RequestType']\n if request_type == 'Create': return on_create(event)\n if request_type == 'Update': return on_update(event)\n if request_type == 'Delete': return on_delete(event)\n raise Exception(\"Invalid request type: %s\" % request_type)\n\ndef on_create(event):\n props = event[\"ResourceProperties\"]\n print(\"create new resource with props %s\" % props)\n\n # add your create code here...\n physical_id = ...\n\n return { 'PhysicalResourceId': physical_id }\n\ndef on_update(event):\n physical_id = event[\"PhysicalResourceId\"]\n props = event[\"ResourceProperties\"]\n print(\"update resource %s with props %s\" % (physical_id, props))\n # ...\n\ndef on_delete(event):\n physical_id = event[\"PhysicalResourceId\"]\n print(\"delete resource %s\" % physical_id)\n # ...\n```\n\nUsers may also provide an additional handler called `isComplete`, for cases\nwhere the lifecycle operation cannot be completed immediately. The\n`isComplete` handler will be retried asynchronously after `onEvent` until it\nreturns `IsComplete: true`, or until the total provider timeout has expired.\n\nThe following example is a skeleton for a Python implementation of `isComplete`:\n\n```py\ndef is_complete(event, context):\n physical_id = event[\"PhysicalResourceId\"]\n request_type = event[\"RequestType\"]\n\n # check if resource is stable based on request_type\n is_ready = ...\n\n return { 'IsComplete': is_ready }\n```\n\n### Handling Lifecycle Events: onEvent\n\nThe user-defined `onEvent` AWS Lambda function is invoked whenever a resource\nlifecycle event occurs. The function is expected to handle the event and return\na response to the framework that, at least, includes the physical resource ID.\n\nIf `onEvent` returns successfully, the framework will submit a \"SUCCESS\" response\nto AWS CloudFormation for this resource operation. If the provider is\n[asynchronous](#asynchronous-providers-iscomplete) (`isCompleteHandler` is\ndefined), the framework will only submit a response based on the result of\n`isComplete`.\n\nIf `onEvent` throws an error, the framework will submit a \"FAILED\" response to\nAWS CloudFormation.\n\nThe input event includes the following fields derived from the [Custom Resource\nProvider Request]:\n\n|Field|Type|Description\n|-----|----|----------------\n|`RequestType`|String|The type of lifecycle event: `Create`, `Update` or `Delete`.\n|`LogicalResourceId`|String|The template developer-chosen name (logical ID) of the custom resource in the AWS CloudFormation template.\n|`PhysicalResourceId`|String|This field will only be present for `Update` and `Delete` events and includes the value returned in `PhysicalResourceId` of the previous operation.\n|`ResourceProperties`|JSON|This field contains the properties defined in the template for this custom resource.\n|`OldResourceProperties`|JSON|This field will only be present for `Update` events and contains the resource properties that were declared previous to the update request.\n|`ResourceType`|String|The resource type defined for this custom resource in the template. A provider may handle any number of custom resource types.\n|`RequestId`|String|A unique ID for the request.\n|`StackId`|String|The ARN that identifies the stack that contains the custom resource.\n\nThe return value from `onEvent` must be a JSON object with the following fields:\n\n|Field|Type|Required|Description\n|-----|----|--------|-----------\n|`PhysicalResourceId`|String|No|The allocated/assigned physical ID of the resource. If omitted for `Create` events, the event's `RequestId` will be used. For `Update`, the current physical ID will be used. If a different value is returned, CloudFormation will follow with a subsequent `Delete` for the previous ID (resource replacement). For `Delete`, it will always return the current physical resource ID, and if the user returns a different one, an error will occur.\n|`Data`|JSON|No|Resource attributes, which can later be retrieved through `Fn::GetAtt` on the custom resource object.\n|`NoEcho`|Boolean|No|Whether to mask the output of the custom resource when retrieved by using the `Fn::GetAtt` function.\n|*any*|*any*|No|Any other field included in the response will be passed through to `isComplete`. This can sometimes be useful to pass state between the handlers.\n\n### Asynchronous Providers: isComplete\n\nIt is not uncommon for the provisioning of resources to be an asynchronous\noperation, which means that the operation does not immediately finish, and we\nneed to \"wait\" until the resource stabilizes.\n\nThe provider framework makes it easy to implement \"waiters\" by allowing users to\nspecify an additional AWS Lambda function in `isCompleteHandler`.\n\nThe framework will repeatedly invoke the handler every `queryInterval`. When\n`isComplete` returns with `IsComplete: true`, the framework will submit a\n\"SUCCESS\" response to AWS CloudFormation. If `totalTimeout` expires and the\noperation has not yet completed, the framework will submit a \"FAILED\" response\nwith the message \"Operation timed out\".\n\nIf an error is thrown, the framework will submit a \"FAILED\" response to AWS\nCloudFormation.\n\nThe input event to `isComplete` includes all request fields, combined with all\nfields returned from `onEvent`. If `PhysicalResourceId` has not been explicitly\nreturned from `onEvent`, it's value will be calculated based on the heuristics\ndescribed above.\n\nThe return value must be a JSON object with the following fields:\n\n|Field|Type|Required|Description\n|-----|----|--------|-----------\n|`IsComplete`|Boolean|Yes|Indicates if the operation has finished or not.\n|`Data`|JSON|No|May only be sent if `IsComplete` is `true` and includes additional resource attributes. These attributes will be **merged** with the ones returned from `onEvent`\n\n### Physical Resource IDs\n\nEvery resource in CloudFormation has a physical resource ID. When a resource is\ncreated, the `PhysicalResourceId` returned from the `Create` operation is stored\nby AWS CloudFormation and assigned to the logical ID defined for this resource\nin the template. If a `Create` operation returns without a `PhysicalResourceId`,\nthe framework will use `RequestId` as the default. This is sufficient for\nvarious cases such as \"pseudo-resources\" which only query data.\n\nFor `Update` and `Delete` operations, the resource event will always include the\ncurrent `PhysicalResourceId` of the resource.\n\nWhen an `Update` operation occurs, the default behavior is to return the current\nphysical resource ID. if the `onEvent` returns a `PhysicalResourceId` which is\ndifferent from the current one, AWS CloudFormation will treat this as a\n**resource replacement**, and it will issue a subsequent `Delete` operation for\nthe old resource.\n\nAs a rule of thumb, if your custom resource supports configuring a physical name\n(e.g. you can specify a `BucketName` when you define an `AWS::S3::Bucket`), you\nmust return this name in `PhysicalResourceId` and make sure to handle\nreplacement properly. The `S3File` example demonstrates this\nthrough the `objectKey` property.\n\n### When there are errors\n\nAs mentioned above, if any of the user handlers fail (i.e. throws an exception)\nor times out (due to their AWS Lambda timing out), the framework will trap these\nerrors and submit a \"FAILED\" response to AWS CloudFormation, along with the error\nmessage.\n\nSince errors can occur in multiple places in the provider (framework, `onEvent`,\n`isComplete`), it is important to know that there could situations where a\nresource operation fails even though the operation technically succeeded (i.e.\nisComplete throws an error).\n\nWhen AWS CloudFormation receives a \"FAILED\" response, it will attempt to roll\nback the stack to it's last state. This has different meanings for different\nlifecycle events:\n\n* If a `Create` event fails, the resource provider framework will automatically\n ignore the subsequent `Delete` operation issued by AWS CloudFormation. The\n framework currently does not support customizing this behavior (see\n https://github.com/aws/aws-cdk/issues/5524).\n* If an `Update` event fails, CloudFormation will issue an additional `Update`\n with the previous properties.\n* If a `Delete` event fails, CloudFormation will abandon this resource.\n\n### Important cases to handle\n\nYou should keep the following list in mind when writing custom resources to\nmake sure your custom resource behaves correctly in all cases:\n\n* During `Create`:\n\n * If the create fails, the *provider framework* will make sure you\n don't get a subsequent `Delete` event. If your create involves multiple distinct\n operations, it is your responsibility to catch and rethrow and clean up\n any partial updates that have already been performed. Make sure your\n API call timeouts and Lambda timeouts allow for this.\n* During `Update`:\n\n * If the update fails, you will get a subsequent `Update` event\n to roll back to the previous state (with `ResourceProperties` and\n `OldResourceProperties` reversed).\n * If you return a different `PhysicalResourceId`, you will subsequently\n receive a `Delete` event to clean up the previous state of the resource.\n* During `Delete`:\n\n * If the behavior of your custom resource is tied to another AWS resource\n (for example, it exists to clean the contents of a stateful resource), keep\n in mind that your custom resource may be deleted independently of the other\n resource and you must confirm that it is appropriate to perform the action.\n * (only if you are *not* using the provider framework) a `Delete` event\n may be caused by a failed `Create`. You must be able to handle the case\n where the resource you are trying to delete hasn't even been created yet.\n* If you update the code of your custom resource and change the format of the\n resource properties, be aware that there may still be already-deployed\n instances of your custom resource out there, and you may still receive\n the *old* property format in `ResourceProperties` (during `Delete` and\n rollback `Updates`) or in `OldResourceProperties` (during rollforward\n `Update`). You must continue to handle all possible sets of properties\n your custom resource could have ever been created with in the past.\n\n### Provider Framework Execution Policy\n\nSimilarly to any AWS Lambda function, if the user-defined handlers require\naccess to AWS resources, you will have to define these permissions\nby calling \"grant\" methods such as `myBucket.grantRead(myHandler)`), using `myHandler.addToRolePolicy`\nor specifying an `initialPolicy` when defining the function.\n\nBear in mind that in most cases, a single provider will be used for multiple\nresource instances. This means that the execution policy of the provider must\nhave the appropriate privileges.\n\nThe following example grants the `onEvent` handler `s3:GetObject*` permissions\nto all buckets:\n\n```python\nlambda_.Function(self, \"OnEventHandler\",\n runtime=lambda_.Runtime.NODEJS_14_X,\n handler=\"index.handler\",\n code=lambda_.Code.from_inline(\"my code\"),\n initial_policy=[\n iam.PolicyStatement(actions=[\"s3:GetObject*\"], resources=[\"*\"])\n ]\n)\n```\n\n### Timeouts\n\nUsers are responsible to define the timeouts for the AWS Lambda functions for\nuser-defined handlers. It is recommended not to exceed a **14 minutes** timeout,\nsince all framework functions are configured to time out after 15 minutes, which\nis the maximal AWS Lambda timeout.\n\nIf your operation takes over **14 minutes**, the recommended approach is to\nimplement an [asynchronous provider](#asynchronous-providers-iscomplete), and\nthen configure the timeouts for the asynchronous retries through the\n`queryInterval` and the `totalTimeout` options.\n\n### Provider Framework Examples\n\nThis module includes a few examples for custom resource implementations:\n\n#### S3File\n\nProvisions an object in an S3 bucket with textual contents. See the source code\nfor the\n[construct](https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/custom-resources/test/provider-framework/integration-test-fixtures/s3-file.ts) and\n[handler](https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/custom-resources/test/provider-framework/integration-test-fixtures/s3-file-handler/index.ts).\n\nThe following example will create the file `folder/file1.txt` inside `myBucket`\nwith the contents `hello!`.\n\n```plaintext\n// This example exists only for TypeScript\n\ndeclare const myBucket: s3.Bucket;\nnew cr.S3File(this, 'MyFile', {\n bucket: myBucket,\n objectKey: 'folder/file1.txt', // optional\n content: 'hello!',\n public: true, // optional\n});\n```\n\nThis sample demonstrates the following concepts:\n\n* Synchronous implementation (`isComplete` is not defined)\n* Automatically generates the physical name if `objectKey` is not defined\n* Handles physical name changes\n* Returns resource attributes\n* Handles deletions\n* Implemented in TypeScript\n\n#### S3Assert\n\nChecks that the textual contents of an S3 object matches a certain value. The check will be retried for 5 minutes as long as the object is not found or the value is different. See the source code for the [construct](test/provider-framework/integration-test-fixtures/s3-assert.ts) and [handler](test/provider-framework/integration-test-fixtures/s3-assert-handler/index.py).\n\nThe following example defines an `S3Assert` resource which waits until\n`myfile.txt` in `myBucket` exists and includes the contents `foo bar`:\n\n```plaintext\n// This example exists only for TypeScript\n\ndeclare const myBucket: s3.Bucket;\nnew cr.S3Assert(this, 'AssertMyFile', {\n bucket: myBucket,\n objectKey: 'myfile.txt',\n expectedContent: 'foo bar',\n});\n```\n\nThis sample demonstrates the following concepts:\n\n* Asynchronous implementation\n* Non-intrinsic physical IDs\n* Implemented in Python\n\n### Customizing Provider Function name\n\nIn multi-account environments or when the custom resource may be re-utilized across several\nstacks it may be useful to manually set a name for the Provider Function Lambda and therefore\nhave a predefined service token ARN.\n\n```python\n# on_event: lambda.Function\n# is_complete: lambda.Function\n# my_role: iam.Role\n\nmy_provider = cr.Provider(self, \"MyProvider\",\n on_event_handler=on_event,\n is_complete_handler=is_complete,\n log_retention=logs.RetentionDays.ONE_DAY,\n role=my_role,\n provider_function_name=\"the-lambda-name\"\n)\n```\n\n## Custom Resources for AWS APIs\n\nSometimes a single API call can fill the gap in the CloudFormation coverage. In\nthis case you can use the `AwsCustomResource` construct. This construct creates\na custom resource that can be customized to make specific API calls for the\n`CREATE`, `UPDATE` and `DELETE` events. Additionally, data returned by the API\ncall can be extracted and used in other constructs/resources (creating a real\nCloudFormation dependency using `Fn::GetAtt` under the hood).\n\nThe physical id of the custom resource can be specified or derived from the data\nreturned by the API call.\n\nThe `AwsCustomResource` uses the AWS SDK for JavaScript. Services, actions and\nparameters can be found in the [API documentation](https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/index.html).\n\nPath to data must be specified using a dot notation, e.g. to get the string value\nof the `Title` attribute for the first item returned by `dynamodb.query` it should\nbe `Items.0.Title.S`.\n\nTo make sure that the newest API calls are available the latest AWS SDK v2 is installed\nin the Lambda function implementing the custom resource. The installation takes around 60\nseconds. If you prefer to optimize for speed, you can disable the installation by setting\nthe `installLatestAwsSdk` prop to `false`.\n\n### Custom Resource Execution Policy\n\nYou must provide the `policy` property defining the IAM Policy that will be applied to the API calls.\nThe library provides two factory methods to quickly configure this:\n\n* **`AwsCustomResourcePolicy.fromSdkCalls`** - Use this to auto-generate IAM\n Policy statements based on the configured SDK calls. Keep two things in mind\n when using this policy:\n\n * This policy variant assumes the IAM policy name has the same name as the API\n call. This is true in 99% of cases, but there are exceptions (for example,\n S3's `PutBucketLifecycleConfiguration` requires\n `s3:PutLifecycleConfiguration` permissions, Lambda's `Invoke` requires\n `lambda:InvokeFunction` permissions). Use `fromStatements` if you want to\n do a call that requires different IAM action names.\n * You will have to either provide specific ARNs, or explicitly use\n `AwsCustomResourcePolicy.ANY_RESOURCE` to allow access to any resource.\n* **`AwsCustomResourcePolicy.fromStatements`** - Use this to specify your own\n custom statements.\n\nThe custom resource also implements `iam.IGrantable`, making it possible to use the `grantXxx()` methods.\n\nAs this custom resource uses a singleton Lambda function, it's important to note\nthat the function's role will eventually accumulate the permissions/grants from all\nresources.\n\nChained API calls can be achieved by creating dependencies:\n\n```python\naws_custom1 = cr.AwsCustomResource(self, \"API1\",\n on_create=cr.AwsSdkCall(\n service=\"...\",\n action=\"...\",\n physical_resource_id=cr.PhysicalResourceId.of(\"...\")\n ),\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n\naws_custom2 = cr.AwsCustomResource(self, \"API2\",\n on_create=cr.AwsSdkCall(\n service=\"...\",\n action=\"...\",\n parameters={\n \"text\": aws_custom1.get_response_field(\"Items.0.text\")\n },\n physical_resource_id=cr.PhysicalResourceId.of(\"...\")\n ),\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n```\n\n### Physical Resource Id Parameter\n\nSome AWS APIs may require passing the physical resource id in as a parameter for doing updates and deletes. You can pass it by using `PhysicalResourceIdReference`.\n\n```python\naws_custom = cr.AwsCustomResource(self, \"aws-custom\",\n on_create=cr.AwsSdkCall(\n service=\"...\",\n action=\"...\",\n parameters={\n \"text\": \"...\"\n },\n physical_resource_id=cr.PhysicalResourceId.of(\"...\")\n ),\n on_update=cr.AwsSdkCall(\n service=\"...\",\n action=\"...\",\n parameters={\n \"text\": \"...\",\n \"resource_id\": cr.PhysicalResourceIdReference()\n }\n ),\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n```\n\n### Handling Custom Resource Errors\n\nEvery error produced by the API call is treated as is and will cause a \"FAILED\" response to be submitted to CloudFormation.\nYou can ignore some errors by specifying the `ignoreErrorCodesMatching` property, which accepts a regular expression that is\ntested against the `code` property of the response. If matched, a \"SUCCESS\" response is submitted.\nNote that in such a case, the call response data and the `Data` key submitted to CloudFormation would both be an empty JSON object.\nSince a successful resource provisioning might or might not produce outputs, this presents us with some limitations:\n\n* `PhysicalResourceId.fromResponse` - Since the call response data might be empty, we cannot use it to extract the physical id.\n* `getResponseField` and `getResponseFieldReference` - Since the `Data` key is empty, the resource will not have any attributes, and therefore, invoking these functions will result in an error.\n\nIn both the cases, you will get a synth time error if you attempt to use it in conjunction with `ignoreErrorCodesMatching`.\n\n### Customizing the Lambda function implementing the custom resource\n\nUse the `role`, `timeout`, `logRetention` and `functionName` properties to customize\nthe Lambda function implementing the custom resource:\n\n```python\n# my_role: iam.Role\n\ncr.AwsCustomResource(self, \"Customized\",\n role=my_role, # must be assumable by the `lambda.amazonaws.com` service principal\n timeout=Duration.minutes(10), # defaults to 2 minutes\n log_retention=logs.RetentionDays.ONE_WEEK, # defaults to never delete logs\n function_name=\"my-custom-name\", # defaults to a CloudFormation generated name\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n```\n\n### Restricting the output of the Custom Resource\n\nCloudFormation imposes a hard limit of 4096 bytes for custom resources response\nobjects. If your API call returns an object that exceeds this limit, you can restrict\nthe data returned by the custom resource to specific paths in the API response:\n\n```python\ncr.AwsCustomResource(self, \"ListObjects\",\n on_create=cr.AwsSdkCall(\n service=\"s3\",\n action=\"listObjectsV2\",\n parameters={\n \"Bucket\": \"my-bucket\"\n },\n physical_resource_id=cr.PhysicalResourceId.of(\"id\"),\n output_paths=[\"Contents.0.Key\", \"Contents.1.Key\"]\n ),\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n```\n\nNote that even if you restrict the output of your custom resource you can still use any\npath in `PhysicalResourceId.fromResponse()`.\n\n### Custom Resource Examples\n\n#### Verify a domain with SES\n\n```python\nimport aws_cdk.aws_route53 as route53\n\n# zone: route53.HostedZone\n\n\nverify_domain_identity = cr.AwsCustomResource(self, \"VerifyDomainIdentity\",\n on_create=cr.AwsSdkCall(\n service=\"SES\",\n action=\"verifyDomainIdentity\",\n parameters={\n \"Domain\": \"example.com\"\n },\n physical_resource_id=cr.PhysicalResourceId.from_response(\"VerificationToken\")\n ),\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\nroute53.TxtRecord(self, \"SESVerificationRecord\",\n zone=zone,\n record_name=\"_amazonses.example.com\",\n values=[verify_domain_identity.get_response_field(\"VerificationToken\")]\n)\n```\n\n#### Get the latest version of a secure SSM parameter\n\n```python\nget_parameter = cr.AwsCustomResource(self, \"GetParameter\",\n on_update=cr.AwsSdkCall( # will also be called for a CREATE event\n service=\"SSM\",\n action=\"getParameter\",\n parameters={\n \"Name\": \"my-parameter\",\n \"WithDecryption\": True\n },\n physical_resource_id=cr.PhysicalResourceId.of(Date.now().to_string())),\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n\n# Use the value in another construct with\nget_parameter.get_response_field(\"Parameter.Value\")\n```\n\n#### Associate a PrivateHostedZone with VPC shared from another account\n\n```python\nget_parameter = cr.AwsCustomResource(self, \"AssociateVPCWithHostedZone\",\n on_create=cr.AwsSdkCall(\n assumed_role_arn=\"arn:aws:iam::OTHERACCOUNT:role/CrossAccount/ManageHostedZoneConnections\",\n service=\"Route53\",\n action=\"associateVPCWithHostedZone\",\n parameters={\n \"HostedZoneId\": \"hz-123\",\n \"VPC\": {\n \"VPCId\": \"vpc-123\",\n \"VPCRegion\": \"region-for-vpc\"\n }\n },\n physical_resource_id=cr.PhysicalResourceId.of(\"${vpcStack.SharedVpc.VpcId}-${vpcStack.Region}-${PrivateHostedZone.HostedZoneId}\")\n ),\n # Will ignore any resource and use the assumedRoleArn as resource and 'sts:AssumeRole' for service:action\n policy=cr.AwsCustomResourcePolicy.from_sdk_calls(\n resources=cr.AwsCustomResourcePolicy.ANY_RESOURCE\n )\n)\n```\n\n---\n\n\nThis module is part of the [AWS Cloud Development Kit](https://github.com/aws/aws-cdk) project.\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": "Apache-2.0", "maintainer": "", "maintainer_email": "", "name": "aws-cdk.custom-resources", "package_url": "https://pypi.org/project/aws-cdk.custom-resources/", "platform": null, "project_url": "https://pypi.org/project/aws-cdk.custom-resources/", "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.custom-resources/1.156.1/", "requires_dist": [ "aws-cdk.aws-cloudformation (==1.156.1)", "aws-cdk.aws-ec2 (==1.156.1)", "aws-cdk.aws-iam (==1.156.1)", "aws-cdk.aws-lambda (==1.156.1)", "aws-cdk.aws-logs (==1.156.1)", "aws-cdk.aws-sns (==1.156.1)", "aws-cdk.core (==1.156.1)", "constructs (<4.0.0,>=3.3.69)", "jsii (<2.0.0,>=1.58.0)", "publication (>=0.0.3)" ], "requires_python": "~=3.7", "summary": "Constructs for implementing CDK custom resources", "version": "1.156.1", "yanked": false, "yanked_reason": null }, "last_serial": 13802637, "releases": { "0.36.0": [ { "comment_text": "", "digests": { "md5": "d1dfe5acf114004aa65d1f0e997b0f63", "sha256": "18e68e68bc1b31094d535808d15736488c186fe9cdef1dd719b82e5030726768" }, "downloads": -1, "filename": "aws_cdk.custom_resources-0.36.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d1dfe5acf114004aa65d1f0e997b0f63", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41059, "upload_time": "2019-06-25T15:07:34", "upload_time_iso_8601": "2019-06-25T15:07:34.620666Z", "url": "https://files.pythonhosted.org/packages/17/90/6d8ee288ea05d655787db569286e6fde97f0afe67a2e984ecfa4732cea00/aws_cdk.custom_resources-0.36.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61ba10779e20ab14c94d14081cfa26fe", "sha256": "6c1affef1bf1ee95dabafc1c82cb8fb06a452f112ec0261bfd5474931e8571c3" }, "downloads": -1, "filename": "aws-cdk.custom-resources-0.36.0.tar.gz", "has_sig": false, "md5_digest": "61ba10779e20ab14c94d14081cfa26fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 41929, "upload_time": "2019-06-25T15:09:56", "upload_time_iso_8601": "2019-06-25T15:09:56.841082Z", "url": "https://files.pythonhosted.org/packages/30/25/23c7ab8ec3c3aee129ff9d78642b9bc7ddaf842bb50d93975cde35f756a3/aws-cdk.custom-resources-0.36.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.36.1": [ { "comment_text": "", "digests": { "md5": "11faeb19cff7a50ea055e01604fb2bf2", "sha256": "826a2169ffe43c4e3473576498bd1353db2a904e517d3d16df98ee40ebed8c18" }, "downloads": -1, "filename": "aws_cdk.custom_resources-0.36.1-py3-none-any.whl", "has_sig": false, "md5_digest": "11faeb19cff7a50ea055e01604fb2bf2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41057, "upload_time": "2019-07-01T18:06:03", "upload_time_iso_8601": "2019-07-01T18:06:03.970589Z", "url": "https://files.pythonhosted.org/packages/0b/9a/1ba15367f11a60c2e0fd2647c56613932127c39a4d241b4ae54002d9c8c6/aws_cdk.custom_resources-0.36.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2291dea4643b9fc7289d8a0c5e1a1f9", "sha256": "dfa971c71ad57d596fc9e58a298a83b6534bc0406613335baba2fe326c2ea598" }, "downloads": -1, "filename": "aws-cdk.custom-resources-0.36.1.tar.gz", "has_sig": false, "md5_digest": "b2291dea4643b9fc7289d8a0c5e1a1f9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 41803, "upload_time": "2019-07-01T18:08:33", "upload_time_iso_8601": "2019-07-01T18:08:33.241756Z", "url": "https://files.pythonhosted.org/packages/f1/37/6baff1b6d6435dd2747813d256a9b897de00eb67eab4981d58a3bfdd557d/aws-cdk.custom-resources-0.36.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.36.2": [ { "comment_text": "", "digests": { "md5": "283821e4ab0a69160aa2ed7b21a1c0cc", "sha256": "78be04908afa8164679b0f2369107a7ba01cb85879283f73d4e87f48d3efa47a" }, "downloads": -1, "filename": "aws_cdk.custom_resources-0.36.2-py3-none-any.whl", "has_sig": false, "md5_digest": "283821e4ab0a69160aa2ed7b21a1c0cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41102, "upload_time": "2019-07-03T13:40:14", "upload_time_iso_8601": "2019-07-03T13:40:14.377206Z", "url": "https://files.pythonhosted.org/packages/e5/23/6465d12647f3abf3d23e3fcba9655311c60428e9fe9fc70a9788a7508a7c/aws_cdk.custom_resources-0.36.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a707626bdeea01cef652620a8d59aed1", "sha256": "523c10d25d1832e785f965983e59bec654361471f81fec18ea8a2bd73849bc10" }, "downloads": -1, "filename": "aws-cdk.custom-resources-0.36.2.tar.gz", "has_sig": false, "md5_digest": "a707626bdeea01cef652620a8d59aed1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 41825, "upload_time": "2019-07-03T13:42:32", "upload_time_iso_8601": "2019-07-03T13:42:32.491993Z", "url": "https://files.pythonhosted.org/packages/62/c8/3e48c4f1210677a5088e12b2c0dc708680b29b1b15788a489487dca16a2d/aws-cdk.custom-resources-0.36.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.37.0": [ { "comment_text": "", "digests": { "md5": "1ff47f95564dc97b9a9f7e9ea071702b", "sha256": "a67568484a2c6dc7fa42fba4baf4c0c04c5f161fd87c38222a1ae1df29df7f71" }, "downloads": -1, "filename": "aws_cdk.custom_resources-0.37.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1ff47f95564dc97b9a9f7e9ea071702b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41095, "upload_time": "2019-07-04T20:34:15", "upload_time_iso_8601": "2019-07-04T20:34:15.905235Z", "url": "https://files.pythonhosted.org/packages/df/1f/8404738d65515fd52c4c4a061924e425caab3d8fb2fa87051f9aa8a3be75/aws_cdk.custom_resources-0.37.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb5c46969f4e57061253de3fc0587b24", "sha256": "76361f37cfa799f09ecf91d42de3c5d8137b6a735d194d3b512973d6ea35d344" }, "downloads": -1, "filename": "aws-cdk.custom-resources-0.37.0.tar.gz", "has_sig": false, "md5_digest": "eb5c46969f4e57061253de3fc0587b24", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 41946, "upload_time": "2019-07-04T20:36:34", "upload_time_iso_8601": "2019-07-04T20:36:34.335969Z", "url": "https://files.pythonhosted.org/packages/85/75/f10b369cc377dfe875f66a6e3118ecb0dae59ba9bfd2cdd89318665c4e3c/aws-cdk.custom-resources-0.37.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.38.0": [ { "comment_text": "", "digests": { "md5": "26d3b587a25186f74107c725983ee3f6", "sha256": "21407261038554fbbef62099d131c7a027b20569c569e4ca5442b90303c6761f" }, "downloads": -1, "filename": "aws_cdk.custom_resources-0.38.0-py3-none-any.whl", "has_sig": false, "md5_digest": "26d3b587a25186f74107c725983ee3f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41740, "upload_time": "2019-07-08T14:15:09", "upload_time_iso_8601": "2019-07-08T14:15:09.629802Z", "url": "https://files.pythonhosted.org/packages/e2/e6/3140cc1129bc28ada7dedaf77b1a789c0cbd10dcd91fec79cad9c095d220/aws_cdk.custom_resources-0.38.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f352281e7e2362bab5787fda8ad83b32", "sha256": "ff132abcf88a99730eb8685623c6637d9392f02c84467a1c7b99e1e559ead12e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-0.38.0.tar.gz", "has_sig": false, "md5_digest": "f352281e7e2362bab5787fda8ad83b32", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 42507, "upload_time": "2019-07-08T14:17:32", "upload_time_iso_8601": "2019-07-08T14:17:32.319936Z", "url": "https://files.pythonhosted.org/packages/bd/a8/0e557052b98280672dfb36bf6379c8669f91de9a2b57d495b8b345533428/aws-cdk.custom-resources-0.38.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.39.0": [ { "comment_text": "", "digests": { "md5": "0c2160644f696fbb7aa49940751ff779", "sha256": "61ccab2dd56f4608b3371b849f98d11ed75161a837458b1a97d5c1f7079c1a1d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-0.39.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0c2160644f696fbb7aa49940751ff779", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41742, "upload_time": "2019-07-09T00:44:02", "upload_time_iso_8601": "2019-07-09T00:44:02.677556Z", "url": "https://files.pythonhosted.org/packages/b0/07/3d71925fa346126e996d9c7bc4f84a648e3ddc368a64ac6eb44c9ad54714/aws_cdk.custom_resources-0.39.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffc34e26bff2f230ed3a81f2be8f4801", "sha256": "85bac9f7f25f963ac66310d0d99ccb00e17294c8eda5e24074d22cd5461362ab" }, "downloads": -1, "filename": "aws-cdk.custom-resources-0.39.0.tar.gz", "has_sig": false, "md5_digest": "ffc34e26bff2f230ed3a81f2be8f4801", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 42527, "upload_time": "2019-07-09T00:46:27", "upload_time_iso_8601": "2019-07-09T00:46:27.285169Z", "url": "https://files.pythonhosted.org/packages/c1/e1/265a18d79aa838d1cbddb489511748b9cec0da6903f0b9affce4937aaf84/aws-cdk.custom-resources-0.39.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "62a5a6565916614fb99b86ac5225e5c9", "sha256": "e65842ce18fef95c6eef4fd499bd623852e34afbfa4d99ccf30df2a879bfe0a1" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "62a5a6565916614fb99b86ac5225e5c9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41729, "upload_time": "2019-07-11T15:20:15", "upload_time_iso_8601": "2019-07-11T15:20:15.290984Z", "url": "https://files.pythonhosted.org/packages/71/dd/1bc885571dff85378289c65408391f12a2e53254cc9529d885f964e28b42/aws_cdk.custom_resources-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "951b53bb6dbdbfa0ca9ec1e97faa7c44", "sha256": "40882d39a2d245cee1de5eb7f217bf3be6b7115dfd3d0d4c920f1a9fcf458562" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.0.0.tar.gz", "has_sig": false, "md5_digest": "951b53bb6dbdbfa0ca9ec1e97faa7c44", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 42511, "upload_time": "2019-07-11T15:22:54", "upload_time_iso_8601": "2019-07-11T15:22:54.506779Z", "url": "https://files.pythonhosted.org/packages/53/b6/9908df047c57c25d080cb138f9a387e05cb0a13e1eefda572bc0ea1724dd/aws-cdk.custom-resources-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "28ca8e9f4354ef80a364345fbd77b3b8", "sha256": "c5675420e8e92e9f0cb7ca76636624d290230c1ff530af5e3ba92bd666d34553" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "28ca8e9f4354ef80a364345fbd77b3b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41897, "upload_time": "2019-07-19T21:25:45", "upload_time_iso_8601": "2019-07-19T21:25:45.214786Z", "url": "https://files.pythonhosted.org/packages/be/21/6ae10855e0d7d3deb198283b0f8ad875376eb82207479873fd72e50c8fa5/aws_cdk.custom_resources-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8517fb8aa18dcb7dce65d95ebd483c5e", "sha256": "ad26f37b7aee527af44162a6a88712441d3eedb2158aef9fc8a426eb90aed07b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.1.0.tar.gz", "has_sig": false, "md5_digest": "8517fb8aa18dcb7dce65d95ebd483c5e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 42702, "upload_time": "2019-07-19T21:28:07", "upload_time_iso_8601": "2019-07-19T21:28:07.937061Z", "url": "https://files.pythonhosted.org/packages/de/cc/e3a398134e38f448f60ff122e6fdb2f21d3dc8b578316e717e726bbfcb4e/aws-cdk.custom-resources-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "8a25edf715f4c7683c3b37a9824faf4d", "sha256": "4b1a018854121c0501c57baabc41b635f1e50c8279d4530db7a18cab3df74ea8" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8a25edf715f4c7683c3b37a9824faf4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43993, "upload_time": "2019-09-30T09:21:21", "upload_time_iso_8601": "2019-09-30T09:21:21.320438Z", "url": "https://files.pythonhosted.org/packages/f2/89/a6ff1696454eac724616d3c25f2759f0ba24f06cea312a30736fb46f2a1b/aws_cdk.custom_resources-1.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b89d6082b45b25fc2b1aa44ba9213da0", "sha256": "daeff82b915f9f329d303ac51fbcf61e490380ed18067ba26baa57c970102663" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.10.0.tar.gz", "has_sig": false, "md5_digest": "b89d6082b45b25fc2b1aa44ba9213da0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 46590, "upload_time": "2019-09-30T09:24:28", "upload_time_iso_8601": "2019-09-30T09:24:28.352981Z", "url": "https://files.pythonhosted.org/packages/26/42/3e6baf2c5612e9da03b89fbf6a8449af6b58531a17707f0a1f807df8c4f8/aws-cdk.custom-resources-1.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.10.1": [ { "comment_text": "", "digests": { "md5": "5f9d9c75de7d8a041fed05864bd2231e", "sha256": "979729663c1f4e3bead65e908b7a95aa9c4b5984e584592f34a742524685b6a0" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.10.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5f9d9c75de7d8a041fed05864bd2231e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 44000, "upload_time": "2019-10-01T15:38:47", "upload_time_iso_8601": "2019-10-01T15:38:47.330782Z", "url": "https://files.pythonhosted.org/packages/e7/06/ba76facc5393452cd58980581149d8cc9216c0599eeb99c4130b33ffa74f/aws_cdk.custom_resources-1.10.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c073ab66538838dc35594befd607195", "sha256": "4e9464a5cc1a68389e4da10b46181a7b05e231fb93fef0b4d8eb0fc2f40699a8" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.10.1.tar.gz", "has_sig": false, "md5_digest": "2c073ab66538838dc35594befd607195", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 46568, "upload_time": "2019-10-01T15:41:56", "upload_time_iso_8601": "2019-10-01T15:41:56.536611Z", "url": "https://files.pythonhosted.org/packages/a1/ba/58e6a607c4d0c24745565958abfa022eb9ff6aaf64125e1380cacafdea66/aws-cdk.custom-resources-1.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.100.0": [ { "comment_text": "", "digests": { "md5": "37ed5ec38efd0bd7fdcf21d29563360a", "sha256": "2746ceb5b29a6c22fcdf8d91983cb821f15b22414a44b2d44465fcfa84dd0936" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.100.0-py3-none-any.whl", "has_sig": false, "md5_digest": "37ed5ec38efd0bd7fdcf21d29563360a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103883, "upload_time": "2021-04-20T18:00:56", "upload_time_iso_8601": "2021-04-20T18:00:56.418166Z", "url": "https://files.pythonhosted.org/packages/75/bc/33a71937e306d5b2ee756f68b51c0fc7e1bb2272e60e2f495bb3604ce7a9/aws_cdk.custom_resources-1.100.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b7c8628b33149a09cc4864fced699695", "sha256": "0d8e1075b91b8de1d5c493947c92f27d79abf0ed823966129d2b6a72cb4a102e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.100.0.tar.gz", "has_sig": false, "md5_digest": "b7c8628b33149a09cc4864fced699695", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 107246, "upload_time": "2021-04-20T18:03:56", "upload_time_iso_8601": "2021-04-20T18:03:56.515292Z", "url": "https://files.pythonhosted.org/packages/c2/b0/6999c115fe7aa6312d5870e743e7c6683a789168cbcbd12bc068d8f40a51/aws-cdk.custom-resources-1.100.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.101.0": [ { "comment_text": "", "digests": { "md5": "ef28fb6907adebcf701d4e18ad8aa20e", "sha256": "39f955fb91d4a86ec1ba0f5b241dc328f459358c59f35ad00f1dd155ad5d7433" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.101.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ef28fb6907adebcf701d4e18ad8aa20e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106130, "upload_time": "2021-04-28T12:29:16", "upload_time_iso_8601": "2021-04-28T12:29:16.842787Z", "url": "https://files.pythonhosted.org/packages/ed/0d/a2e0973bfb17f6fbb495f019c12da7632fac7c1fb591edc231ca5e12fc7b/aws_cdk.custom_resources-1.101.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2fefb293c0d26a1c057cd5914e59760", "sha256": "202b2332b5748e79b6e4935fd6363740ca0e6b34a1f03c096aae0bd73fbb809d" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.101.0.tar.gz", "has_sig": false, "md5_digest": "c2fefb293c0d26a1c057cd5914e59760", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 109721, "upload_time": "2021-04-28T12:32:18", "upload_time_iso_8601": "2021-04-28T12:32:18.069686Z", "url": "https://files.pythonhosted.org/packages/67/e4/152bd47330586684be6968a8907aa2b4de63d4ba3a64ec947e4a31f82ca7/aws-cdk.custom-resources-1.101.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.102.0": [ { "comment_text": "", "digests": { "md5": "127a7dc07ce0be94889ac07e1ad1ddd6", "sha256": "8965e75e173444527ed3dee288eae22d6b3b37a943ff646c853f4777195c35e9" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.102.0-py3-none-any.whl", "has_sig": false, "md5_digest": "127a7dc07ce0be94889ac07e1ad1ddd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106122, "upload_time": "2021-05-04T13:33:41", "upload_time_iso_8601": "2021-05-04T13:33:41.092672Z", "url": "https://files.pythonhosted.org/packages/d6/39/12aed4d8c2b73b122af8cae16bc42eb2423bf44de8b4a7a9f91bd042ee24/aws_cdk.custom_resources-1.102.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2e6b495b171883bfaf3ca3884ff68fe0", "sha256": "900730dee65bf35cd7191c2efea290a05fd251eacd1c6922fb2f66f7cfda4e91" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.102.0.tar.gz", "has_sig": false, "md5_digest": "2e6b495b171883bfaf3ca3884ff68fe0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 109726, "upload_time": "2021-05-04T13:37:09", "upload_time_iso_8601": "2021-05-04T13:37:09.522787Z", "url": "https://files.pythonhosted.org/packages/85/d6/76a8d4b1151df2330eb3322daed21e305830b84bc9eeed9f65c7259a1294/aws-cdk.custom-resources-1.102.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.103.0": [ { "comment_text": "", "digests": { "md5": "3dfbef0fe9eb7a966646d31bd1259de6", "sha256": "0e1cd73d5d6249ae19239468b58776c9c03072bbef1be9876986e6cefe095ae0" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.103.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3dfbef0fe9eb7a966646d31bd1259de6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106199, "upload_time": "2021-05-10T23:06:02", "upload_time_iso_8601": "2021-05-10T23:06:02.026925Z", "url": "https://files.pythonhosted.org/packages/1d/10/69e9ae5682ef0c401574d82d9094bf2923e89edb38247474868c03157186/aws_cdk.custom_resources-1.103.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06349994e9a114fa7a35852f31001e7e", "sha256": "e41ecabcbd71ed3aa4ea891a6ad7211761cdaeb6d470225fd6cd1008d54f1deb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.103.0.tar.gz", "has_sig": false, "md5_digest": "06349994e9a114fa7a35852f31001e7e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 109794, "upload_time": "2021-05-10T23:11:09", "upload_time_iso_8601": "2021-05-10T23:11:09.975195Z", "url": "https://files.pythonhosted.org/packages/48/ee/93781811ae61d92386dfa1a9b68fae36107cf0eafca8f6a3cfa07466b9a8/aws-cdk.custom-resources-1.103.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.104.0": [ { "comment_text": "", "digests": { "md5": "668811ab3592617c08df5131cf29d7a5", "sha256": "52f12a8793393960a0470e356e6b286beee40b77240b5f566ebdb5fbe00242d0" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.104.0-py3-none-any.whl", "has_sig": false, "md5_digest": "668811ab3592617c08df5131cf29d7a5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 106372, "upload_time": "2021-05-15T00:07:53", "upload_time_iso_8601": "2021-05-15T00:07:53.827202Z", "url": "https://files.pythonhosted.org/packages/b4/af/2e22d16f48ac16cf12e8a790b99f34614ee72b9377d29efeb80a7b1174ca/aws_cdk.custom_resources-1.104.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8e1c1294cb10cbd3e39ff0adf5b1ec2", "sha256": "e3e290b7aeb052814fdaef55c6fac9dcd0b8e5578bcaf7440e253bdb5b71ea01" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.104.0.tar.gz", "has_sig": false, "md5_digest": "c8e1c1294cb10cbd3e39ff0adf5b1ec2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 110007, "upload_time": "2021-05-15T00:11:07", "upload_time_iso_8601": "2021-05-15T00:11:07.091550Z", "url": "https://files.pythonhosted.org/packages/4a/46/89f42c32572a1a456f8a88911c00bf2395577615aae8a65da897284ea6dd/aws-cdk.custom-resources-1.104.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.105.0": [ { "comment_text": "", "digests": { "md5": "cf4076849dfe20439d0907317e0b15a3", "sha256": "315c82cfb71b93f07a719a89e2913f59c30e745b1cc974059be32f371ff0588b" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.105.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cf4076849dfe20439d0907317e0b15a3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108003, "upload_time": "2021-05-19T11:47:29", "upload_time_iso_8601": "2021-05-19T11:47:29.268039Z", "url": "https://files.pythonhosted.org/packages/84/87/b1fc78a2e713fabdf4e2d8ead6259b829a16daba1b3b610e20a049a13d57/aws_cdk.custom_resources-1.105.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "869f2099709ede6eef2c0f2ac18144f8", "sha256": "96e2975a1963c1070813c226b85eff692a2cd90034fe6ae2e8c373928b8fd432" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.105.0.tar.gz", "has_sig": false, "md5_digest": "869f2099709ede6eef2c0f2ac18144f8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 111705, "upload_time": "2021-05-19T11:50:42", "upload_time_iso_8601": "2021-05-19T11:50:42.106672Z", "url": "https://files.pythonhosted.org/packages/71/05/c9e728f8a3f95e1dfe4f87eddc6f2f86adf7507d8b651b5f25d0e0cc8f91/aws-cdk.custom-resources-1.105.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.106.0": [ { "comment_text": "", "digests": { "md5": "b1ce360ca98eb168c9628d0f3c93992c", "sha256": "51ed4aeacbc27478c656448008eb3144d066b84b3e4b71ddfc9926ac6da578ad" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.106.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b1ce360ca98eb168c9628d0f3c93992c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108001, "upload_time": "2021-05-25T19:53:56", "upload_time_iso_8601": "2021-05-25T19:53:56.630443Z", "url": "https://files.pythonhosted.org/packages/34/a8/619146b05e18e4d9bb43b8112430e3667a1decdf00b2e98327ffceafcf99/aws_cdk.custom_resources-1.106.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8da977eb39ccd8b1ce323b48e0049039", "sha256": "3a0afda0d72125c7ffed99f570a1d5d8652b2d43fe37a410cdbfb5b6bd3948df" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.106.0.tar.gz", "has_sig": false, "md5_digest": "8da977eb39ccd8b1ce323b48e0049039", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 111689, "upload_time": "2021-05-25T19:56:59", "upload_time_iso_8601": "2021-05-25T19:56:59.196012Z", "url": "https://files.pythonhosted.org/packages/c3/ea/e2d1e1e98761ead33c054c7e0bc358782f908307db9d98fd2e50efd36e23/aws-cdk.custom-resources-1.106.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.106.1": [ { "comment_text": "", "digests": { "md5": "86a5ad0b5c7fee07fbcad0aa5dd07beb", "sha256": "c618a1145d96f805b1a8ac1bc56fe129b997497c964c81d7df0646d4369a5729" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.106.1-py3-none-any.whl", "has_sig": false, "md5_digest": "86a5ad0b5c7fee07fbcad0aa5dd07beb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108005, "upload_time": "2021-05-26T21:15:21", "upload_time_iso_8601": "2021-05-26T21:15:21.201461Z", "url": "https://files.pythonhosted.org/packages/a8/a0/660a5e331b492da9f3bf47467555c83bae29beb948c37cdda243767a2883/aws_cdk.custom_resources-1.106.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "defcbdb96082731c78a2be5842e7e9ee", "sha256": "1dfdbc593d810694153184db2ee1315cd43d1c20334ec8fb27d3e008e2909bcd" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.106.1.tar.gz", "has_sig": false, "md5_digest": "defcbdb96082731c78a2be5842e7e9ee", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 111688, "upload_time": "2021-05-26T21:18:18", "upload_time_iso_8601": "2021-05-26T21:18:18.057204Z", "url": "https://files.pythonhosted.org/packages/fa/c5/0d907ec7dd596a7752a8854716edc075c73e8c361ae24e277dc4349193f8/aws-cdk.custom-resources-1.106.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.107.0": [ { "comment_text": "", "digests": { "md5": "f5dc51aa4e78e5550cca9ffeb0c115b7", "sha256": "6ad71e607edd34c894dacbce9564a2824b3981398cd4f8d22798c9042f445543" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.107.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f5dc51aa4e78e5550cca9ffeb0c115b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108001, "upload_time": "2021-06-02T19:27:30", "upload_time_iso_8601": "2021-06-02T19:27:30.967144Z", "url": "https://files.pythonhosted.org/packages/96/5a/986292fa8482ec39c77c4b33147400c14f2d57ddc3b4f2a98e924538202b/aws_cdk.custom_resources-1.107.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2887742062b7b3e7e42f15bbe20824e6", "sha256": "436773996b7c3e64a8fb9c0bdbe65e23814a514bbb1b0a859c01499a9d02a2b8" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.107.0.tar.gz", "has_sig": false, "md5_digest": "2887742062b7b3e7e42f15bbe20824e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 111693, "upload_time": "2021-06-02T19:30:30", "upload_time_iso_8601": "2021-06-02T19:30:30.595334Z", "url": "https://files.pythonhosted.org/packages/8a/f5/c1ba22f503ac8d2cbb5dd421933d0aa3b9afb1e5fb18eb2e5d36231c6222/aws-cdk.custom-resources-1.107.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.108.0": [ { "comment_text": "", "digests": { "md5": "0cb98a59eb8271b3b48477528e7638b2", "sha256": "78ca2d9fe3c0ac30e50436c19129fb6e3c9528de6d78a5fd4d46361c8f481851" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.108.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0cb98a59eb8271b3b48477528e7638b2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108541, "upload_time": "2021-06-09T12:31:07", "upload_time_iso_8601": "2021-06-09T12:31:07.948526Z", "url": "https://files.pythonhosted.org/packages/88/6b/049561f7b65a24619e5ed1368d77a36f773a27a33a4631616f19b0bfd69c/aws_cdk.custom_resources-1.108.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64ab96655f16edabb23822eed1d6e3eb", "sha256": "6ad1886a66cbc38f68646ab9e1636aee897ecdf9f9de4945788bf6f9b0a237b9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.108.0.tar.gz", "has_sig": false, "md5_digest": "64ab96655f16edabb23822eed1d6e3eb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112308, "upload_time": "2021-06-09T12:36:27", "upload_time_iso_8601": "2021-06-09T12:36:27.156002Z", "url": "https://files.pythonhosted.org/packages/cf/53/93ddf9c7fc104e774885f9da22dcaa7c0e0e3479cd096ae1ff39536a64fe/aws-cdk.custom-resources-1.108.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.108.1": [ { "comment_text": "", "digests": { "md5": "c6fe24c9aed51f29b15e648839024333", "sha256": "96ae9952a3ef688796b143ad78a9fafa9cb4a42aeb6368c3a0c2a35b684a8aae" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.108.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c6fe24c9aed51f29b15e648839024333", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108543, "upload_time": "2021-06-11T16:46:56", "upload_time_iso_8601": "2021-06-11T16:46:56.088167Z", "url": "https://files.pythonhosted.org/packages/99/b3/d11dccc092ee1c0c67e9845aef71cadba981b9b1355474751066bbfd39b1/aws_cdk.custom_resources-1.108.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dea724291bc10b26d5f5e5d6b1b0f648", "sha256": "152b23dd6b937f25f914545fffd3bad5c1c12ae9b2e12c862d996cc3a2866dd7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.108.1.tar.gz", "has_sig": false, "md5_digest": "dea724291bc10b26d5f5e5d6b1b0f648", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112337, "upload_time": "2021-06-11T16:50:16", "upload_time_iso_8601": "2021-06-11T16:50:16.711517Z", "url": "https://files.pythonhosted.org/packages/73/36/486639f4a20ec2ed375e4c0debc5cb5310cb4b64483bed01cc3e906cf1e7/aws-cdk.custom-resources-1.108.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.109.0": [ { "comment_text": "", "digests": { "md5": "5233efef43d353832e2a4c8200cabd80", "sha256": "cbd216deec63df11cb22fb1350318c9cafdcba62a99584f5c4da68ca7c9c87fc" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.109.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5233efef43d353832e2a4c8200cabd80", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108585, "upload_time": "2021-06-17T01:54:53", "upload_time_iso_8601": "2021-06-17T01:54:53.908704Z", "url": "https://files.pythonhosted.org/packages/8b/69/06c4e6e3a77fae942a06a2b071e4dac5d15f8b8a78dd5b20504eeba573b5/aws_cdk.custom_resources-1.109.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e47980ae0b4b5da8aee2a225c32e8a28", "sha256": "e78b29b4f15aeb275d4e5efb079b0aae073cf54299014f07652db58ce2002d29" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.109.0.tar.gz", "has_sig": false, "md5_digest": "e47980ae0b4b5da8aee2a225c32e8a28", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112393, "upload_time": "2021-06-17T01:58:09", "upload_time_iso_8601": "2021-06-17T01:58:09.784483Z", "url": "https://files.pythonhosted.org/packages/fb/19/3279c83ff08492129b60f255c55a65b59afafd84496ba72ca85b75432cfe/aws-cdk.custom-resources-1.109.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "eeb32e786d863d41d80b7f3406e419b8", "sha256": "051c0e35822b6fbe6e8b064a27b6636dfcc2e443b83b6892ee890a74980c84f4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "eeb32e786d863d41d80b7f3406e419b8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43995, "upload_time": "2019-10-02T19:10:55", "upload_time_iso_8601": "2019-10-02T19:10:55.666787Z", "url": "https://files.pythonhosted.org/packages/97/5d/25e7c095baf118060b707075d57125c4b5f94975a665e89af894ff1d12e4/aws_cdk.custom_resources-1.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "619c2cf62000532fd34840b69671c6bf", "sha256": "8b2f30fb7b810aefb28c225b30a1ae9bd07f48997128158201eea7a15a4a5210" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.11.0.tar.gz", "has_sig": false, "md5_digest": "619c2cf62000532fd34840b69671c6bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 46554, "upload_time": "2019-10-02T19:14:02", "upload_time_iso_8601": "2019-10-02T19:14:02.510781Z", "url": "https://files.pythonhosted.org/packages/aa/1b/acde17d8eb5b97f530c8971951cd4f3b207fba3e968944c8c020bb435284/aws-cdk.custom-resources-1.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.110.0": [ { "comment_text": "", "digests": { "md5": "e01d0692d8cea193d2e8cee8588295d5", "sha256": "d9e2832df7926f10a83da3ae801d80459cea6b455b5190f20af109ad2ffb881c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.110.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e01d0692d8cea193d2e8cee8588295d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108590, "upload_time": "2021-06-24T12:05:05", "upload_time_iso_8601": "2021-06-24T12:05:05.024919Z", "url": "https://files.pythonhosted.org/packages/f2/4a/9add2a0cac67bc73fb99b299efaa4adb7c5bc4191b4511cc7050a133d6e0/aws_cdk.custom_resources-1.110.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae7dd42af2e1aa051043a7cf47604cd6", "sha256": "3895f3f4759b1c8e0ba812d13c84445647b787410f44bc1979efb8699dd64dcf" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.110.0.tar.gz", "has_sig": false, "md5_digest": "ae7dd42af2e1aa051043a7cf47604cd6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112398, "upload_time": "2021-06-24T12:08:23", "upload_time_iso_8601": "2021-06-24T12:08:23.241233Z", "url": "https://files.pythonhosted.org/packages/75/bb/08c1c7cbc13074fac77594dc106dd009278bc4581c681f3b3586173a463d/aws-cdk.custom-resources-1.110.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.110.1": [ { "comment_text": "", "digests": { "md5": "339643a51a020a988b3a98d0f5e74d95", "sha256": "8ed57477b980a4f73ece67101e6638e0652515158ef6b4acfdb15d694c6a2775" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.110.1-py3-none-any.whl", "has_sig": false, "md5_digest": "339643a51a020a988b3a98d0f5e74d95", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108594, "upload_time": "2021-06-28T22:50:09", "upload_time_iso_8601": "2021-06-28T22:50:09.050783Z", "url": "https://files.pythonhosted.org/packages/00/ca/0f27ab9c994d88b6c1849bc9a15ea2fdd29d1cdae39ecd85b6c91d9d68d2/aws_cdk.custom_resources-1.110.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "76c694e06ddda28b308faed6ec043527", "sha256": "2fedbb98593501a2eb0a77437f19de98fbd0472691313bdc7c2140d79c9dcf84" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.110.1.tar.gz", "has_sig": false, "md5_digest": "76c694e06ddda28b308faed6ec043527", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112402, "upload_time": "2021-06-28T22:53:42", "upload_time_iso_8601": "2021-06-28T22:53:42.428969Z", "url": "https://files.pythonhosted.org/packages/4d/36/433210341c5884001aa8f8937b439f624f2f253315b026aa4af7d42a44db/aws-cdk.custom-resources-1.110.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.111.0": [ { "comment_text": "", "digests": { "md5": "171b0931cd20254d19a0eb3c1e720b69", "sha256": "9bd27d1fa2a57dd101eba8bcdd3ebd7b66aa60117df8627624def0cd0619e8cc" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.111.0-py3-none-any.whl", "has_sig": false, "md5_digest": "171b0931cd20254d19a0eb3c1e720b69", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108596, "upload_time": "2021-07-02T02:01:29", "upload_time_iso_8601": "2021-07-02T02:01:29.899135Z", "url": "https://files.pythonhosted.org/packages/06/2f/c725f6d8a7b4c676abe2de467f3a176b365b7587ac07a6808f9aad969cd5/aws_cdk.custom_resources-1.111.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f023101f04191cfb2515c66ed0903d0c", "sha256": "e6f4cba259e09b34c1ba4089eac16b3d740743205bd5e0066ca3860afe7707f7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.111.0.tar.gz", "has_sig": false, "md5_digest": "f023101f04191cfb2515c66ed0903d0c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112399, "upload_time": "2021-07-02T02:04:50", "upload_time_iso_8601": "2021-07-02T02:04:50.079283Z", "url": "https://files.pythonhosted.org/packages/72/c5/385744947187e8c20c2d72b50b832767ee1c57e459e3c341064764e59436/aws-cdk.custom-resources-1.111.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.112.0": [ { "comment_text": "", "digests": { "md5": "ac26076e367d490e95a8be77c014abb1", "sha256": "9a4ccb598e7ddf9d6cf43c37a512c22031cae41f8977e30d77a76ba741a0cb8f" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.112.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ac26076e367d490e95a8be77c014abb1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108591, "upload_time": "2021-07-09T20:53:31", "upload_time_iso_8601": "2021-07-09T20:53:31.934803Z", "url": "https://files.pythonhosted.org/packages/4b/20/0223f8cdd0177a02f1e7f87d5f3a03f74597659739c1b8a811286fbc185e/aws_cdk.custom_resources-1.112.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9564c6beeaf707e2704acf912c7b5743", "sha256": "e14779dd90245dc97f8e669bd8bfd504374175e4dc04a89731198c9b1e14cea9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.112.0.tar.gz", "has_sig": false, "md5_digest": "9564c6beeaf707e2704acf912c7b5743", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112417, "upload_time": "2021-07-09T20:56:48", "upload_time_iso_8601": "2021-07-09T20:56:48.749974Z", "url": "https://files.pythonhosted.org/packages/21/22/392d5b5afb5908d98d2f39883ddd67e2d004e02c717f15682046039e7d86/aws-cdk.custom-resources-1.112.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.113.0": [ { "comment_text": "", "digests": { "md5": "8ce080abc07a883374bee3e4b9d65547", "sha256": "67b872628a75f0a4ab868de474b169c891b3af1ac104920f2142e45025d89490" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.113.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8ce080abc07a883374bee3e4b9d65547", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108593, "upload_time": "2021-07-12T15:49:29", "upload_time_iso_8601": "2021-07-12T15:49:29.654810Z", "url": "https://files.pythonhosted.org/packages/0a/2b/7b44f187d678caf7a3dcef9e3e9fc0f837e2d6862cfcb5e33c237d3606bc/aws_cdk.custom_resources-1.113.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a24dde13a2f58d68b66c8cde2361b046", "sha256": "47ebedf3d3ebc5d707d566c6a091d4bad5e4910096b2d02dd66413e3fe22dd1b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.113.0.tar.gz", "has_sig": false, "md5_digest": "a24dde13a2f58d68b66c8cde2361b046", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112416, "upload_time": "2021-07-12T15:52:58", "upload_time_iso_8601": "2021-07-12T15:52:58.517577Z", "url": "https://files.pythonhosted.org/packages/a5/e6/c65ab31541c74862ffc5e0b58863c75a0f92195143c464bb4a0d2e6a6e65/aws-cdk.custom-resources-1.113.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.114.0": [ { "comment_text": "", "digests": { "md5": "f1e4d75d0911c9e89e1e360fe38d2b06", "sha256": "d05f373983acca6ed2f67abf664ad1243b98458d51f569917a9ab8ecd910d11d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.114.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f1e4d75d0911c9e89e1e360fe38d2b06", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108603, "upload_time": "2021-07-15T13:49:00", "upload_time_iso_8601": "2021-07-15T13:49:00.913596Z", "url": "https://files.pythonhosted.org/packages/55/7a/4308884246ba8abbe9044657c59c42555cac5fe29381329cd782905a4dec/aws_cdk.custom_resources-1.114.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1372699164b3a632a29eb6f2ad9bfc29", "sha256": "4e18032ded356ca5e9fbb1fae0a2f4829eea97bc3c1080baa59f79d2d5fc01b1" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.114.0.tar.gz", "has_sig": false, "md5_digest": "1372699164b3a632a29eb6f2ad9bfc29", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112416, "upload_time": "2021-07-15T13:52:33", "upload_time_iso_8601": "2021-07-15T13:52:33.280154Z", "url": "https://files.pythonhosted.org/packages/54/93/d6365ab15a57147bd4164ef37f65c06fb41795d4bdd462c7b552365e8e5e/aws-cdk.custom-resources-1.114.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.115.0": [ { "comment_text": "", "digests": { "md5": "20de615275e7a98e4d0c504a54228ae7", "sha256": "20bb6a821b94b1c2bb2a3f8fce92a8a5f233277486e49f4214aca8efc9581445" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.115.0-py3-none-any.whl", "has_sig": false, "md5_digest": "20de615275e7a98e4d0c504a54228ae7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108604, "upload_time": "2021-07-21T17:34:06", "upload_time_iso_8601": "2021-07-21T17:34:06.970789Z", "url": "https://files.pythonhosted.org/packages/c1/e9/e4dda281a83edc79991be5f7f69b55bd871cca03d5dc6be40af0bb22a51f/aws_cdk.custom_resources-1.115.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b0c4c7aedee3a7be89ee3ee18a864eae", "sha256": "fd5a896659a7d9e7372334e4b3d7793585a031b1e4e3f3308ee530760d847db7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.115.0.tar.gz", "has_sig": false, "md5_digest": "b0c4c7aedee3a7be89ee3ee18a864eae", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112386, "upload_time": "2021-07-21T17:38:08", "upload_time_iso_8601": "2021-07-21T17:38:08.486779Z", "url": "https://files.pythonhosted.org/packages/a5/61/6f8e02c12b58a1581826051f068ad27b6f6cf7474bf7a603c9824348142b/aws-cdk.custom-resources-1.115.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.116.0": [ { "comment_text": "", "digests": { "md5": "99a929be84954e647c59ff2b582c370a", "sha256": "ebc0bbb1497dc17fa0b50c6f93147a0da6f4ef3d4fc034bad6e89c80bc372ead" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.116.0-py3-none-any.whl", "has_sig": false, "md5_digest": "99a929be84954e647c59ff2b582c370a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108598, "upload_time": "2021-07-28T13:34:13", "upload_time_iso_8601": "2021-07-28T13:34:13.055269Z", "url": "https://files.pythonhosted.org/packages/f4/e1/33bb26e5be4fe2bdcfe5387c072c12a4c08f649a4780bbcabe1fc47a9748/aws_cdk.custom_resources-1.116.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fcde058e6393878eba567bba1fd1be23", "sha256": "2b71004479eb7404d3a668217cccc90629fa4deed6ad2e1aaeb379e298e5395c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.116.0.tar.gz", "has_sig": false, "md5_digest": "fcde058e6393878eba567bba1fd1be23", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112399, "upload_time": "2021-07-28T13:37:43", "upload_time_iso_8601": "2021-07-28T13:37:43.758783Z", "url": "https://files.pythonhosted.org/packages/15/5f/a183c32e71687e6d5bc55087fad95e067bf83813cfbd068cea9a4b50a573/aws-cdk.custom-resources-1.116.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.117.0": [ { "comment_text": "", "digests": { "md5": "e7bf33fecfb66fc84b55848369c744eb", "sha256": "81abaff804a17702d03dd4d9241fd21d78319af16705ad5a1dc0a3f3d8b78c71" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.117.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e7bf33fecfb66fc84b55848369c744eb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108601, "upload_time": "2021-08-05T13:01:44", "upload_time_iso_8601": "2021-08-05T13:01:44.091391Z", "url": "https://files.pythonhosted.org/packages/e8/91/7f377ea86f25e031322058f6fee91d19367ab21e15d215805b0b028e6925/aws_cdk.custom_resources-1.117.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71351171bceedec43209172662e5dcc1", "sha256": "e5118831c40f7948c5f72e5b4d40d48d0f125662c5ff1974230be23e83a644d7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.117.0.tar.gz", "has_sig": false, "md5_digest": "71351171bceedec43209172662e5dcc1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112418, "upload_time": "2021-08-05T13:05:29", "upload_time_iso_8601": "2021-08-05T13:05:29.821797Z", "url": "https://files.pythonhosted.org/packages/61/ec/ae459f9993af662be7e076eab7ed3163afb06036278b17c4eea8908f8554/aws-cdk.custom-resources-1.117.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.118.0": [ { "comment_text": "", "digests": { "md5": "433d0492fb13b482f24aabb99ab1418c", "sha256": "fba6a626304af8e81fa305b1908925306de1a155247a4c8dbabb8cb8d9d4dfa5" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.118.0-py3-none-any.whl", "has_sig": false, "md5_digest": "433d0492fb13b482f24aabb99ab1418c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108604, "upload_time": "2021-08-11T02:29:52", "upload_time_iso_8601": "2021-08-11T02:29:52.761528Z", "url": "https://files.pythonhosted.org/packages/c2/ff/02e9f0cb2e31b6d9168a6e572f09d7bd3c98e969b792ca66e09036f8507e/aws_cdk.custom_resources-1.118.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "592ce24b0ffa65e21efdbca01c1695e4", "sha256": "d95f40813d566101c6348cb52a34ebd1f32c8e81cead728ae32195fedba0644b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.118.0.tar.gz", "has_sig": false, "md5_digest": "592ce24b0ffa65e21efdbca01c1695e4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112393, "upload_time": "2021-08-11T02:33:29", "upload_time_iso_8601": "2021-08-11T02:33:29.870491Z", "url": "https://files.pythonhosted.org/packages/80/43/8451df158ed69f85e964360fa88ca685cfcd0721ba600ca5848a8cb20b0c/aws-cdk.custom-resources-1.118.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.119.0": [ { "comment_text": "", "digests": { "md5": "134e92b1d0b83aebde827427d7dd5bd1", "sha256": "c9cdaee576852531e9d39a6b2d7223fbd2a60f317c7e75a3ab7478d41d8fa348" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.119.0-py3-none-any.whl", "has_sig": false, "md5_digest": "134e92b1d0b83aebde827427d7dd5bd1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108601, "upload_time": "2021-08-17T21:47:00", "upload_time_iso_8601": "2021-08-17T21:47:00.914783Z", "url": "https://files.pythonhosted.org/packages/a1/25/3124e92c64d5a3cdabab82ed902ee34f54a7f8a6318a508e95e0ea2b7ba0/aws_cdk.custom_resources-1.119.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0dc633f849b4e48e844130a1b333a00e", "sha256": "bb0e84d578c43ab0f0a08e70ffcdc4e6ef7415434341a5ed42c241f0776dae0e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.119.0.tar.gz", "has_sig": false, "md5_digest": "0dc633f849b4e48e844130a1b333a00e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112411, "upload_time": "2021-08-17T21:50:54", "upload_time_iso_8601": "2021-08-17T21:50:54.351539Z", "url": "https://files.pythonhosted.org/packages/69/84/61576560e3c68700b0a41bb6879b052bc5e45bc4f4be5da149e991f4f1be/aws-cdk.custom-resources-1.119.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "7e1a9f4cb7931886b4ac331f8ca7e464", "sha256": "3d3a4e872f05691300957941d9da9f7b8bd25543073bd0816c15dfe4bd47756c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.12.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7e1a9f4cb7931886b4ac331f8ca7e464", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45190, "upload_time": "2019-10-07T16:23:19", "upload_time_iso_8601": "2019-10-07T16:23:19.103482Z", "url": "https://files.pythonhosted.org/packages/5a/ac/420e24dd2e01219677c18ea227d7373c545f5cbc36722129bc1c6e8ef9ce/aws_cdk.custom_resources-1.12.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e08bd759c1e0093a03d69377d28b6e57", "sha256": "d3baf79fea4333cceb59c73322a678641469ad08484542f49b51a7e847c7fff2" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.12.0.tar.gz", "has_sig": false, "md5_digest": "e08bd759c1e0093a03d69377d28b6e57", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47859, "upload_time": "2019-10-07T16:26:27", "upload_time_iso_8601": "2019-10-07T16:26:27.988770Z", "url": "https://files.pythonhosted.org/packages/b8/c2/d8afefb9b3a0d057124c723ddd0588d12ee0612899d552a801f5cfecf5d4/aws-cdk.custom-resources-1.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.120.0": [ { "comment_text": "", "digests": { "md5": "371c54b82ce62d4d1d8d9d203c3941ad", "sha256": "047bbb521a181ea025d702b67623d1f27e1c2609682ebd93478892c33d3494c2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.120.0-py3-none-any.whl", "has_sig": false, "md5_digest": "371c54b82ce62d4d1d8d9d203c3941ad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108601, "upload_time": "2021-08-26T13:53:34", "upload_time_iso_8601": "2021-08-26T13:53:34.899815Z", "url": "https://files.pythonhosted.org/packages/5a/ff/a5b73b1df67cec09318027f21b30c17175c7a6751fbefc0a6e5bf4390d9b/aws_cdk.custom_resources-1.120.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "655e84a305b12250f3badb479cd937c2", "sha256": "6dbba35b670c712453c77817e5ca8428ebd7a3345d961214f530a1561b23e19c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.120.0.tar.gz", "has_sig": false, "md5_digest": "655e84a305b12250f3badb479cd937c2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 112407, "upload_time": "2021-08-26T13:58:27", "upload_time_iso_8601": "2021-08-26T13:58:27.902259Z", "url": "https://files.pythonhosted.org/packages/82/37/ad188829d57cb93794e0c7fb93c6762952458d0dee8d693e2785f695418d/aws-cdk.custom-resources-1.120.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.121.0": [ { "comment_text": "", "digests": { "md5": "d27d1d313046a7973c140da93bc69db7", "sha256": "1dd69d0b5cd671190224f8e3bbd254062cb4dadbb0da8d27203e1421f0862c59" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.121.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d27d1d313046a7973c140da93bc69db7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108619, "upload_time": "2021-09-01T12:54:59", "upload_time_iso_8601": "2021-09-01T12:54:59.748126Z", "url": "https://files.pythonhosted.org/packages/31/f0/320556d0a7f528b5f095c5991458a9369fae671d019e15f925d6a8ccc207/aws_cdk.custom_resources-1.121.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d89c9c60cee382574c7fd25a10b5d1e0", "sha256": "0e8f9da3690cf2aa662e44fe34859424d743827734178df2b42c592523a58b05" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.121.0.tar.gz", "has_sig": false, "md5_digest": "d89c9c60cee382574c7fd25a10b5d1e0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 111003, "upload_time": "2021-09-01T12:58:23", "upload_time_iso_8601": "2021-09-01T12:58:23.482801Z", "url": "https://files.pythonhosted.org/packages/52/98/1d00237d9073631de999483cc75177c8fcb0572b842753368c9d4b1ee46f/aws-cdk.custom-resources-1.121.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.122.0": [ { "comment_text": "", "digests": { "md5": "2e6b1d19a521ba416cc5f1e5b02070f3", "sha256": "f9ba002d4e4ea9ade03eda7a1d5cbfecf1052f5147c948c323ff2fce80135b34" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.122.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2e6b1d19a521ba416cc5f1e5b02070f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 108616, "upload_time": "2021-09-08T22:29:36", "upload_time_iso_8601": "2021-09-08T22:29:36.646911Z", "url": "https://files.pythonhosted.org/packages/d9/7d/5424c3f5885f17c27cc028cdd8ad89a3bcd4cd35f7b02f28e104194f882f/aws_cdk.custom_resources-1.122.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "563e5ef91e32ff2bb1e843b550895edd", "sha256": "386058c8ca39b7467e602457bbb17a4526009aa2c952a638321405534fecb077" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.122.0.tar.gz", "has_sig": false, "md5_digest": "563e5ef91e32ff2bb1e843b550895edd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 110999, "upload_time": "2021-09-08T22:32:59", "upload_time_iso_8601": "2021-09-08T22:32:59.306165Z", "url": "https://files.pythonhosted.org/packages/d5/df/26de55ecf11212eb9fbf6717498380028c5f3f6cde767bc25ad774de5ddd/aws-cdk.custom-resources-1.122.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.123.0": [ { "comment_text": "", "digests": { "md5": "4000053912e85d050f87227cbded2287", "sha256": "32a0ce3121be5bbbfcb9e5bc91927be50aa02eb59b29668b9892df486b035c71" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.123.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4000053912e85d050f87227cbded2287", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 133511, "upload_time": "2021-09-17T02:23:10", "upload_time_iso_8601": "2021-09-17T02:23:10.313802Z", "url": "https://files.pythonhosted.org/packages/7c/c9/1336f8d0c74f6897b93b14b973456530648709a21d69ddbcb73f212441fd/aws_cdk.custom_resources-1.123.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "36e76f2ec5a3b01e6e65bd0c9fc1126b", "sha256": "ab8c31fd6b6ca05a47ee7e24a8f9600d6d1e9e7470ccae7522c42770cad76936" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.123.0.tar.gz", "has_sig": false, "md5_digest": "36e76f2ec5a3b01e6e65bd0c9fc1126b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 135206, "upload_time": "2021-09-17T02:26:36", "upload_time_iso_8601": "2021-09-17T02:26:36.526784Z", "url": "https://files.pythonhosted.org/packages/38/22/24e6ea165067cfe7db695a58a1c7992a8d6c58b25c629baa095cf727cd8e/aws-cdk.custom-resources-1.123.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.124.0": [ { "comment_text": "", "digests": { "md5": "312c4bcabcb7cefe24e24ffaede46488", "sha256": "6c9abcc046a92dc6845c8a81e33ac727da95e0c0d95b3fba0d433de7dae10a61" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.124.0-py3-none-any.whl", "has_sig": false, "md5_digest": "312c4bcabcb7cefe24e24ffaede46488", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 133507, "upload_time": "2021-09-21T21:52:39", "upload_time_iso_8601": "2021-09-21T21:52:39.487149Z", "url": "https://files.pythonhosted.org/packages/12/7b/c468c5b24e252a1fdc2eb35789cafd83bc655551bbd79ffb8927752a1f0f/aws_cdk.custom_resources-1.124.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11a02d05f9fbce10a615433037503a37", "sha256": "d2be1a1636b65e275521970b9c9accd02718f678ebb074a580b15b695e4b60d5" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.124.0.tar.gz", "has_sig": false, "md5_digest": "11a02d05f9fbce10a615433037503a37", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 135192, "upload_time": "2021-09-21T21:57:06", "upload_time_iso_8601": "2021-09-21T21:57:06.490873Z", "url": "https://files.pythonhosted.org/packages/e7/c9/ba8ef3addbe66b947ee4438b77d6bd0d0cd99819bca03c8adb2ed222f9c7/aws-cdk.custom-resources-1.124.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.125.0": [ { "comment_text": "", "digests": { "md5": "bdabf748574acb6e1bd3ebbe9a3cd30f", "sha256": "a28664178573784e73266a443c62cbd191428f3332cb3133b22aee56ee402a02" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.125.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bdabf748574acb6e1bd3ebbe9a3cd30f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 133483, "upload_time": "2021-09-29T22:17:12", "upload_time_iso_8601": "2021-09-29T22:17:12.700883Z", "url": "https://files.pythonhosted.org/packages/6d/21/fc355d1a1e0de87391ba5fdac4f958f6a31356b2a4b84d67590033544345/aws_cdk.custom_resources-1.125.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20a723e1430f4f027769ccae0d020c46", "sha256": "1bcbda91dcc37c24f2eba3ca9a80048f34e449d6f98067fe19d96732b8e95d5f" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.125.0.tar.gz", "has_sig": false, "md5_digest": "20a723e1430f4f027769ccae0d020c46", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 135172, "upload_time": "2021-09-29T22:20:54", "upload_time_iso_8601": "2021-09-29T22:20:54.204882Z", "url": "https://files.pythonhosted.org/packages/9f/26/f7cf952f5ca706000577a9e6b1549c3f1f8a8d1837246d8e0cfa23fd964f/aws-cdk.custom-resources-1.125.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.126.0": [ { "comment_text": "", "digests": { "md5": "da61c2b1bc3a0a3025faa52a2b067b0c", "sha256": "aeb34acac855467b6a386df2ca83bccca370f979832c55adbff98581577ef2f9" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.126.0-py3-none-any.whl", "has_sig": false, "md5_digest": "da61c2b1bc3a0a3025faa52a2b067b0c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 133689, "upload_time": "2021-10-05T15:22:05", "upload_time_iso_8601": "2021-10-05T15:22:05.911341Z", "url": "https://files.pythonhosted.org/packages/fa/db/558c37d3750b154646cd31c6416c90e33fe0cc60ef3151535570ae573177/aws_cdk.custom_resources-1.126.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "327cb89e2f6e30faec3002e5b5bf470a", "sha256": "c685c2778d7600333a9cd17df0418aee82b59e7394534cb8fcd35e708fbdb427" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.126.0.tar.gz", "has_sig": false, "md5_digest": "327cb89e2f6e30faec3002e5b5bf470a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 135412, "upload_time": "2021-10-05T15:25:54", "upload_time_iso_8601": "2021-10-05T15:25:54.641342Z", "url": "https://files.pythonhosted.org/packages/25/30/6d2573c3ec5cb3f5a8449223603562e63ca0dc4143ffdba14f8e9cf070e6/aws-cdk.custom-resources-1.126.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.127.0": [ { "comment_text": "", "digests": { "md5": "c52bdf1bd111645f34604471d0972ed0", "sha256": "9fe9de666e919aef7f1e08a81ae5b13452c4836ea233733fed10ae15abbe5187" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.127.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c52bdf1bd111645f34604471d0972ed0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 136324, "upload_time": "2021-10-08T20:36:06", "upload_time_iso_8601": "2021-10-08T20:36:06.861483Z", "url": "https://files.pythonhosted.org/packages/bb/3d/43bdca6fc23ec45a6a6cba3c98d34ad301735a2b651ff653ac9b442bec3e/aws_cdk.custom_resources-1.127.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e7fb77be1f78e1e555473a7b1410445b", "sha256": "0e11284df7c560669312c1f148ceb10756c2fedc1e988d4062f7b54cd40f68b9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.127.0.tar.gz", "has_sig": false, "md5_digest": "e7fb77be1f78e1e555473a7b1410445b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 138303, "upload_time": "2021-10-08T20:42:24", "upload_time_iso_8601": "2021-10-08T20:42:24.118304Z", "url": "https://files.pythonhosted.org/packages/dc/1d/fc21916a284256ad051a337d2f54bad59bce844085dffeb6eac9a023cd79/aws-cdk.custom-resources-1.127.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.128.0": [ { "comment_text": "", "digests": { "md5": "af8406359f9bf13939f9bf8691f0b9b5", "sha256": "258ee7a1469c8ab210e745d28eaec5c02b17ddf1c0d43a9fd6f835d8d8358a06" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.128.0-py3-none-any.whl", "has_sig": false, "md5_digest": "af8406359f9bf13939f9bf8691f0b9b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 136417, "upload_time": "2021-10-14T07:29:50", "upload_time_iso_8601": "2021-10-14T07:29:50.448280Z", "url": "https://files.pythonhosted.org/packages/e5/57/7bc173e7ca8d00a1a57977c2284729106ca375c55d290e3474dbc154131e/aws_cdk.custom_resources-1.128.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43c986e775d4612c8e84dc3294d9a3b4", "sha256": "4014b2fec32ca39d5057bd69c38f87d4b9a8052e898fb15f54d91c1d97d9706e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.128.0.tar.gz", "has_sig": false, "md5_digest": "43c986e775d4612c8e84dc3294d9a3b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 138379, "upload_time": "2021-10-14T07:33:30", "upload_time_iso_8601": "2021-10-14T07:33:30.431300Z", "url": "https://files.pythonhosted.org/packages/d0/f4/5df425c2ca2ddf51d1a2dee94993a64e7195ee6b1974a1481a8d4163fd1a/aws-cdk.custom-resources-1.128.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.129.0": [ { "comment_text": "", "digests": { "md5": "5275f0be5f33097a93216aea2c150ed1", "sha256": "7c18f35248e83c711daa14d65df0af26834863f8288ca83d5f841cebbd27f4d4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.129.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5275f0be5f33097a93216aea2c150ed1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 136420, "upload_time": "2021-10-21T21:48:53", "upload_time_iso_8601": "2021-10-21T21:48:53.049353Z", "url": "https://files.pythonhosted.org/packages/47/24/3525592083fcb8171699e7f37dff30da73c7eca838006b4c8ddcc13a5e97/aws_cdk.custom_resources-1.129.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "39fe6cf817139b81bc2237ec965086dc", "sha256": "74f4ec64bc5a8cebb12fa353abc1cfe60dc2e68216055d212c0bb2b9b53036ec" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.129.0.tar.gz", "has_sig": false, "md5_digest": "39fe6cf817139b81bc2237ec965086dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 138383, "upload_time": "2021-10-21T21:54:00", "upload_time_iso_8601": "2021-10-21T21:54:00.740652Z", "url": "https://files.pythonhosted.org/packages/04/08/d174b0ff4002ebde68a4e8f03094e30317288ff133ca61b5d52f8bb85afd/aws-cdk.custom-resources-1.129.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "fb84b8ad14a2d33dac898a2ac1b2647c", "sha256": "0fa7c9a73c9c1301c6743aed585347253401e8b46537e41a53fac59451c3d172" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "fb84b8ad14a2d33dac898a2ac1b2647c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45173, "upload_time": "2019-10-15T13:18:29", "upload_time_iso_8601": "2019-10-15T13:18:29.093874Z", "url": "https://files.pythonhosted.org/packages/0c/53/e137ec671b3fde1aecc422ddd318219e77b3a8a6c1298cd92f1ac76cfd8d/aws_cdk.custom_resources-1.13.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1208dae6ff5e74b22dc099ecb7b0b0d5", "sha256": "71ea17e2bf1df7cccdfb90b35d0ec4cc5950cca60d63e8b292ef4c68c34f5a43" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.13.0.tar.gz", "has_sig": false, "md5_digest": "1208dae6ff5e74b22dc099ecb7b0b0d5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47799, "upload_time": "2019-10-15T13:22:08", "upload_time_iso_8601": "2019-10-15T13:22:08.102782Z", "url": "https://files.pythonhosted.org/packages/78/41/1ab7418d7a34641b7d24667a429d5ab7a7142a87d5f4071456cb53575a59/aws-cdk.custom-resources-1.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.13.1": [ { "comment_text": "", "digests": { "md5": "c8166b0ef79afa9b5e0d18b01acbe1de", "sha256": "49b17dc8e72df04821ec0e41e6f07ecc5edf03df7439a9183243070d4ed04899" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c8166b0ef79afa9b5e0d18b01acbe1de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45179, "upload_time": "2019-10-15T20:44:17", "upload_time_iso_8601": "2019-10-15T20:44:17.457576Z", "url": "https://files.pythonhosted.org/packages/d6/e0/1b8b775ff52ee75e879de619427c896fc62ebfa8d5896083b7faa47188a4/aws_cdk.custom_resources-1.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44df8c59cb1d17802b40347ac24a2629", "sha256": "b86e45134dd6879e4986dd2d4c36063bc7821442ac8b7cdde64473991779051c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.13.1.tar.gz", "has_sig": false, "md5_digest": "44df8c59cb1d17802b40347ac24a2629", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47791, "upload_time": "2019-10-15T20:47:43", "upload_time_iso_8601": "2019-10-15T20:47:43.477120Z", "url": "https://files.pythonhosted.org/packages/5f/15/a19c55b9521af0e8ca8d6385a8088884e8c8679d04a44c8109dc39802aba/aws-cdk.custom-resources-1.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.130.0": [ { "comment_text": "", "digests": { "md5": "5e3fdc71a924d2c968cad19e15c36beb", "sha256": "07c8a6c99bfe53d251303a7cf50b109fa974ddfd2fdbd22f3e94534271a2f666" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.130.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5e3fdc71a924d2c968cad19e15c36beb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 136673, "upload_time": "2021-10-29T19:35:15", "upload_time_iso_8601": "2021-10-29T19:35:15.212056Z", "url": "https://files.pythonhosted.org/packages/1b/f4/56bd481fdba74df913e46853b6655ad0394c2b2562a42d6b7ee2605bd358/aws_cdk.custom_resources-1.130.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7a45c663b55d15ff06ec785e152aee4", "sha256": "c212447b64f79d3605db6e072d23acc6fa1135e5399162a8cd258bc1d22e03e2" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.130.0.tar.gz", "has_sig": false, "md5_digest": "a7a45c663b55d15ff06ec785e152aee4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 138654, "upload_time": "2021-10-29T19:38:37", "upload_time_iso_8601": "2021-10-29T19:38:37.744685Z", "url": "https://files.pythonhosted.org/packages/ff/27/0937c9dee7a56fd9e2f92302858b5c71de72641910bf41ff34950ff39e9b/aws-cdk.custom-resources-1.130.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.131.0": [ { "comment_text": "", "digests": { "md5": "10abd6d82239bcd06f61199314ab4fab", "sha256": "a4de3f4cbd59194365e3a21afa9121c5c89998d4e76c9aba41db419eedafb427" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.131.0-py3-none-any.whl", "has_sig": false, "md5_digest": "10abd6d82239bcd06f61199314ab4fab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 136700, "upload_time": "2021-11-07T13:15:19", "upload_time_iso_8601": "2021-11-07T13:15:19.637717Z", "url": "https://files.pythonhosted.org/packages/e8/cc/f66e691d2db288343fbf8950d4545f9080ffcfa663ecb6bd55ff9d82f09b/aws_cdk.custom_resources-1.131.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c7e5c1fef0f894c72d0ef77195148a5", "sha256": "08cde8f3ba6bdcdc09395275a50798735ba365dff0d1e2fd89f247e634b7f5f6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.131.0.tar.gz", "has_sig": false, "md5_digest": "3c7e5c1fef0f894c72d0ef77195148a5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 138688, "upload_time": "2021-11-07T13:18:48", "upload_time_iso_8601": "2021-11-07T13:18:48.026263Z", "url": "https://files.pythonhosted.org/packages/83/46/a9478417783961bdb7a450d16281f7128502e791a946c6a9a4852367c01d/aws-cdk.custom-resources-1.131.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.132.0": [ { "comment_text": "", "digests": { "md5": "8bbd1a4d7b49c8e72e01ae534c437686", "sha256": "9cbd2a2eff07cc1e009818f185b72e3870c8b9f3ca37388956200a1f2868978d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.132.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8bbd1a4d7b49c8e72e01ae534c437686", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 136719, "upload_time": "2021-11-09T14:10:05", "upload_time_iso_8601": "2021-11-09T14:10:05.363134Z", "url": "https://files.pythonhosted.org/packages/3e/5b/82321240e0aaa80b6b85d941e74e6472ab52746dae4f0452c4fa2597ab4b/aws_cdk.custom_resources-1.132.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "92b32078cb73369c4c058be4ccda2ca2", "sha256": "fd526193ed9fe66727ec63ffb926a3190379fd12eff178bc3502e0b0fe40717e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.132.0.tar.gz", "has_sig": false, "md5_digest": "92b32078cb73369c4c058be4ccda2ca2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 138712, "upload_time": "2021-11-09T14:13:36", "upload_time_iso_8601": "2021-11-09T14:13:36.294487Z", "url": "https://files.pythonhosted.org/packages/3e/cd/11ee2216233730724b856d2c5729681c4bc4307e833784856ab7d063d6dd/aws-cdk.custom-resources-1.132.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.133.0": [ { "comment_text": "", "digests": { "md5": "58c0066e6f0adf78247cdd138a1054a2", "sha256": "26070b014beebeea0a8ccb24568112695d0f8f6d5c4aa06f5b237ab38d407ba1" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.133.0-py3-none-any.whl", "has_sig": false, "md5_digest": "58c0066e6f0adf78247cdd138a1054a2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 139225, "upload_time": "2021-11-19T23:10:56", "upload_time_iso_8601": "2021-11-19T23:10:56.500998Z", "url": "https://files.pythonhosted.org/packages/57/d4/d34a08265ad2137e9b72271898d697fabf80ffe49dc8ab648e837081555c/aws_cdk.custom_resources-1.133.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84249a9e8a8aee5b3c02f7d7f73cce9e", "sha256": "00339eeb7f276cca5c771ece79b291677690770e88c1308f52a297ad57181301" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.133.0.tar.gz", "has_sig": false, "md5_digest": "84249a9e8a8aee5b3c02f7d7f73cce9e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141236, "upload_time": "2021-11-19T23:14:26", "upload_time_iso_8601": "2021-11-19T23:14:26.536890Z", "url": "https://files.pythonhosted.org/packages/3a/42/97d6521574e02b344c288efd6e121e73a9f07b50b9ea428cb3848bce210c/aws-cdk.custom-resources-1.133.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.134.0": [ { "comment_text": "", "digests": { "md5": "907298dcf8b1944b6d36c75bbc45da68", "sha256": "ff2cedc1af63276ac1aa59368680ad282994ab8fc983a9520bd7cb0f93a64e3d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.134.0-py3-none-any.whl", "has_sig": false, "md5_digest": "907298dcf8b1944b6d36c75bbc45da68", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 139221, "upload_time": "2021-11-23T16:22:01", "upload_time_iso_8601": "2021-11-23T16:22:01.295085Z", "url": "https://files.pythonhosted.org/packages/cd/4b/20a059329030ce1e6b1daa0736b417886142804641ebfe690552457bd92a/aws_cdk.custom_resources-1.134.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ba6d75992ee9fee1affc9e69c34aadd", "sha256": "9a1f12281d44a967370f258dba4d765d673edacbea950bb5dc10491c618f30ac" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.134.0.tar.gz", "has_sig": false, "md5_digest": "0ba6d75992ee9fee1affc9e69c34aadd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 141246, "upload_time": "2021-11-23T16:25:40", "upload_time_iso_8601": "2021-11-23T16:25:40.063785Z", "url": "https://files.pythonhosted.org/packages/12/d9/f6d47c28f898fe1dde233a35afc2a129d625af24028c7d9a9c2f3013f9c8/aws-cdk.custom-resources-1.134.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.135.0": [ { "comment_text": "", "digests": { "md5": "5c5ab3416e8ef7a662e555af28cecca8", "sha256": "2bd319ba8b1be73f93dcec8783bacbe5c637d9153e94ec51e3cc07348ab44716" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.135.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5c5ab3416e8ef7a662e555af28cecca8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147401, "upload_time": "2021-12-10T20:43:49", "upload_time_iso_8601": "2021-12-10T20:43:49.674882Z", "url": "https://files.pythonhosted.org/packages/2a/bf/0ef0a34e7efd121e5797ac2b063b6d4ba54fbf44133730cf9def8f9daf30/aws_cdk.custom_resources-1.135.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b833339c700624ff3969f68e5e144a40", "sha256": "0574956abaa85841704c489010a17bfd0d9eff8e0ae90a95c155d773ae4631eb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.135.0.tar.gz", "has_sig": false, "md5_digest": "b833339c700624ff3969f68e5e144a40", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 154281, "upload_time": "2021-12-10T20:47:27", "upload_time_iso_8601": "2021-12-10T20:47:27.617821Z", "url": "https://files.pythonhosted.org/packages/83/c5/d2f9fd9f0439e6485d3852d440fc45737736dbf8c49915d2da4945511742/aws-cdk.custom-resources-1.135.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.136.0": [ { "comment_text": "", "digests": { "md5": "bbc181d9bd44ba98705292b98a452ca8", "sha256": "5edeb0e90109af1009b977baf9d5bd1d66562a2d9d051c3410f0d73e318236b9" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.136.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bbc181d9bd44ba98705292b98a452ca8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147499, "upload_time": "2021-12-15T11:53:35", "upload_time_iso_8601": "2021-12-15T11:53:35.955151Z", "url": "https://files.pythonhosted.org/packages/51/38/ab2d8b4aaca1491f23aa6e5e84d89d6a6935560ddc9409bd3eb4283fd0cd/aws_cdk.custom_resources-1.136.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b291a85d7fd4f81e9e8bc0e3fc51e387", "sha256": "8c5e1c6261570f933c7853bd4c866b9534c4606f2fba68b6b2f324c95739fa37" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.136.0.tar.gz", "has_sig": false, "md5_digest": "b291a85d7fd4f81e9e8bc0e3fc51e387", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 154415, "upload_time": "2021-12-15T11:57:28", "upload_time_iso_8601": "2021-12-15T11:57:28.180427Z", "url": "https://files.pythonhosted.org/packages/41/d8/3bb0e460385953f2a37caadf973305b278bf5395642920f0c2e3f80ee33e/aws-cdk.custom-resources-1.136.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.137.0": [ { "comment_text": "", "digests": { "md5": "97c02c59245fdc2fb638732263aa963f", "sha256": "ea3589ef54be64e310087d5a9b1224ec2971f77e475c8cc90b6cc7e33f05ce15" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.137.0-py3-none-any.whl", "has_sig": false, "md5_digest": "97c02c59245fdc2fb638732263aa963f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147497, "upload_time": "2021-12-21T18:30:29", "upload_time_iso_8601": "2021-12-21T18:30:29.303290Z", "url": "https://files.pythonhosted.org/packages/fb/74/d263c9ac7000957fb64bc3bf89cfbef857567a1d105cb1c486e9b2c37f15/aws_cdk.custom_resources-1.137.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "17e7d971ec9b9be1548a9684637aa14a", "sha256": "2c8b2f156c77661bcb118eea2ed0534bf37bedff6c448d552fa15aea5674e1ec" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.137.0.tar.gz", "has_sig": false, "md5_digest": "17e7d971ec9b9be1548a9684637aa14a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 154395, "upload_time": "2021-12-21T18:34:43", "upload_time_iso_8601": "2021-12-21T18:34:43.645919Z", "url": "https://files.pythonhosted.org/packages/3d/36/5b7378dcb624de2664374543f75b06852d215ef1a6975bbf065e9fff062b/aws-cdk.custom-resources-1.137.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.138.0": [ { "comment_text": "", "digests": { "md5": "2132a685d924c35ac8c98db43ebec11a", "sha256": "94e51b808175382f7db2139d62f115bb3e97a7ab4322e7c6304f9900aa014c44" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.138.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2132a685d924c35ac8c98db43ebec11a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151026, "upload_time": "2022-01-04T19:23:51", "upload_time_iso_8601": "2022-01-04T19:23:51.555383Z", "url": "https://files.pythonhosted.org/packages/bc/65/dcf50424ba746072ce1b35179853d2defd87d5d2c2c5f0c8282fa75e26a8/aws_cdk.custom_resources-1.138.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5776541b00f2c2f49180dbf61df6060", "sha256": "a38eee41499394d6cf846ceb790c6268fd3e28068dfdac8f5477b1a5db7517f6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.138.0.tar.gz", "has_sig": false, "md5_digest": "f5776541b00f2c2f49180dbf61df6060", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 158483, "upload_time": "2022-01-04T19:27:52", "upload_time_iso_8601": "2022-01-04T19:27:52.805586Z", "url": "https://files.pythonhosted.org/packages/bd/c4/ad6d71b376e353e7f18e9ea571e695a3919c1a4e8cd229ef491e0b18d52a/aws-cdk.custom-resources-1.138.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.138.1": [ { "comment_text": "", "digests": { "md5": "a50445ac67e7f38044b3d0778fe3f57b", "sha256": "63f353166db6853aa504b548246024475f9042c1427dfa0e6e7102f738f93a87" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.138.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a50445ac67e7f38044b3d0778fe3f57b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151024, "upload_time": "2022-01-07T16:57:54", "upload_time_iso_8601": "2022-01-07T16:57:54.068359Z", "url": "https://files.pythonhosted.org/packages/a6/9f/9f4fbbc9264b3762fcfc94583a451e8eb08f36b1152a28822453154b9752/aws_cdk.custom_resources-1.138.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "201da4f4e43ed2ff39708f3ee6e6571f", "sha256": "fb310bbd60548ac97be7aca387511a98c9feca12094d3bbb97fc28db19d4b6d6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.138.1.tar.gz", "has_sig": false, "md5_digest": "201da4f4e43ed2ff39708f3ee6e6571f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 158481, "upload_time": "2022-01-07T17:02:04", "upload_time_iso_8601": "2022-01-07T17:02:04.588366Z", "url": "https://files.pythonhosted.org/packages/cb/83/1e841dd47e30e750016868b120fcfc7c57e2c319932f59a1e8d0fa436027/aws-cdk.custom-resources-1.138.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.138.2": [ { "comment_text": "", "digests": { "md5": "004da0ae97fa2b15db89f203247bd1e0", "sha256": "bad196c6161d4b7f9cf4fc5fe80e574a229a21e2ca553416df82684548dd0d48" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.138.2-py3-none-any.whl", "has_sig": false, "md5_digest": "004da0ae97fa2b15db89f203247bd1e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151029, "upload_time": "2022-01-10T00:28:28", "upload_time_iso_8601": "2022-01-10T00:28:28.531915Z", "url": "https://files.pythonhosted.org/packages/50/66/2f81cbb32cc9f13598a2982314ae3c059d84bf060a62933656d26465c782/aws_cdk.custom_resources-1.138.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9c5a1ea65607fc9055431b097c4d6035", "sha256": "97a6c29b8959943835f944d4edab4d326bb1622a33c39b4c3a946854fe58bf51" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.138.2.tar.gz", "has_sig": false, "md5_digest": "9c5a1ea65607fc9055431b097c4d6035", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 158498, "upload_time": "2022-01-10T00:32:19", "upload_time_iso_8601": "2022-01-10T00:32:19.156687Z", "url": "https://files.pythonhosted.org/packages/f3/34/900f2a2625dac3abcc79a142f51604379342ac24ada9adaa3f2094f99df6/aws-cdk.custom-resources-1.138.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.139.0": [ { "comment_text": "", "digests": { "md5": "7c9fb6145829e07b4c9795aab9b356c6", "sha256": "b6ce62420278d2571b68ebe3bc551d0b2c22d1e2ca5f3216d875a7805c8cd323" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.139.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7c9fb6145829e07b4c9795aab9b356c6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 148402, "upload_time": "2022-01-11T19:55:18", "upload_time_iso_8601": "2022-01-11T19:55:18.157155Z", "url": "https://files.pythonhosted.org/packages/8b/aa/79c6e550854dd69977ac4f82b817c4510921ff344cc98dd8e86b31530254/aws_cdk.custom_resources-1.139.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b3e1f4cf743f82142d77e37a32936e7c", "sha256": "3fc57097c3bc32a69747f5588030f3a9b9da08d7b0f4dc563894c3b606a2683b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.139.0.tar.gz", "has_sig": false, "md5_digest": "b3e1f4cf743f82142d77e37a32936e7c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155605, "upload_time": "2022-01-11T19:59:26", "upload_time_iso_8601": "2022-01-11T19:59:26.388887Z", "url": "https://files.pythonhosted.org/packages/ca/db/869fd6757b48348e81f09a0a15c8d8166895816c633634b75ea738c394a0/aws-cdk.custom-resources-1.139.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "ad00ff03d201ebd717fd52f2a66c59e3", "sha256": "d9e1477a9391a6a093cf1b3826d5d6975c0c89aa735cf3db3dd3ac980bea4add" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.14.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ad00ff03d201ebd717fd52f2a66c59e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45174, "upload_time": "2019-10-22T07:38:32", "upload_time_iso_8601": "2019-10-22T07:38:32.534872Z", "url": "https://files.pythonhosted.org/packages/51/ab/abc26b2ce6a550de8e35001fa027987a3497c147ecee0afb3daa7b142952/aws_cdk.custom_resources-1.14.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "43e79f86ebdc132023eb870f61f6c087", "sha256": "145e169b1dd886b91607f5c43c923b5169c4e710dc08341d9e54e6b4b67b893b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.14.0.tar.gz", "has_sig": false, "md5_digest": "43e79f86ebdc132023eb870f61f6c087", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 47822, "upload_time": "2019-10-22T07:42:32", "upload_time_iso_8601": "2019-10-22T07:42:32.046862Z", "url": "https://files.pythonhosted.org/packages/88/73/17b2871ee4fcafdf06645110b857d937683b08096e11760b27c79ae960e8/aws-cdk.custom-resources-1.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.140.0": [ { "comment_text": "", "digests": { "md5": "807c8b956fcbef37fb25380e1c13dcd0", "sha256": "fcc8eb24c58ae2381b3619609e66787e484b2173f7d762c6cd5de1666ab34973" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.140.0-py3-none-any.whl", "has_sig": false, "md5_digest": "807c8b956fcbef37fb25380e1c13dcd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 148402, "upload_time": "2022-01-20T21:50:36", "upload_time_iso_8601": "2022-01-20T21:50:36.993343Z", "url": "https://files.pythonhosted.org/packages/35/2f/bbaeccdf3f5f4fb4d5c8d4fecd11288ff41301a7d3abfc84c8e0b16ec4e5/aws_cdk.custom_resources-1.140.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "124f41e73a6a243e3f100be0ae6ea7a9", "sha256": "fa3f3d7657e6907d25bbbbd438cf71a491b756f160d759ab8b1b2dba961dd1e3" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.140.0.tar.gz", "has_sig": false, "md5_digest": "124f41e73a6a243e3f100be0ae6ea7a9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155624, "upload_time": "2022-01-20T21:54:45", "upload_time_iso_8601": "2022-01-20T21:54:45.387250Z", "url": "https://files.pythonhosted.org/packages/f8/a3/83b49abb9877ed6a8c80ab1e749be760df8cdaaff9e0b3a925d3992702a9/aws-cdk.custom-resources-1.140.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.141.0": [ { "comment_text": "", "digests": { "md5": "04e296cbb4ba8a6f0b1b5fc618d9f130", "sha256": "64af5cc58508c76fa24507da5ee4929da491fa25e75b5d7f9be62c9a6cbbc96f" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.141.0-py3-none-any.whl", "has_sig": false, "md5_digest": "04e296cbb4ba8a6f0b1b5fc618d9f130", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 148379, "upload_time": "2022-01-27T13:50:35", "upload_time_iso_8601": "2022-01-27T13:50:35.800893Z", "url": "https://files.pythonhosted.org/packages/10/9b/ea148a107f45809cc564e76a28f19a4531ebd35fed383f79a90732752b34/aws_cdk.custom_resources-1.141.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2b54da736e7b77c49e29ed82c1e6410", "sha256": "0080d50e4c12ebf7a329ab1bd929a179a7f1b9cb9812aeed05a8854df32118eb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.141.0.tar.gz", "has_sig": false, "md5_digest": "d2b54da736e7b77c49e29ed82c1e6410", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155582, "upload_time": "2022-01-27T13:54:54", "upload_time_iso_8601": "2022-01-27T13:54:54.952825Z", "url": "https://files.pythonhosted.org/packages/34/f6/a38179d882b6c167b05abcfcb775ad18ea9320f9e6ed802ad42721dde60b/aws-cdk.custom-resources-1.141.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.142.0": [ { "comment_text": "", "digests": { "md5": "33e4cfcdba5ecfbec9588586b62f3d5e", "sha256": "4686807c4911d937815f0f4d047fee634f92b6822a7e03b6fbd5b6c8926314f0" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.142.0-py3-none-any.whl", "has_sig": false, "md5_digest": "33e4cfcdba5ecfbec9588586b62f3d5e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 148386, "upload_time": "2022-01-29T00:51:57", "upload_time_iso_8601": "2022-01-29T00:51:57.360315Z", "url": "https://files.pythonhosted.org/packages/9c/87/4afcee2d7036fb579ab2ce4b87c4fe6006926a0289a827891677425f853e/aws_cdk.custom_resources-1.142.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c9ca6a4dd3cb2b9be29871980a7a19f4", "sha256": "cf80a0536eb73de0d5e0974e11d245fd0175dc32089955fb8e815c428c931d40" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.142.0.tar.gz", "has_sig": false, "md5_digest": "c9ca6a4dd3cb2b9be29871980a7a19f4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155574, "upload_time": "2022-01-29T00:55:57", "upload_time_iso_8601": "2022-01-29T00:55:57.061213Z", "url": "https://files.pythonhosted.org/packages/c9/e8/b429cf3c8d5d05007601cc98b124c8f74f2cefadc7a00a5e066a83dd2b33/aws-cdk.custom-resources-1.142.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.143.0": [ { "comment_text": "", "digests": { "md5": "7bfb1571f2526985a000a27b1b3bf261", "sha256": "b9ab3f581ff53561d11e2e07a3bab8eb0a43eef51a7785287b0c62edf9d58c37" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.143.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7bfb1571f2526985a000a27b1b3bf261", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 148396, "upload_time": "2022-02-02T12:53:44", "upload_time_iso_8601": "2022-02-02T12:53:44.373905Z", "url": "https://files.pythonhosted.org/packages/68/db/52d344a1226d29be98f3afe2ebe0d2b1f69c09b2f489291fc2fc2a554856/aws_cdk.custom_resources-1.143.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dff8e7e8dada0eb03325acd8ee2a270", "sha256": "98a5c5974de0926b91eab1bd16b48c3ff9342941ef4e3080cae64b254174bd5b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.143.0.tar.gz", "has_sig": false, "md5_digest": "3dff8e7e8dada0eb03325acd8ee2a270", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155594, "upload_time": "2022-02-02T12:57:44", "upload_time_iso_8601": "2022-02-02T12:57:44.166098Z", "url": "https://files.pythonhosted.org/packages/cd/27/3d819d297c277f041fd2cbcd25ace9d7184f8cbbdb38844b55d64f1fc903/aws-cdk.custom-resources-1.143.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.144.0": [ { "comment_text": "", "digests": { "md5": "3d024e3d39f8798388fcdc40ca955dbf", "sha256": "b30702665d7810118fde9ef86541a9c8a537d6975dcfca24284cc7b2acb37fe2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.144.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3d024e3d39f8798388fcdc40ca955dbf", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 148390, "upload_time": "2022-02-08T21:46:30", "upload_time_iso_8601": "2022-02-08T21:46:30.198349Z", "url": "https://files.pythonhosted.org/packages/6d/dc/9a2c96d7f09a2f0e77a3e949374c3cc7300d1aa45f18a25ffb53f5cbd921/aws_cdk.custom_resources-1.144.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22d36118ec6abbc7bc4573161bf5aebd", "sha256": "18639c531ff0c871c7394a728bdfc06dcb910ad6670811500be61f6c663f7b2c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.144.0.tar.gz", "has_sig": false, "md5_digest": "22d36118ec6abbc7bc4573161bf5aebd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155582, "upload_time": "2022-02-08T21:51:46", "upload_time_iso_8601": "2022-02-08T21:51:46.121812Z", "url": "https://files.pythonhosted.org/packages/42/30/0ff3fe13b3465dcd9e398b9159dfc9f2ac466b03d6277d531933e255f409/aws-cdk.custom-resources-1.144.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.145.0": [ { "comment_text": "", "digests": { "md5": "86c3cf36c46e10bd6e1b9d269b5a57ff", "sha256": "223842b94c25da320702afcb22fbf9d57a2e5886e4b15593261025c81de27865" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.145.0-py3-none-any.whl", "has_sig": false, "md5_digest": "86c3cf36c46e10bd6e1b9d269b5a57ff", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 152194, "upload_time": "2022-02-19T02:27:20", "upload_time_iso_8601": "2022-02-19T02:27:20.012416Z", "url": "https://files.pythonhosted.org/packages/d2/bc/fad2cd5fde47fff2bbdfd226bde049d038082785a6ace6ef66e19c79abfe/aws_cdk.custom_resources-1.145.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ff1fd505cd90206f03c2accb17435438", "sha256": "2c8f6e674ff6f82cae613c97b9a34c430eefb28043f05806d39a28d5abda8e73" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.145.0.tar.gz", "has_sig": false, "md5_digest": "ff1fd505cd90206f03c2accb17435438", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 159777, "upload_time": "2022-02-19T02:31:32", "upload_time_iso_8601": "2022-02-19T02:31:32.151422Z", "url": "https://files.pythonhosted.org/packages/8a/23/2489db937b041298ae043704ff3264c006728d3509b9fc7ec89532b5c89c/aws-cdk.custom-resources-1.145.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.146.0": [ { "comment_text": "", "digests": { "md5": "b0b200f16a7144d455276e4cd0a91a3b", "sha256": "527384e226ad8c3398d01327fa2e98b3b989c99d596a76fd40a2703d6c79920d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.146.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b0b200f16a7144d455276e4cd0a91a3b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 152199, "upload_time": "2022-02-25T01:30:12", "upload_time_iso_8601": "2022-02-25T01:30:12.609608Z", "url": "https://files.pythonhosted.org/packages/4c/76/7a09f9e681be84a3c4d13a99827a14c3f0189cef07b9e64e7d9725b183d0/aws_cdk.custom_resources-1.146.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f1b8627764408313e13a91245a95ef6", "sha256": "e8455116d3d36c37cb97a15c8079b3a0653206be807cca835e840d02ba6b6924" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.146.0.tar.gz", "has_sig": false, "md5_digest": "3f1b8627764408313e13a91245a95ef6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 159788, "upload_time": "2022-02-25T01:34:35", "upload_time_iso_8601": "2022-02-25T01:34:35.110752Z", "url": "https://files.pythonhosted.org/packages/5b/45/30ee62280af5eb146b6886072b4d5d808be574f1f562ce40363f2b175838/aws-cdk.custom-resources-1.146.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.147.0": [ { "comment_text": "", "digests": { "md5": "71c4bb945f512bb2ea17849ecb7ebb60", "sha256": "60c9dbc02da6e7119b268b0e4666270545d42ad4217d311a84cda41825b13eca" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.147.0-py3-none-any.whl", "has_sig": false, "md5_digest": "71c4bb945f512bb2ea17849ecb7ebb60", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 152300, "upload_time": "2022-03-01T04:35:48", "upload_time_iso_8601": "2022-03-01T04:35:48.063069Z", "url": "https://files.pythonhosted.org/packages/db/ab/48d19eafe899e548c93976e045ce2c734449dba7220b110f01c56b03f990/aws_cdk.custom_resources-1.147.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "155c324a79d093d979c419ff55916a2f", "sha256": "66bc246f7a1817a44f2e217f15aa1aabdf8b2a98e9b1f9f513279b047302cc16" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.147.0.tar.gz", "has_sig": false, "md5_digest": "155c324a79d093d979c419ff55916a2f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 159892, "upload_time": "2022-03-01T04:40:08", "upload_time_iso_8601": "2022-03-01T04:40:08.132162Z", "url": "https://files.pythonhosted.org/packages/4d/60/a88195dd06ae6b8b8186cf3ac43362e23fb91383664774861d026a052b08/aws-cdk.custom-resources-1.147.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.148.0": [ { "comment_text": "", "digests": { "md5": "0a15ba51b6755dfe968ff3d22d6cfcd6", "sha256": "3d3e609aa57a718dcd1c83bd25f661d717e20d5bb6f5095723b4077ff86645a7" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.148.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0a15ba51b6755dfe968ff3d22d6cfcd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 152253, "upload_time": "2022-03-10T04:34:54", "upload_time_iso_8601": "2022-03-10T04:34:54.942748Z", "url": "https://files.pythonhosted.org/packages/34/13/a06de9f767a1a13539a4ce4c18bb4901e1e39cf63323e6e498e824ccdc3d/aws_cdk.custom_resources-1.148.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac42cc1a80516a41ad9ec2e44da2b220", "sha256": "fa533e42bda9ac333f78d009f046a12ba69e7ba8c35f3bf65846e0cb26c6e0e7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.148.0.tar.gz", "has_sig": false, "md5_digest": "ac42cc1a80516a41ad9ec2e44da2b220", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 159846, "upload_time": "2022-03-10T04:39:25", "upload_time_iso_8601": "2022-03-10T04:39:25.225123Z", "url": "https://files.pythonhosted.org/packages/0b/90/f667eeb1c1cb746f0bd1745ebebe2fd13c6ebe9cca4158c996247c090ff2/aws-cdk.custom-resources-1.148.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.149.0": [ { "comment_text": "", "digests": { "md5": "62c4c7aa54b4f06d5bd55dd41fd7c310", "sha256": "7003ce5261cca5fb2192b457332ffb45f020d4f530a46a397b19d22439f0ca87" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.149.0-py3-none-any.whl", "has_sig": false, "md5_digest": "62c4c7aa54b4f06d5bd55dd41fd7c310", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 152613, "upload_time": "2022-03-17T14:33:03", "upload_time_iso_8601": "2022-03-17T14:33:03.500297Z", "url": "https://files.pythonhosted.org/packages/20/49/67370845dd3b46084a84299875603828a6c8af04b9a4146ca2298effc646/aws_cdk.custom_resources-1.149.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "014ed745d74cf98c7824f98a9934ee6f", "sha256": "e7478d8b9f4a934ae63e173f5d388a9182c30361fa6a49f7c1396364f35c7020" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.149.0.tar.gz", "has_sig": false, "md5_digest": "014ed745d74cf98c7824f98a9934ee6f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 160230, "upload_time": "2022-03-17T14:38:15", "upload_time_iso_8601": "2022-03-17T14:38:15.743960Z", "url": "https://files.pythonhosted.org/packages/ee/e0/af54e91c3f405985343428e168de54b2225c60ccf13b465f9e54acc22391/aws-cdk.custom-resources-1.149.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "bd60535547adbeda3cd04c3ae756f449", "sha256": "79d9110d53880c5774dbc6f647ff8a9200a0f420701ee1f4a4b0fb5ee992426e" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.15.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bd60535547adbeda3cd04c3ae756f449", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 45954, "upload_time": "2019-10-28T13:17:23", "upload_time_iso_8601": "2019-10-28T13:17:23.064307Z", "url": "https://files.pythonhosted.org/packages/46/24/12372fb38ecfa19ff719bec4be50dada7b396f9b9c1e3a2a8879c30fe561/aws_cdk.custom_resources-1.15.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f27fe86c0d1020c9c81442aea8f69225", "sha256": "bc9bf976052b5b81c44abc5be796dd820fc05a27565730c677136033e1923259" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.15.0.tar.gz", "has_sig": false, "md5_digest": "f27fe86c0d1020c9c81442aea8f69225", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 48588, "upload_time": "2019-10-28T13:20:08", "upload_time_iso_8601": "2019-10-28T13:20:08.955418Z", "url": "https://files.pythonhosted.org/packages/26/ca/59915a7307e9c6131bc5343b1cad4071e450e545ad0e28b0efbc508bef3b/aws-cdk.custom-resources-1.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.150.0": [ { "comment_text": "", "digests": { "md5": "025231efa72cc8ca0cbcdef9e3bf7084", "sha256": "dce9f004f21cb736808ab2b6b8e701fe853fbc3700eb2cc3ce909548f698be9e" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.150.0-py3-none-any.whl", "has_sig": false, "md5_digest": "025231efa72cc8ca0cbcdef9e3bf7084", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 154693, "upload_time": "2022-03-26T18:41:09", "upload_time_iso_8601": "2022-03-26T18:41:09.355099Z", "url": "https://files.pythonhosted.org/packages/81/6c/85f4022061b311aa318bc82b4f2e1dd39c21e55419530e83d6986df3c922/aws_cdk.custom_resources-1.150.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "61b0da99ed7903e2cdd6cc1e4ef661b6", "sha256": "b4c7dac37001344397ca57502a92d2cd2f868dc27f0be83c7f84346a4b28aad8" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.150.0.tar.gz", "has_sig": false, "md5_digest": "61b0da99ed7903e2cdd6cc1e4ef661b6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162559, "upload_time": "2022-03-26T18:45:57", "upload_time_iso_8601": "2022-03-26T18:45:57.725978Z", "url": "https://files.pythonhosted.org/packages/3b/1e/2ed51ed9cc2cc8b2aae0b8261473694dde61d8c49e83d26e409d3289cc51/aws-cdk.custom-resources-1.150.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.151.0": [ { "comment_text": "", "digests": { "md5": "f0203321276784dda6413872b4fa3b4b", "sha256": "a660682852f2f8a59647189ef7da4ff11cf0225e9eabbc1789d0d834499ed11d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.151.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f0203321276784dda6413872b4fa3b4b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 154715, "upload_time": "2022-04-01T04:14:40", "upload_time_iso_8601": "2022-04-01T04:14:40.597111Z", "url": "https://files.pythonhosted.org/packages/54/57/1834b36bb6fb487f860cec0a46a4eb76107d0d548530de20e95a5d13db1d/aws_cdk.custom_resources-1.151.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05e4ecdcf7a3a28700d3172bce5558dc", "sha256": "2c68e62ae8b694f5651f0e711f738aa680fe1b18940e7e4f6454c2508ccfb245" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.151.0.tar.gz", "has_sig": false, "md5_digest": "05e4ecdcf7a3a28700d3172bce5558dc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162596, "upload_time": "2022-04-01T04:19:27", "upload_time_iso_8601": "2022-04-01T04:19:27.583877Z", "url": "https://files.pythonhosted.org/packages/03/75/d90a9f841183bf0a953e1360b7dc62c583f89057de7c540f51fb774f84a2/aws-cdk.custom-resources-1.151.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.152.0": [ { "comment_text": "", "digests": { "md5": "c32e52aead85b3c1a82761180b51c5f0", "sha256": "b4c83f7933ffe684757e70a87934b816e5e91ed13ab215555657622857065013" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.152.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c32e52aead85b3c1a82761180b51c5f0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 154719, "upload_time": "2022-04-07T14:46:26", "upload_time_iso_8601": "2022-04-07T14:46:26.809700Z", "url": "https://files.pythonhosted.org/packages/fb/2a/b3b3a682ecacda35ef1cdd34b1cb669117ccea0377e875e37f0c23f1fbf0/aws_cdk.custom_resources-1.152.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5837401f4be0a012a84519899f9e4a1", "sha256": "cbdfad44493c179f36695f62da22dc11ee1a3c7e2b55377d4257dc0729d4de7b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.152.0.tar.gz", "has_sig": false, "md5_digest": "c5837401f4be0a012a84519899f9e4a1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162592, "upload_time": "2022-04-07T14:50:56", "upload_time_iso_8601": "2022-04-07T14:50:56.496885Z", "url": "https://files.pythonhosted.org/packages/25/29/599284205769f9d19136bac66cd39796a3add1a9a77e1765d081713e099a/aws-cdk.custom-resources-1.152.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.153.0": [ { "comment_text": "", "digests": { "md5": "d9aa0d88dbb5f56d8aa4dfb08e620be9", "sha256": "27aff3d3d2f1eacb1de2cebf62b233bb46cf60767611001511b8a1160b4ac69e" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.153.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d9aa0d88dbb5f56d8aa4dfb08e620be9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 132347, "upload_time": "2022-04-22T12:06:57", "upload_time_iso_8601": "2022-04-22T12:06:57.964131Z", "url": "https://files.pythonhosted.org/packages/d1/13/4e0ab8e43d9e4034a807d6b98eff82e1f743c3406a91e48840c63cf526fc/aws_cdk.custom_resources-1.153.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3188d2e6780df5345f04b1fe3c8b32b4", "sha256": "1c6b31081c1942243c080da1a3f098f87fce71ad4e9b346ce7c4ab166aea38e5" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.153.0.tar.gz", "has_sig": false, "md5_digest": "3188d2e6780df5345f04b1fe3c8b32b4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 139680, "upload_time": "2022-04-22T12:11:47", "upload_time_iso_8601": "2022-04-22T12:11:47.305675Z", "url": "https://files.pythonhosted.org/packages/c1/e5/dddb5bf29d5c15d9c9c5306867777d58e2eeef90d471421ebd575b106fb1/aws-cdk.custom-resources-1.153.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.153.1": [ { "comment_text": "", "digests": { "md5": "ec60801fd02a9e9876a8be9b71749aca", "sha256": "fa9cffe0fe07222745229506ef8a1d7d216ff3d01820ce30461c730ca1b420d4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.153.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ec60801fd02a9e9876a8be9b71749aca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 132339, "upload_time": "2022-04-23T04:19:49", "upload_time_iso_8601": "2022-04-23T04:19:49.275287Z", "url": "https://files.pythonhosted.org/packages/e3/ac/8dbf3fb8bf769c512f703205d1357d220f99c9202956d9d323acca876741/aws_cdk.custom_resources-1.153.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "69f47b0d2730d506fb93a59cab180b2c", "sha256": "b353c693f78b7651af92ab0b282e7805f7e9e7eac8ddee3cd51228b1b918f85d" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.153.1.tar.gz", "has_sig": false, "md5_digest": "69f47b0d2730d506fb93a59cab180b2c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 139662, "upload_time": "2022-04-23T04:24:16", "upload_time_iso_8601": "2022-04-23T04:24:16.887345Z", "url": "https://files.pythonhosted.org/packages/3f/86/fba092b25df5b41799042628a9afdb03c4b457430b94dfdf018d4e0924a5/aws-cdk.custom-resources-1.153.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.154.0": [ { "comment_text": "", "digests": { "md5": "082fb11961a05c6eaa250cfc3b45d211", "sha256": "879f6937d3b76cc12639f35b410addb62985b6cd4dcc99b9e7ac4fd7b0806213" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.154.0-py3-none-any.whl", "has_sig": false, "md5_digest": "082fb11961a05c6eaa250cfc3b45d211", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 132336, "upload_time": "2022-04-28T02:03:16", "upload_time_iso_8601": "2022-04-28T02:03:16.055424Z", "url": "https://files.pythonhosted.org/packages/59/6e/414f80c8422ddc5385a15f65a2a5356091f5c1f7c147f0261a963a4cfbb6/aws_cdk.custom_resources-1.154.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1bc01c88fcd1563e18f56ed591e1366", "sha256": "62d7a6136e3569808a284d174f6305bd92cbc4048c7fb6021cc93b3c4becb819" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.154.0.tar.gz", "has_sig": false, "md5_digest": "a1bc01c88fcd1563e18f56ed591e1366", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 139659, "upload_time": "2022-04-28T02:07:59", "upload_time_iso_8601": "2022-04-28T02:07:59.560378Z", "url": "https://files.pythonhosted.org/packages/94/f8/185ad7f84567b2352eb6efede0dc81f679a86e2e63ba33902f7734830768/aws-cdk.custom-resources-1.154.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.155.0": [ { "comment_text": "", "digests": { "md5": "429086fe300685712812e48dd462185b", "sha256": "256c81d46e9662b368d9f87cb51022fdda53e6f5588c8f56aeb11f7f33869b4c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.155.0-py3-none-any.whl", "has_sig": false, "md5_digest": "429086fe300685712812e48dd462185b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 132344, "upload_time": "2022-05-04T22:37:40", "upload_time_iso_8601": "2022-05-04T22:37:40.992296Z", "url": "https://files.pythonhosted.org/packages/a2/21/dd802490944ab650cd86e5c1de82ae5dba4460d3541f5281988ecf2c71e2/aws_cdk.custom_resources-1.155.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e76ca742ac24f8743250a87af955763", "sha256": "2bf2fa827520f123100ad9c50bd5215bc154fc482384d579d6acaf92d39c33a0" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.155.0.tar.gz", "has_sig": false, "md5_digest": "6e76ca742ac24f8743250a87af955763", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 139681, "upload_time": "2022-05-04T22:42:32", "upload_time_iso_8601": "2022-05-04T22:42:32.931783Z", "url": "https://files.pythonhosted.org/packages/8a/fa/248f69ed07e8d7f832f8dbd524da176c1c5e9b15bbc97ea32d9165208455/aws-cdk.custom-resources-1.155.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.156.0": [ { "comment_text": "", "digests": { "md5": "0a9d1f54282289df1e461e8196b15a26", "sha256": "52ec42f49457a7ccdbb3e98f64958f90811878292f76dfb15b7c153055366761" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.156.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0a9d1f54282289df1e461e8196b15a26", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 132379, "upload_time": "2022-05-12T11:39:41", "upload_time_iso_8601": "2022-05-12T11:39:41.414017Z", "url": "https://files.pythonhosted.org/packages/8f/45/180fef8ae61249351054b840be6a98da312d58b34625d13b0445bd951147/aws_cdk.custom_resources-1.156.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c25e8e63c748f0075b504c1ab5e64fae", "sha256": "d044eb72858377472646e2aebcd825d275c39c656bbbc7b20ef35caf52b8c299" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.156.0.tar.gz", "has_sig": false, "md5_digest": "c25e8e63c748f0075b504c1ab5e64fae", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 139699, "upload_time": "2022-05-12T11:45:16", "upload_time_iso_8601": "2022-05-12T11:45:16.504645Z", "url": "https://files.pythonhosted.org/packages/9b/97/56e6a7789a9e1d5a69e4658b2784a15c0aec42ad06da85e3da9539738c3e/aws-cdk.custom-resources-1.156.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.156.1": [ { "comment_text": "", "digests": { "md5": "cbce57b90c90839ee72afef0f4e8b820", "sha256": "77e9db0e116384f85b115c523aad6db2bda5d55c2b121268719b6a2ac86cd920" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.156.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cbce57b90c90839ee72afef0f4e8b820", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 132383, "upload_time": "2022-05-13T04:39:12", "upload_time_iso_8601": "2022-05-13T04:39:12.901254Z", "url": "https://files.pythonhosted.org/packages/fc/df/475699283b377f3c1b896dc0239868a35d600bf4ec3c13677f15151a9b4d/aws_cdk.custom_resources-1.156.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58304cdb84154ed13474620d55664a41", "sha256": "1cb17f7d6359a0cdba2c377993f352eb6f4fccc330d0aae2fd3e8bf96656a815" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.156.1.tar.gz", "has_sig": false, "md5_digest": "58304cdb84154ed13474620d55664a41", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 139718, "upload_time": "2022-05-13T04:44:03", "upload_time_iso_8601": "2022-05-13T04:44:03.201613Z", "url": "https://files.pythonhosted.org/packages/94/bf/d9eca60a1492e1f76487973df5a586299664c0aa062907307b0373646fe5/aws-cdk.custom-resources-1.156.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "4d5c525defee4377c651e53f1e8b1f61", "sha256": "9f03d64f8bb622c15fea54568ad8776181a093a7ea6b659b9a03819758b503f0" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.16.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4d5c525defee4377c651e53f1e8b1f61", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 120444, "upload_time": "2019-11-11T18:11:32", "upload_time_iso_8601": "2019-11-11T18:11:32.475962Z", "url": "https://files.pythonhosted.org/packages/aa/30/29be4bd6fab7daabbf68af8bdf0de6031ef04a95614294092357c910e0e0/aws_cdk.custom_resources-1.16.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3220e6fe506f3388c33a0606ddd40852", "sha256": "2bd3f87476be189b1bfcc616bdac4e8e63ad1962d27e5153c1302cc5a6a40b54" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.16.0.tar.gz", "has_sig": false, "md5_digest": "3220e6fe506f3388c33a0606ddd40852", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 123988, "upload_time": "2019-11-11T18:14:29", "upload_time_iso_8601": "2019-11-11T18:14:29.296600Z", "url": "https://files.pythonhosted.org/packages/2f/89/55c9d443bc134cfd55a79d3eee50823f1b23523ddfbd32b8617a19b614f9/aws-cdk.custom-resources-1.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.1": [ { "comment_text": "", "digests": { "md5": "005af82a7f71731917473bf712035a75", "sha256": "1627545b2c399d5d5817b999c278afd0a116e25525e3344c3fc0b000c718677c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.16.1-py3-none-any.whl", "has_sig": false, "md5_digest": "005af82a7f71731917473bf712035a75", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 120445, "upload_time": "2019-11-12T00:52:59", "upload_time_iso_8601": "2019-11-12T00:52:59.057728Z", "url": "https://files.pythonhosted.org/packages/f4/fd/d39fc3bd2121d98b2792f30f99082a3ab6774ae81d9d9c0753b85a674a56/aws_cdk.custom_resources-1.16.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebe0812d776294dbc205cc4e6e80d51f", "sha256": "0a2d36666180c7dd350a2d2efcfc148d9765d13241a8dbeffddb4c4e544073ba" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.16.1.tar.gz", "has_sig": false, "md5_digest": "ebe0812d776294dbc205cc4e6e80d51f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 124004, "upload_time": "2019-11-12T00:55:45", "upload_time_iso_8601": "2019-11-12T00:55:45.398525Z", "url": "https://files.pythonhosted.org/packages/ea/55/b02a2c48a0a62596ef291be0cc21af3dba4c8919a5c78b8c906cfe2d4e6e/aws-cdk.custom-resources-1.16.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.2": [ { "comment_text": "", "digests": { "md5": "d90f33d3fcf0ddca651d6b7115dc27e0", "sha256": "e60efdf0d6e49befb344225d87ccc49704d22c389ce00b28baa2dab92383ee1f" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.16.2-py3-none-any.whl", "has_sig": false, "md5_digest": "d90f33d3fcf0ddca651d6b7115dc27e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 120500, "upload_time": "2019-11-12T12:52:51", "upload_time_iso_8601": "2019-11-12T12:52:51.338996Z", "url": "https://files.pythonhosted.org/packages/3b/4a/263f308c63c2be165dc0515bd427bf04fdbf274b243f22c980f184200bcd/aws_cdk.custom_resources-1.16.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95e74e745d751e3e615ce7889472f09e", "sha256": "7e5690898baf688134ba2def7f4160c9b89578e0a2ad3c806a8e973257c35a25" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.16.2.tar.gz", "has_sig": false, "md5_digest": "95e74e745d751e3e615ce7889472f09e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 124059, "upload_time": "2019-11-12T12:55:53", "upload_time_iso_8601": "2019-11-12T12:55:53.665888Z", "url": "https://files.pythonhosted.org/packages/d6/fa/f8bd30fa2b9d88b72a6728f8a0db2d5a53aa579996534b22e6e629f61a23/aws-cdk.custom-resources-1.16.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.16.3": [ { "comment_text": "", "digests": { "md5": "e03a1fb65931119ad747ef4189344e01", "sha256": "f27c34d5ba5decc6fb6bf066a4f45e270b8449edef0594bbe76372fc9d3dadda" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.16.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e03a1fb65931119ad747ef4189344e01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 120615, "upload_time": "2019-11-13T15:27:41", "upload_time_iso_8601": "2019-11-13T15:27:41.989894Z", "url": "https://files.pythonhosted.org/packages/0f/7e/3176c41f6645ae739051c630f4d54a35313b7cee7444dda592ccf4587d26/aws_cdk.custom_resources-1.16.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dad35fb2b1391978df20931cd2c08ee5", "sha256": "e4919e5b6f376985c4379054f8c315cf3e94d78c20282168a39297d625fd6f72" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.16.3.tar.gz", "has_sig": false, "md5_digest": "dad35fb2b1391978df20931cd2c08ee5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 124326, "upload_time": "2019-11-13T15:30:50", "upload_time_iso_8601": "2019-11-13T15:30:50.191676Z", "url": "https://files.pythonhosted.org/packages/0b/b4/4c403d39f0beb4684c4940bd3577db57df005c33bf7a4b6e0f3aa3f0f7a7/aws-cdk.custom-resources-1.16.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "c18f1417539e84d91eb9b2295239385a", "sha256": "44804d53d9bf2cac70570530d04981092a8e09e4fb95dfe0e31c315c43173e62" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.17.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c18f1417539e84d91eb9b2295239385a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 121716, "upload_time": "2019-11-19T18:03:07", "upload_time_iso_8601": "2019-11-19T18:03:07.585473Z", "url": "https://files.pythonhosted.org/packages/d3/eb/11a93dfc3da4a43c1d520b9f9e531068d13548bd5af2b64d5dd47245907d/aws_cdk.custom_resources-1.17.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "687595133bbd1a0121af69e990a32aed", "sha256": "f87618f277ff3f50ae5ba36ebc9e322b4d6cfe1d48f00a59d7d3649e47fa333a" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.17.0.tar.gz", "has_sig": false, "md5_digest": "687595133bbd1a0121af69e990a32aed", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 125524, "upload_time": "2019-11-19T18:06:01", "upload_time_iso_8601": "2019-11-19T18:06:01.446785Z", "url": "https://files.pythonhosted.org/packages/94/4d/8a85366080f3ed4cf0245d22c6a58ae12037378ea07d8755c09c5f1f8905/aws-cdk.custom-resources-1.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.17.1": [ { "comment_text": "", "digests": { "md5": "5aff280e687964814b7c34a94f6d1ea5", "sha256": "6df097d5a169577e9bced242cfee23fba37a0baa98230458c3eced367b920f5c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.17.1-py3-none-any.whl", "has_sig": false, "md5_digest": "5aff280e687964814b7c34a94f6d1ea5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 121780, "upload_time": "2019-11-19T22:03:36", "upload_time_iso_8601": "2019-11-19T22:03:36.271644Z", "url": "https://files.pythonhosted.org/packages/09/4b/2b69a038778f57fa61b3a36d30cdce07699eadc82398f712156464b195cd/aws_cdk.custom_resources-1.17.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95783fc708cb344f1ebbabb40a36114d", "sha256": "f8e1a9998d2d6edf1f71e6b7f87b697e7f4ccd538986b52e444b08cdd94cd1ea" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.17.1.tar.gz", "has_sig": false, "md5_digest": "95783fc708cb344f1ebbabb40a36114d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 125607, "upload_time": "2019-11-19T22:06:28", "upload_time_iso_8601": "2019-11-19T22:06:28.702788Z", "url": "https://files.pythonhosted.org/packages/64/c8/03dc3a3cf29456ec7dc11a1e5fc75ab3e1083bce55443b313fe983c1f217/aws-cdk.custom-resources-1.17.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "6210bba28126852951d52c40dcf6ed79", "sha256": "b38eb549eddb75fb9a27b078004f1bd14553613baeaf35f15f8e1d6ee5e5a9b5" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.18.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6210bba28126852951d52c40dcf6ed79", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 121719, "upload_time": "2019-11-25T15:42:39", "upload_time_iso_8601": "2019-11-25T15:42:39.191684Z", "url": "https://files.pythonhosted.org/packages/01/e1/af27dce2d1f2bcbc0a1d2cc855224e9c72559db81f5981128692927bccae/aws_cdk.custom_resources-1.18.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e30ac45c149e60f0d918be9d3094fae2", "sha256": "9318a1b7a4a33fbbe30c8ea5f534c53c1c66e44a99c01e037d0239c6ff3e652d" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.18.0.tar.gz", "has_sig": false, "md5_digest": "e30ac45c149e60f0d918be9d3094fae2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 125551, "upload_time": "2019-11-25T15:45:27", "upload_time_iso_8601": "2019-11-25T15:45:27.790362Z", "url": "https://files.pythonhosted.org/packages/63/88/ed434a49a84af829cc0f716bf1778b78960c9521ea6d230230152fa15f82/aws-cdk.custom-resources-1.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.19.0": [ { "comment_text": "", "digests": { "md5": "10dbc99d4e228415c5ba5d4ee030fa20", "sha256": "cb19806b792d546533f1046c7294d398e902ec579e87add349e6de91c1991443" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.19.0-py3-none-any.whl", "has_sig": false, "md5_digest": "10dbc99d4e228415c5ba5d4ee030fa20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 122082, "upload_time": "2019-12-17T14:52:24", "upload_time_iso_8601": "2019-12-17T14:52:24.571353Z", "url": "https://files.pythonhosted.org/packages/d2/22/3f8631d39080574bc31e75712af436db1342a26376e392c9c4b5499b995f/aws_cdk.custom_resources-1.19.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c459851fe1014541a47d884f5ac9ef82", "sha256": "b2e229ab490a89f24b32869246d1e639370afbc228ec7f5a93d3491b2bb011b5" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.19.0.tar.gz", "has_sig": false, "md5_digest": "c459851fe1014541a47d884f5ac9ef82", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 125921, "upload_time": "2019-12-17T14:55:22", "upload_time_iso_8601": "2019-12-17T14:55:22.993637Z", "url": "https://files.pythonhosted.org/packages/6d/84/953000351506d30760503f209310e7904b195422380731ed57ddf0810cc9/aws-cdk.custom-resources-1.19.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "6abcdef75fb92c400b1da547104cfdec", "sha256": "ec3e99b2259baf1ce0eed5344c3bba348d7b7c519e15c1302150f55e6ad15bcd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6abcdef75fb92c400b1da547104cfdec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41899, "upload_time": "2019-07-25T17:50:16", "upload_time_iso_8601": "2019-07-25T17:50:16.025383Z", "url": "https://files.pythonhosted.org/packages/6c/17/f6c7db9d59cc01780e622a4cac6297f4d1ca4dd139f6c2c0e0740017fb93/aws_cdk.custom_resources-1.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ecc9ee70cdf79813d3fdbd449a56ace", "sha256": "de76cc8b07c236a606ca291bfe25c380effd42321c9ac0adaa4c45c5887edc83" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.2.0.tar.gz", "has_sig": false, "md5_digest": "2ecc9ee70cdf79813d3fdbd449a56ace", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 42816, "upload_time": "2019-07-25T17:52:41", "upload_time_iso_8601": "2019-07-25T17:52:41.034598Z", "url": "https://files.pythonhosted.org/packages/cf/be/53c169af4fcb74faf9e21ce4d75eca01470b1dde6839979f37c8df79271f/aws-cdk.custom-resources-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.20.0": [ { "comment_text": "", "digests": { "md5": "af46460561b599639edbfbf687f6ae6b", "sha256": "4388fc826e142cc2e4d9b2cfaa48571b4454af2fdfd1d70687a970c54c603d0f" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.20.0-py3-none-any.whl", "has_sig": false, "md5_digest": "af46460561b599639edbfbf687f6ae6b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129128, "upload_time": "2020-01-07T23:59:43", "upload_time_iso_8601": "2020-01-07T23:59:43.590102Z", "url": "https://files.pythonhosted.org/packages/d3/35/4d7e95c82660c0b0c8aba969afa2770fe738c1afd4d5cb04da225e93b314/aws_cdk.custom_resources-1.20.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8760864c3fd5d4822d1c56bbbfade27", "sha256": "a1f81897ccbd214ad10ade8ec112a8dc5f6bb9d3f11611006568d5ad2aae725a" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.20.0.tar.gz", "has_sig": false, "md5_digest": "b8760864c3fd5d4822d1c56bbbfade27", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 132652, "upload_time": "2020-01-08T00:02:41", "upload_time_iso_8601": "2020-01-08T00:02:41.130782Z", "url": "https://files.pythonhosted.org/packages/45/4a/4bd6158d398a06c8a3e0ef3cbfaabc4175703332070d971560d8095d1667/aws-cdk.custom-resources-1.20.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21.0": [ { "comment_text": "", "digests": { "md5": "dc885afd795f719ab124e4aabcb90678", "sha256": "e0bf80060cd62baa446df8484e7645c79219547190d26ad69741d5c0230f554d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.21.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dc885afd795f719ab124e4aabcb90678", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129450, "upload_time": "2020-01-16T02:50:16", "upload_time_iso_8601": "2020-01-16T02:50:16.970075Z", "url": "https://files.pythonhosted.org/packages/9e/07/bf02391d27f4b5b4bb33f59cb9df66e6afaebd8e89051dabef9ccebaaadf/aws_cdk.custom_resources-1.21.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66d7933144a28325b9612780fe714cb5", "sha256": "f61a8916b268337379c235436e6055b788d63de854a3798053ae305e1d346f61" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.21.0.tar.gz", "has_sig": false, "md5_digest": "66d7933144a28325b9612780fe714cb5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133012, "upload_time": "2020-01-16T02:55:43", "upload_time_iso_8601": "2020-01-16T02:55:43.905403Z", "url": "https://files.pythonhosted.org/packages/e5/f8/5925eaa4daec93a3c7a1575a16465a328e5925654475585df1f7470674ed/aws-cdk.custom-resources-1.21.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.21.1": [ { "comment_text": "", "digests": { "md5": "89d77fb50433beda00290621727aa8cc", "sha256": "eb59e744cfc1d95444b6c767b612c4e0dc0ac9e73ca33a3dccb4b30f2a55b7d4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.21.1-py3-none-any.whl", "has_sig": false, "md5_digest": "89d77fb50433beda00290621727aa8cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129448, "upload_time": "2020-01-16T19:31:40", "upload_time_iso_8601": "2020-01-16T19:31:40.536551Z", "url": "https://files.pythonhosted.org/packages/0b/34/bf8903ef01ec1ac85e5d6237a3d6ca01d75ffdba33200bee9c1e63dd4ba5/aws_cdk.custom_resources-1.21.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9a0d047e86e83a04efae561fbe4c06ad", "sha256": "3cb3bfcdef20dae3bcefcc593555d305a302c6ea2311167b1b7ba11996d548f1" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.21.1.tar.gz", "has_sig": false, "md5_digest": "9a0d047e86e83a04efae561fbe4c06ad", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133015, "upload_time": "2020-01-16T19:34:58", "upload_time_iso_8601": "2020-01-16T19:34:58.845035Z", "url": "https://files.pythonhosted.org/packages/b9/52/d8623e60b380c54869274c1310e697577bfca9828824167ec1093a88d1fa/aws-cdk.custom-resources-1.21.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.22.0": [ { "comment_text": "", "digests": { "md5": "8de6f684a323b6fc98a6746bf93cff3d", "sha256": "4751f260a56d913a6307fbb476bb792dd5325fa75744ce4b4e6267e881b84436" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.22.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8de6f684a323b6fc98a6746bf93cff3d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129443, "upload_time": "2020-01-23T19:15:35", "upload_time_iso_8601": "2020-01-23T19:15:35.273367Z", "url": "https://files.pythonhosted.org/packages/1d/5d/93e43bfffc5d9b10a6836f3bba9d78f65b9781ef03466b54434032948e74/aws_cdk.custom_resources-1.22.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f840f08a7ce0dfb5bc0c5b2a30125c5e", "sha256": "c5dd930043cd5a1a253aed3b0f1434d484d4e9f8d97120ddfa0bd6e62d1d29ab" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.22.0.tar.gz", "has_sig": false, "md5_digest": "f840f08a7ce0dfb5bc0c5b2a30125c5e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133006, "upload_time": "2020-01-23T19:18:36", "upload_time_iso_8601": "2020-01-23T19:18:36.917084Z", "url": "https://files.pythonhosted.org/packages/6f/65/2fab5615adebab65083ba15d6d63d07cb44bf878d625e24eb518f4b7e653/aws-cdk.custom-resources-1.22.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.23.0": [ { "comment_text": "", "digests": { "md5": "9ee7649ddaf66436c5127601a31735d8", "sha256": "6dafa7bcb39673ec02869bce1f899e65ffb47d532ae1c200f60df8f27b5afc01" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.23.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9ee7649ddaf66436c5127601a31735d8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129609, "upload_time": "2020-02-07T03:50:15", "upload_time_iso_8601": "2020-02-07T03:50:15.542960Z", "url": "https://files.pythonhosted.org/packages/6c/81/9d1b9092eafedef19a66ad906ac05af8377d9156a2ce2e91be9977da9fa9/aws_cdk.custom_resources-1.23.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac7abac3780d2071fb7306c77d3427ca", "sha256": "a0d0b1e6d6af9e845d195dcd9ee8a5f94355ce4087e13c3cde4ba0938572ca78" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.23.0.tar.gz", "has_sig": false, "md5_digest": "ac7abac3780d2071fb7306c77d3427ca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133198, "upload_time": "2020-02-07T03:53:11", "upload_time_iso_8601": "2020-02-07T03:53:11.950789Z", "url": "https://files.pythonhosted.org/packages/8a/f7/50d76f0f26a8f84ab19b41eef4a6d163506e5e09a9a0f08727f32ece65d9/aws-cdk.custom-resources-1.23.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.24.0": [ { "comment_text": "", "digests": { "md5": "b3c75cdaa9006fbc75287e64010da38e", "sha256": "8ef1efde9fde5b4384821c10d35db4ca7061352d6658cc1eb1b33a81b51b54ac" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.24.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b3c75cdaa9006fbc75287e64010da38e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129619, "upload_time": "2020-02-14T10:12:39", "upload_time_iso_8601": "2020-02-14T10:12:39.620728Z", "url": "https://files.pythonhosted.org/packages/88/af/5d7fd85004a9917eb5fd8dd466a27ddb7da04debe021ce889cb2ee9c8694/aws_cdk.custom_resources-1.24.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f29bfbbdbc3a07ade7cc32a2f6d2c3e5", "sha256": "fc339bb03824c98ccc514a32cfa53f2498b5a3d3f7a54aaafa5b11e5d536c56d" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.24.0.tar.gz", "has_sig": false, "md5_digest": "f29bfbbdbc3a07ade7cc32a2f6d2c3e5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133188, "upload_time": "2020-02-14T10:15:47", "upload_time_iso_8601": "2020-02-14T10:15:47.942050Z", "url": "https://files.pythonhosted.org/packages/f6/d2/9cfcdca59fae663f8187ce2176b964b7f2ee7ebd6a23d5c5bc39a2a70510/aws-cdk.custom-resources-1.24.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.25.0": [ { "comment_text": "", "digests": { "md5": "399e37d328efed7e6420c0e57f72371a", "sha256": "f03cae348cea0463d02eb2a75e575515bb8f7e81f86dcfbcb2f68fbbf5b59e1b" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.25.0-py3-none-any.whl", "has_sig": false, "md5_digest": "399e37d328efed7e6420c0e57f72371a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129616, "upload_time": "2020-02-19T10:01:30", "upload_time_iso_8601": "2020-02-19T10:01:30.782147Z", "url": "https://files.pythonhosted.org/packages/40/64/8613b26cfbe729104d85878c115dccde729eadfd89a3f055a748b1f1242d/aws_cdk.custom_resources-1.25.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b289f02e27b6a95521853a6149b6c0fe", "sha256": "3ce90893d2d1141c067f3b216359d317abd929a28a7a46a63708575c7898ad35" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.25.0.tar.gz", "has_sig": false, "md5_digest": "b289f02e27b6a95521853a6149b6c0fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133192, "upload_time": "2020-02-19T10:04:21", "upload_time_iso_8601": "2020-02-19T10:04:21.445557Z", "url": "https://files.pythonhosted.org/packages/91/b5/99839ff307aac4bab6c83fb873b9fea93bbbe48081656a9d621cb15357f4/aws-cdk.custom-resources-1.25.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.26.0": [ { "comment_text": "", "digests": { "md5": "d55e12396448b872629a4d73db2a1a61", "sha256": "c5a24e1c0b90a763b8eb2838458a9c0045f2315af84d8d239936794474d68446" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.26.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d55e12396448b872629a4d73db2a1a61", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 129612, "upload_time": "2020-02-26T09:49:12", "upload_time_iso_8601": "2020-02-26T09:49:12.101726Z", "url": "https://files.pythonhosted.org/packages/34/d4/ec41ab166185808000ffb77bde687d0ce67497bc7cc168a8de818c5e6971/aws_cdk.custom_resources-1.26.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "faa5804b0f412aeeb655a9f5d2ecc39e", "sha256": "0a94bdc45d5b81629e9852742a36956ded2587853166c8f48608d3993fbfcd90" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.26.0.tar.gz", "has_sig": false, "md5_digest": "faa5804b0f412aeeb655a9f5d2ecc39e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 133188, "upload_time": "2020-02-26T09:52:27", "upload_time_iso_8601": "2020-02-26T09:52:27.783931Z", "url": "https://files.pythonhosted.org/packages/2f/cd/1e117bcdc0daf826c38376605ac44dfcc474999e6778a568c8a12b514098/aws-cdk.custom-resources-1.26.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.27.0": [ { "comment_text": "", "digests": { "md5": "56fe577872b79ad7e371ff3bfa54a7ac", "sha256": "550da3153206c2f8d50bd80ee65d40fb3f29a1c2def4e8b32bdd40db2faa3016" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.27.0-py3-none-any.whl", "has_sig": false, "md5_digest": "56fe577872b79ad7e371ff3bfa54a7ac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 133034, "upload_time": "2020-03-03T12:44:36", "upload_time_iso_8601": "2020-03-03T12:44:36.381200Z", "url": "https://files.pythonhosted.org/packages/12/18/b3e3c3d45b7d424e77d8138712b2d21b5b86465f6b42685367d85c01d139/aws_cdk.custom_resources-1.27.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "27d8734f53e7ab4b0db048717f28cf3b", "sha256": "e45bb22a55aae2b1c924ede2304cb3200d99534e8ea32822552b32bf14a7ce18" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.27.0.tar.gz", "has_sig": false, "md5_digest": "27d8734f53e7ab4b0db048717f28cf3b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 136832, "upload_time": "2020-03-03T12:47:41", "upload_time_iso_8601": "2020-03-03T12:47:41.338670Z", "url": "https://files.pythonhosted.org/packages/6e/1a/43dafc2f7443cd61a959f17915769a297b8e312185dd6da6e768bb0c1764/aws-cdk.custom-resources-1.27.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.28.0": [ { "comment_text": "", "digests": { "md5": "3d666ac7f5bb5057dd3672b1ae8da81e", "sha256": "82dbca9a84ad521998f37037d68437c892c4468c899a84b80f4d574f5dd46c5a" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.28.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3d666ac7f5bb5057dd3672b1ae8da81e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 142095, "upload_time": "2020-03-16T09:47:05", "upload_time_iso_8601": "2020-03-16T09:47:05.871675Z", "url": "https://files.pythonhosted.org/packages/96/5e/9b352548930fd858eeb0f38110dec96e14dd7dda54a3100a34abf08eab8e/aws_cdk.custom_resources-1.28.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03dc475944d24fc99c83e9576782d317", "sha256": "dd0fbd4a699891f977a74dbf932c15579793ced4ee1afab88d6cb785a2d79d25" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.28.0.tar.gz", "has_sig": false, "md5_digest": "03dc475944d24fc99c83e9576782d317", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145475, "upload_time": "2020-03-16T09:49:47", "upload_time_iso_8601": "2020-03-16T09:49:47.649704Z", "url": "https://files.pythonhosted.org/packages/4c/a1/3714006d6e6e986afa4080e49e198999812fc03a3dd2c5401bd05a293ffd/aws-cdk.custom-resources-1.28.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.29.0": [ { "comment_text": "", "digests": { "md5": "2f1cb1b38ddc74892259544d536b720a", "sha256": "3727bf707b471c9ccea9292536809a68c668397633d5dd96f68dfabfba443ab9" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.29.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2f1cb1b38ddc74892259544d536b720a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 142199, "upload_time": "2020-03-18T11:24:02", "upload_time_iso_8601": "2020-03-18T11:24:02.400338Z", "url": "https://files.pythonhosted.org/packages/af/67/2b0a04adaaeb0543bcd9aac9e2f0290a50b91af7e87c00a34d0aad71ecc1/aws_cdk.custom_resources-1.29.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dbd02904ceb522210532835bf53af1e9", "sha256": "ee29bc9ff1bdc80a2234e7c33d806415df93538608d8e1223f1636eb7f120064" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.29.0.tar.gz", "has_sig": false, "md5_digest": "dbd02904ceb522210532835bf53af1e9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145574, "upload_time": "2020-03-18T11:26:36", "upload_time_iso_8601": "2020-03-18T11:26:36.398781Z", "url": "https://files.pythonhosted.org/packages/1b/89/0036078d69b1fbd01467dbb577832d35f04e53ba54fef6d3c5fc6c264117/aws-cdk.custom-resources-1.29.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "1c27fc93391f71c6627b07a0fa4134f6", "sha256": "8ba87fcc7340762c4107ce8b1467d2762093f56b74e8f97d230bb175ab37d128" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "1c27fc93391f71c6627b07a0fa4134f6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 41897, "upload_time": "2019-08-02T11:16:30", "upload_time_iso_8601": "2019-08-02T11:16:30.231258Z", "url": "https://files.pythonhosted.org/packages/8e/33/3aa4a761bf93ada95ab0843fe61660e64464e7a577b1240a743a502f0978/aws_cdk.custom_resources-1.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fc431cd9e31d818f1facc0fc168e0d71", "sha256": "7ce22106800193f8b36ecc82c0fc9238e5ab2c7f7a063dbb57290469ff24eac8" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.3.0.tar.gz", "has_sig": false, "md5_digest": "fc431cd9e31d818f1facc0fc168e0d71", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 44565, "upload_time": "2019-08-02T11:19:04", "upload_time_iso_8601": "2019-08-02T11:19:04.258635Z", "url": "https://files.pythonhosted.org/packages/01/73/4c52fa0c21e1618c9060c8f3e937ea1ddd3e7efd2441b53831e40cfd0789/aws-cdk.custom-resources-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.30.0": [ { "comment_text": "", "digests": { "md5": "81cb7855381e318ca30c5b85496db5e9", "sha256": "7e20e931e78c9348a49ef5747b81bc4599362941c14fe1bf90d95ed18a126af1" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.30.0-py3-none-any.whl", "has_sig": false, "md5_digest": "81cb7855381e318ca30c5b85496db5e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 142198, "upload_time": "2020-03-18T18:01:01", "upload_time_iso_8601": "2020-03-18T18:01:01.175592Z", "url": "https://files.pythonhosted.org/packages/d1/de/b43e5ea22336a1fe081b2f01b207e09fd08f5cba214c499fe747a1219bc6/aws_cdk.custom_resources-1.30.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f647fc9c83be8abe88da19b19d15676", "sha256": "091784179a1da48aa6ba6886221b1f3dd52b75581dc73d05c138434598cd3a88" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.30.0.tar.gz", "has_sig": false, "md5_digest": "6f647fc9c83be8abe88da19b19d15676", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145571, "upload_time": "2020-03-18T18:03:45", "upload_time_iso_8601": "2020-03-18T18:03:45.398062Z", "url": "https://files.pythonhosted.org/packages/2b/42/a09bff9505833de464332c3ef1221fdcf03e53e1f4fe9058645006c413ec/aws-cdk.custom-resources-1.30.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.31.0": [ { "comment_text": "", "digests": { "md5": "2814d7ff1c8cdadd813a2e39dd57fbd0", "sha256": "ff8954dc04cf61a52ef543867f60e54430138fc3babcd25750ed9b6cd13d77b8" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.31.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2814d7ff1c8cdadd813a2e39dd57fbd0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 142289, "upload_time": "2020-03-24T21:16:51", "upload_time_iso_8601": "2020-03-24T21:16:51.928220Z", "url": "https://files.pythonhosted.org/packages/58/a6/3b22599809d8da874497d26dd222504f191b7698531f332e4234e84b86de/aws_cdk.custom_resources-1.31.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3a852bf38e7271e672668a5a3855ead0", "sha256": "700d0df0653b4286856e8fbd73fd07237b87b0d283d5930c05f61cbe25012ad0" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.31.0.tar.gz", "has_sig": false, "md5_digest": "3a852bf38e7271e672668a5a3855ead0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145610, "upload_time": "2020-03-24T21:19:42", "upload_time_iso_8601": "2020-03-24T21:19:42.409372Z", "url": "https://files.pythonhosted.org/packages/aa/f0/c4f7ec89a975134e45263f30005cb21ebc048e31c4d1408fd55c0623d86c/aws-cdk.custom-resources-1.31.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.32.0": [ { "comment_text": "", "digests": { "md5": "2ef66972194a4564873de10512f79c8d", "sha256": "b7642ec0c70bc268a4a29b0ab405ce0f2d005ff63666165c61d20229883efa74" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.32.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2ef66972194a4564873de10512f79c8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 141805, "upload_time": "2020-04-07T13:29:14", "upload_time_iso_8601": "2020-04-07T13:29:14.262129Z", "url": "https://files.pythonhosted.org/packages/79/41/f61c1c185fd7d841280d7b4be8e514bd612dec9acb3c003a0cce326d52f5/aws_cdk.custom_resources-1.32.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "717816c8f228bccd36986f5d082d0ada", "sha256": "b9e366b69c512b74d30ecfed8858340576194f46811e33813fbf8f3e84366b6b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.32.0.tar.gz", "has_sig": false, "md5_digest": "717816c8f228bccd36986f5d082d0ada", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145290, "upload_time": "2020-04-07T13:31:53", "upload_time_iso_8601": "2020-04-07T13:31:53.785960Z", "url": "https://files.pythonhosted.org/packages/05/63/8671b42b3d0a6dddda01f5b5d0e23050e66e4acc93e1ade1ed69d3a33fb5/aws-cdk.custom-resources-1.32.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.32.1": [ { "comment_text": "", "digests": { "md5": "7853e64a0c0cfd17f4ed3b589cbe169c", "sha256": "1c3d7f05de00ea32fddaa50285e9c0492bce21802d3a2fb71272e3271d93c1fd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.32.1-py3-none-any.whl", "has_sig": false, "md5_digest": "7853e64a0c0cfd17f4ed3b589cbe169c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 141816, "upload_time": "2020-04-09T12:46:07", "upload_time_iso_8601": "2020-04-09T12:46:07.033027Z", "url": "https://files.pythonhosted.org/packages/1a/50/72331de2443570be84a1feabd91a0fd78538a02ec7572f4e59d2fb3f9a31/aws_cdk.custom_resources-1.32.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e904b8cd6697a8b0a5bbe59592d2baaa", "sha256": "e93109bdd2be25e37c0da5b8848591d6c008ba3812ee21b44ad211198d81f6af" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.32.1.tar.gz", "has_sig": false, "md5_digest": "e904b8cd6697a8b0a5bbe59592d2baaa", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145316, "upload_time": "2020-04-09T12:48:41", "upload_time_iso_8601": "2020-04-09T12:48:41.036598Z", "url": "https://files.pythonhosted.org/packages/dd/2f/2dafef4eea7b1f971c318fa72ccaa5db4e3f4fd74b73251e36b63d5ce132/aws-cdk.custom-resources-1.32.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.32.2": [ { "comment_text": "", "digests": { "md5": "da04083440dbcd47f7a9d81e58ac4fb2", "sha256": "c95dfcb1f1874547981cce4c7974bc10ab44a75db2dd3e3d8db62afb59469649" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.32.2-py3-none-any.whl", "has_sig": false, "md5_digest": "da04083440dbcd47f7a9d81e58ac4fb2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 141818, "upload_time": "2020-04-10T15:27:05", "upload_time_iso_8601": "2020-04-10T15:27:05.348989Z", "url": "https://files.pythonhosted.org/packages/01/59/9195b9b7a15243bb2af78b6ba9b68844f7657e7f72a9d488af43a0da3213/aws_cdk.custom_resources-1.32.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0389799f98f5b8cef3fc46167e11be5a", "sha256": "c3745a4d9115be8e2492d5db5b3664f46dda1046a9efb517f02c71556c5cab0c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.32.2.tar.gz", "has_sig": false, "md5_digest": "0389799f98f5b8cef3fc46167e11be5a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 145316, "upload_time": "2020-04-10T15:29:36", "upload_time_iso_8601": "2020-04-10T15:29:36.083349Z", "url": "https://files.pythonhosted.org/packages/46/1f/cf003f6cda976c1a1ddd38e257db9f032d1138b5be05469fb7e326e53e7a/aws-cdk.custom-resources-1.32.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.33.0": [ { "comment_text": "", "digests": { "md5": "85d55d8edabeb438ced487058afee1d4", "sha256": "655662ff45430a0803d1e7d11de0a9b0bde03e2bb97ea7a2feb7491f7e4ee790" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.33.0-py3-none-any.whl", "has_sig": false, "md5_digest": "85d55d8edabeb438ced487058afee1d4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146454, "upload_time": "2020-04-17T20:20:23", "upload_time_iso_8601": "2020-04-17T20:20:23.721554Z", "url": "https://files.pythonhosted.org/packages/65/8c/d57558bf19f1784a1624507a03a748e23b62456e1e804e8408ac427b6193/aws_cdk.custom_resources-1.33.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2da336ab9813e156ec072b114dd2f6cc", "sha256": "081107ecb0bb7704b9bbdaa90b638cc1eccfb02ba2c58517d6ab98902925ca05" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.33.0.tar.gz", "has_sig": false, "md5_digest": "2da336ab9813e156ec072b114dd2f6cc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150054, "upload_time": "2020-04-17T20:23:04", "upload_time_iso_8601": "2020-04-17T20:23:04.756982Z", "url": "https://files.pythonhosted.org/packages/29/92/1e81b1c9a5be3182aca15e23ea244ede6dbe05d29005b7a55663998a9b70/aws-cdk.custom-resources-1.33.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.33.1": [ { "comment_text": "", "digests": { "md5": "1cae5c40edea6e8255c8d000f90c442d", "sha256": "d868f745ef986c11f0cdbcee00a4dd6f569adb827970fe632330f34226f2c556" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.33.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1cae5c40edea6e8255c8d000f90c442d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146412, "upload_time": "2020-04-19T13:56:47", "upload_time_iso_8601": "2020-04-19T13:56:47.027752Z", "url": "https://files.pythonhosted.org/packages/5a/9e/86491d0280ab6ad7706e99ae2626fc549f56d6acee78440fc54eda5007ab/aws_cdk.custom_resources-1.33.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3915cc6669cf1e13d2992d36cacafdd9", "sha256": "56e85e2c59e410cbbbd23c4ff74667007b929f2983ad73de36e9165679cfc8c7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.33.1.tar.gz", "has_sig": false, "md5_digest": "3915cc6669cf1e13d2992d36cacafdd9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150050, "upload_time": "2020-04-19T13:59:26", "upload_time_iso_8601": "2020-04-19T13:59:26.136354Z", "url": "https://files.pythonhosted.org/packages/2d/58/33f37d6b620d0a5f7239bb634cdad984212dc15c6e682ec323552ebd02e0/aws-cdk.custom-resources-1.33.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.34.0": [ { "comment_text": "", "digests": { "md5": "eaf08adeb94377e325c2b966638427e3", "sha256": "bc93a3b96b7777df8b7d5ed7063c5c03bf59f8ff24b9c057308c79c7fa57b0f8" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.34.0-py3-none-any.whl", "has_sig": false, "md5_digest": "eaf08adeb94377e325c2b966638427e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146372, "upload_time": "2020-04-21T18:19:01", "upload_time_iso_8601": "2020-04-21T18:19:01.126471Z", "url": "https://files.pythonhosted.org/packages/73/2e/794234928bcefd7259544eca47d5cb4315aa28339620af35af66d659ee94/aws_cdk.custom_resources-1.34.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "077484cb0896107ad7537e427bef8803", "sha256": "2880b5b68a1b5447972bc3b6aac43700906a8f27947f75abb030ac9e234de3ec" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.34.0.tar.gz", "has_sig": false, "md5_digest": "077484cb0896107ad7537e427bef8803", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 149997, "upload_time": "2020-04-21T18:21:42", "upload_time_iso_8601": "2020-04-21T18:21:42.743519Z", "url": "https://files.pythonhosted.org/packages/9b/85/d1c0c6aa69dc58f5f6ebcbe6e7cb3e1540c725723ce0c8457646527890ee/aws-cdk.custom-resources-1.34.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.34.1": [ { "comment_text": "", "digests": { "md5": "50018de9d660f9807bd09f8c85083bd2", "sha256": "dce91ae141312b7adb95947abf238c00b5c2707d396600b6761909c243a61c68" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.34.1-py3-none-any.whl", "has_sig": false, "md5_digest": "50018de9d660f9807bd09f8c85083bd2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146375, "upload_time": "2020-04-22T04:40:26", "upload_time_iso_8601": "2020-04-22T04:40:26.620510Z", "url": "https://files.pythonhosted.org/packages/aa/74/469691e5716c0d185f9fcb2907d5cca2eeb16d40bfde8759e5e407533bfc/aws_cdk.custom_resources-1.34.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2a4121f823befae6a0457219e94e8cd", "sha256": "3fa47c05c81709d0470e67dd8be7ffec0ccfa2738aa30c4dc38b22ab681011f1" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.34.1.tar.gz", "has_sig": false, "md5_digest": "c2a4121f823befae6a0457219e94e8cd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150005, "upload_time": "2020-04-22T04:43:13", "upload_time_iso_8601": "2020-04-22T04:43:13.761119Z", "url": "https://files.pythonhosted.org/packages/5b/51/d10055fe214b65a5c3fe61b4167e309b74b7dc79d0a4640a8908c9a91212/aws-cdk.custom-resources-1.34.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.35.0": [ { "comment_text": "", "digests": { "md5": "8d064edbea54f1e34d5b43bfab0b670e", "sha256": "3d97fa999b85383bd0d5ad9444e78860d05d35c71bb45dd33b50a66488fd29c2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.35.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8d064edbea54f1e34d5b43bfab0b670e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146388, "upload_time": "2020-04-24T12:26:07", "upload_time_iso_8601": "2020-04-24T12:26:07.566922Z", "url": "https://files.pythonhosted.org/packages/8b/f9/725a6d53cb10947a9b2de7493d29bc5361725e6e3fa853cc7e5137b1f3e6/aws_cdk.custom_resources-1.35.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f34e9f557323cd35820cd27466a56208", "sha256": "dba62b7f59f0a7009125eedce2e4a090446d174cfc46857afdcb73bb18a18172" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.35.0.tar.gz", "has_sig": false, "md5_digest": "f34e9f557323cd35820cd27466a56208", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150006, "upload_time": "2020-04-24T12:28:21", "upload_time_iso_8601": "2020-04-24T12:28:21.295490Z", "url": "https://files.pythonhosted.org/packages/ab/01/4feba265fb353f307dce3f4d2d0a6752d56c8f3056d8b773ec19bc376333/aws-cdk.custom-resources-1.35.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.36.0": [ { "comment_text": "", "digests": { "md5": "6dbfa32bbaca549fa3ce84689eb3b019", "sha256": "b98b495dff8631cbd2122ef0e68b842d1d226f6391ff34ecde14f0ef6cdae676" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.36.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6dbfa32bbaca549fa3ce84689eb3b019", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146836, "upload_time": "2020-04-28T12:13:13", "upload_time_iso_8601": "2020-04-28T12:13:13.288686Z", "url": "https://files.pythonhosted.org/packages/b5/35/8be24fdddf9e44beacb5107742d634511dd894da0a263e2abb81d5f73dcc/aws_cdk.custom_resources-1.36.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9518c514a2d35eea2bde39b595f75ee", "sha256": "d85d863caaaf32709207965d2f79a1a84f1153d94bb110fc8e5087cad4e7fcaa" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.36.0.tar.gz", "has_sig": false, "md5_digest": "e9518c514a2d35eea2bde39b595f75ee", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150499, "upload_time": "2020-04-28T12:15:27", "upload_time_iso_8601": "2020-04-28T12:15:27.214783Z", "url": "https://files.pythonhosted.org/packages/8e/a4/49ce0077743be6d84fc0b0ca91378612dad4d69049e33cbda2fbee7ec0e5/aws-cdk.custom-resources-1.36.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.36.1": [ { "comment_text": "", "digests": { "md5": "f725492791bc4a82d459b810945298c9", "sha256": "3cedf839873766003e0da0e41664b23198e43ab2357a96113e0cc594bb7a3fad" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.36.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f725492791bc4a82d459b810945298c9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146860, "upload_time": "2020-04-29T23:50:01", "upload_time_iso_8601": "2020-04-29T23:50:01.308765Z", "url": "https://files.pythonhosted.org/packages/98/85/4cbc92299dc7455c0810d46bbd423af753163a6f0a36d510f47a8b6606b8/aws_cdk.custom_resources-1.36.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "120c48e3f7af994791fb1dcb27b64e83", "sha256": "39b7964bcedb38f7dffe3177909818400f9306e369d9d82ae970dea872c90ba6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.36.1.tar.gz", "has_sig": false, "md5_digest": "120c48e3f7af994791fb1dcb27b64e83", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150518, "upload_time": "2020-04-29T23:52:24", "upload_time_iso_8601": "2020-04-29T23:52:24.342670Z", "url": "https://files.pythonhosted.org/packages/a5/6a/b1a65b3f5a0443d74c2600974a8b7d19fd68d3b30f8529d1c49c7e63b8ac/aws-cdk.custom-resources-1.36.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.37.0": [ { "comment_text": "", "digests": { "md5": "744ea6e00d16ad13abffb73457cf7be0", "sha256": "d20aa723bac7ade53ec266f24dc45a4842b91e304109a78453466f76a752a5bd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.37.0-py3-none-any.whl", "has_sig": false, "md5_digest": "744ea6e00d16ad13abffb73457cf7be0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147130, "upload_time": "2020-05-05T16:41:16", "upload_time_iso_8601": "2020-05-05T16:41:16.830609Z", "url": "https://files.pythonhosted.org/packages/66/ce/584e2d42455ed47d4cbdb4916425ed6aeabdfaa47597c9d276a5e67753a1/aws_cdk.custom_resources-1.37.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "842432a2be080e399a325e2a8d6e5097", "sha256": "9eab96eb6a460c8fafa453fd0011d9b9eeb04dd85ef49b4dac4c5607b7b04a66" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.37.0.tar.gz", "has_sig": false, "md5_digest": "842432a2be080e399a325e2a8d6e5097", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150813, "upload_time": "2020-05-05T16:43:45", "upload_time_iso_8601": "2020-05-05T16:43:45.939779Z", "url": "https://files.pythonhosted.org/packages/7a/4e/2f860fd5c30a73a41e9f332e143294a1a0b5839517f9d2d6a734e2a97a59/aws-cdk.custom-resources-1.37.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.38.0": [ { "comment_text": "", "digests": { "md5": "8a9799f4cac136cbae411128aaf3f404", "sha256": "2b5c92ce5d95be79e59a80425bbf748eb81619c4f0d0ee8cb9f7f036055235f2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.38.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8a9799f4cac136cbae411128aaf3f404", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147130, "upload_time": "2020-05-08T06:34:01", "upload_time_iso_8601": "2020-05-08T06:34:01.772636Z", "url": "https://files.pythonhosted.org/packages/99/34/08a3a15cc24809535caedac0444d5f378b367e222cc80caefceded48a098/aws_cdk.custom_resources-1.38.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae71ceb623547008724489aa0ce1714c", "sha256": "41b32455704fcf0254ffb9fd0286a45ab6f520fadc5758c143558a55481876f4" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.38.0.tar.gz", "has_sig": false, "md5_digest": "ae71ceb623547008724489aa0ce1714c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150816, "upload_time": "2020-05-08T06:36:14", "upload_time_iso_8601": "2020-05-08T06:36:14.540715Z", "url": "https://files.pythonhosted.org/packages/28/aa/ee25a8e86fdaf056414dff869a5e17029f2283e9bb4f4c91a468376fe316/aws-cdk.custom-resources-1.38.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.39.0": [ { "comment_text": "", "digests": { "md5": "862be94a11020780c86fe596c828bb5f", "sha256": "07403f89192ed0a605e44800a8abafac375778c60e22abb17060a63748b523a7" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.39.0-py3-none-any.whl", "has_sig": false, "md5_digest": "862be94a11020780c86fe596c828bb5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146921, "upload_time": "2020-05-16T01:53:41", "upload_time_iso_8601": "2020-05-16T01:53:41.147647Z", "url": "https://files.pythonhosted.org/packages/cc/f2/0f83bdf4b42435c2e5b5af32c301f6e7818224ca02f9497f97007317a482/aws_cdk.custom_resources-1.39.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a3a444dca6e1d6ad90b7c0d771f86c5", "sha256": "13903b70e40ee25c9c3dc196e3054c24704bd0ef69bd1d351af8be09ff4a35f2" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.39.0.tar.gz", "has_sig": false, "md5_digest": "0a3a444dca6e1d6ad90b7c0d771f86c5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150587, "upload_time": "2020-05-16T01:55:53", "upload_time_iso_8601": "2020-05-16T01:55:53.511809Z", "url": "https://files.pythonhosted.org/packages/f3/9e/ca06a8df509be946d15d469d9337149c6cd093439ca5a272492455352d9f/aws-cdk.custom-resources-1.39.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "a20a5e8f36a9bebf14b1a277e9791303", "sha256": "1c8e3d54e94b5db234c2cd9f6a62b238f00770b90e531e9d49fa5b25367fa484" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a20a5e8f36a9bebf14b1a277e9791303", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 42628, "upload_time": "2019-08-14T08:20:36", "upload_time_iso_8601": "2019-08-14T08:20:36.558443Z", "url": "https://files.pythonhosted.org/packages/2a/76/c7db646169b01e82310379489ab87f460e2e1a5597537f0827730259dd44/aws_cdk.custom_resources-1.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "49a83f19ac36fd00bbbcb353d0acc0e7", "sha256": "270041b65d160bb316cb6a0d0c44b2014e808f354ea2b9f5bc588c7d0f8df33e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.4.0.tar.gz", "has_sig": false, "md5_digest": "49a83f19ac36fd00bbbcb353d0acc0e7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45174, "upload_time": "2019-08-14T16:34:08", "upload_time_iso_8601": "2019-08-14T16:34:08.760002Z", "url": "https://files.pythonhosted.org/packages/e1/19/f302c9b1db7bad497f4a85b595906f109271b19559f8bf930ff84f4d0f96/aws-cdk.custom-resources-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.40.0": [ { "comment_text": "", "digests": { "md5": "38023a4c699f866e2cb768f830483665", "sha256": "07486f0187c9fe9f1255e08b7f442e5ba53a25b067039e26db760a1d652cf979" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.40.0-py3-none-any.whl", "has_sig": false, "md5_digest": "38023a4c699f866e2cb768f830483665", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146918, "upload_time": "2020-05-20T14:37:15", "upload_time_iso_8601": "2020-05-20T14:37:15.714010Z", "url": "https://files.pythonhosted.org/packages/2f/28/02fa6dba5212b55b698aa6c65f019941dfd8920619a9c9946ed572be53ec/aws_cdk.custom_resources-1.40.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebd865c3cec464f479bc300837a1e40f", "sha256": "69285694ba39eca35e8ca2d910472c8a4b05208d7a7fce4b9d85dfa8f748d3bb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.40.0.tar.gz", "has_sig": false, "md5_digest": "ebd865c3cec464f479bc300837a1e40f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150584, "upload_time": "2020-05-20T14:39:36", "upload_time_iso_8601": "2020-05-20T14:39:36.769368Z", "url": "https://files.pythonhosted.org/packages/ac/32/bfb29b02fe6c32bf2d246483ad230d11cdaf653d7db3a539b135f26315f8/aws-cdk.custom-resources-1.40.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.41.0": [ { "comment_text": "", "digests": { "md5": "d068fc8ce29eac89570b0590ac1f79b7", "sha256": "3d497a15eecdf01979b450b5339bb08ed8df7c53453d3a1e67db2035467ce2fd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.41.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d068fc8ce29eac89570b0590ac1f79b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146921, "upload_time": "2020-05-21T12:07:58", "upload_time_iso_8601": "2020-05-21T12:07:58.719034Z", "url": "https://files.pythonhosted.org/packages/d7/6c/1e5b09232160556da2beb817d320f33ec95803600742972e81ef489efc0f/aws_cdk.custom_resources-1.41.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b3cdefef9d663170b0c1567a4d26194", "sha256": "4228e7f3a3670c903e87994974c291e86776aa695d3d7ede1e7f68c17976342c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.41.0.tar.gz", "has_sig": false, "md5_digest": "9b3cdefef9d663170b0c1567a4d26194", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150594, "upload_time": "2020-05-21T12:10:23", "upload_time_iso_8601": "2020-05-21T12:10:23.715323Z", "url": "https://files.pythonhosted.org/packages/7f/67/545acb2a87eabac5ccde88f757c9a4254a5cd91ab15bf409de70d56ba36c/aws-cdk.custom-resources-1.41.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.42.0": [ { "comment_text": "", "digests": { "md5": "5162d3908013a3527a002ee07c9e696e", "sha256": "e111f6d17a3eb95b0ee5bb5fc460645ebcff6135f68bbd94ce16d344e41530aa" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.42.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5162d3908013a3527a002ee07c9e696e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146916, "upload_time": "2020-05-27T12:40:12", "upload_time_iso_8601": "2020-05-27T12:40:12.689300Z", "url": "https://files.pythonhosted.org/packages/be/ef/5dc9b8f2a23a6cc0d641ba25fd27dbdab3b79f00e6342cf6724bc67ca6a3/aws_cdk.custom_resources-1.42.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6e069cb64385924cb45143dd383c6d27", "sha256": "e80e4a4f840d0f8e161ec2be5c8d75549d3a45693d78308936e568c9f9b0dccc" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.42.0.tar.gz", "has_sig": false, "md5_digest": "6e069cb64385924cb45143dd383c6d27", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150581, "upload_time": "2020-05-27T12:42:44", "upload_time_iso_8601": "2020-05-27T12:42:44.522448Z", "url": "https://files.pythonhosted.org/packages/04/8d/262ecb7632278c27cfffa933d6323581f6c570e37e06a212f5dfb95cc94a/aws-cdk.custom-resources-1.42.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.42.1": [ { "comment_text": "", "digests": { "md5": "3bef69579d3aa3f573baf3a8713fda5d", "sha256": "fd4cc8b46d701fd3b5adf2b0792854bb1fc2096985f27ef9fb9a53c293a777c6" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.42.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3bef69579d3aa3f573baf3a8713fda5d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146925, "upload_time": "2020-06-01T17:56:50", "upload_time_iso_8601": "2020-06-01T17:56:50.998449Z", "url": "https://files.pythonhosted.org/packages/37/ef/cfd4129ce7c1428fdb8e63038e5415b477c7ce1189bd2606b3406e626983/aws_cdk.custom_resources-1.42.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a526bda3f81a4b732e81371689dd2b1", "sha256": "726e5fe5afa5c1fc0a3523bfb0afc4101af6950f86de16750bb2449563244bbc" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.42.1.tar.gz", "has_sig": false, "md5_digest": "8a526bda3f81a4b732e81371689dd2b1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150600, "upload_time": "2020-06-01T17:59:25", "upload_time_iso_8601": "2020-06-01T17:59:25.913556Z", "url": "https://files.pythonhosted.org/packages/d7/d7/2e3ac57eccb2bcca2d4db1248e8ab6249bae2f61bcd1d2ce7bb1ad50d2f2/aws-cdk.custom-resources-1.42.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.43.0": [ { "comment_text": "", "digests": { "md5": "d44b81a10542417061920f18a2b84cf8", "sha256": "2891052ab735df9cbfd8318b9b47906edc2997741845bcd7a7ff946bd9f5a59a" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.43.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d44b81a10542417061920f18a2b84cf8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146993, "upload_time": "2020-06-04T02:03:20", "upload_time_iso_8601": "2020-06-04T02:03:20.035168Z", "url": "https://files.pythonhosted.org/packages/b0/0d/d36d48318d9cea27f4aa7e0173348d89d1a4b39b6e4af4a28effa6a316c0/aws_cdk.custom_resources-1.43.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f167579a04e096230a0405637f8af8a", "sha256": "98aba898348d42217b734655f811d4abc8d3389907f4c265795d8e3f5335ad4b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.43.0.tar.gz", "has_sig": false, "md5_digest": "6f167579a04e096230a0405637f8af8a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150709, "upload_time": "2020-06-04T02:05:53", "upload_time_iso_8601": "2020-06-04T02:05:53.610157Z", "url": "https://files.pythonhosted.org/packages/c0/67/d1c78c4448611e87f391c4415f495b28bd42e802af76b5116b2ac1cee35e/aws-cdk.custom-resources-1.43.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.44.0": [ { "comment_text": "", "digests": { "md5": "3aa1da2cae72f4526d6ceaa55e783636", "sha256": "e972f346e61069f345003caa42defe274b348359a7b07304246dc7dce14411d3" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.44.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3aa1da2cae72f4526d6ceaa55e783636", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146997, "upload_time": "2020-06-04T15:25:46", "upload_time_iso_8601": "2020-06-04T15:25:46.063793Z", "url": "https://files.pythonhosted.org/packages/59/df/0b495380c0bcda2caeafa514aa31ee66a3239dd81b0160cc1912c154a656/aws_cdk.custom_resources-1.44.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd8b7b4b8b35d632a73eabfe9a7c1ec5", "sha256": "20a27c05624c8c047e5dd3fef84242c1c17c9d1440767d40b43889176cfd90f6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.44.0.tar.gz", "has_sig": false, "md5_digest": "cd8b7b4b8b35d632a73eabfe9a7c1ec5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150714, "upload_time": "2020-06-04T15:28:21", "upload_time_iso_8601": "2020-06-04T15:28:21.246779Z", "url": "https://files.pythonhosted.org/packages/41/c6/ffa3d931974eacbd7455ac0aea11b683e1bda2d19970efe37a3cad7fa1af/aws-cdk.custom-resources-1.44.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.45.0": [ { "comment_text": "", "digests": { "md5": "b7928ad70a87454d1abd4982aaf39fa6", "sha256": "920449820eee21fd644c18d3bf026a7e850bbd1cd01d57ed25f892d16f56b1ab" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.45.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b7928ad70a87454d1abd4982aaf39fa6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 146991, "upload_time": "2020-06-09T17:48:42", "upload_time_iso_8601": "2020-06-09T17:48:42.088794Z", "url": "https://files.pythonhosted.org/packages/0e/72/2d0455fff7643bb031d27414ec0355107f59b6baf1a2ab9ed74da650a760/aws_cdk.custom_resources-1.45.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5e2a5c2ad1aaba2e93e19fd345529ea8", "sha256": "05bf20b40a2ddcf364a538eb8c211160d84c909f485c83ef585cc511f0b9292b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.45.0.tar.gz", "has_sig": false, "md5_digest": "5e2a5c2ad1aaba2e93e19fd345529ea8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 150675, "upload_time": "2020-06-09T17:51:15", "upload_time_iso_8601": "2020-06-09T17:51:15.201462Z", "url": "https://files.pythonhosted.org/packages/06/05/c9561915520e54e2cdf6f204a190b084c166f0063e7f47b925929be6841d/aws-cdk.custom-resources-1.45.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.46.0": [ { "comment_text": "", "digests": { "md5": "6cf219e26973f4c548d847055a5fa369", "sha256": "dc50931f39879e2f4bea80b76efd09568f5d32a9dd71550f8a4b80991f0c21bd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.46.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6cf219e26973f4c548d847055a5fa369", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 157414, "upload_time": "2020-06-20T03:00:15", "upload_time_iso_8601": "2020-06-20T03:00:15.751283Z", "url": "https://files.pythonhosted.org/packages/70/18/9c441bdb1fb7c8e668f4ed1b2c25bb28353e7afb6767112747722ee78956/aws_cdk.custom_resources-1.46.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c18b164913f26bb932289de75dc380f3", "sha256": "357e9b3105d05d320179705f56514898780c057e943c4c3d24a53bb0189eda7d" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.46.0.tar.gz", "has_sig": false, "md5_digest": "c18b164913f26bb932289de75dc380f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 161342, "upload_time": "2020-06-20T03:03:12", "upload_time_iso_8601": "2020-06-20T03:03:12.875600Z", "url": "https://files.pythonhosted.org/packages/e8/d0/3a42f0bd9eb135358869c52f54e92dc7874994a3ff180ff6fcee9c4c839e/aws-cdk.custom-resources-1.46.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.47.0": [ { "comment_text": "", "digests": { "md5": "a4663cb368b266d561e0a11c7bc8e576", "sha256": "443ab568352f2d43ebd28aa12f306912da93b3e6ea434d25fc942913c5e911eb" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.47.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a4663cb368b266d561e0a11c7bc8e576", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 157408, "upload_time": "2020-06-24T20:08:39", "upload_time_iso_8601": "2020-06-24T20:08:39.517686Z", "url": "https://files.pythonhosted.org/packages/eb/3e/220cd8da08356ec87f7290b0bd3da0cf307171b8cbd81989d913724a8764/aws_cdk.custom_resources-1.47.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54b1fabddb4c92778c56a04e2a1871c8", "sha256": "44752d4d71e4217a513fa6e75c4f15c21a49233cd5d7fcf5344fcb1a834e7949" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.47.0.tar.gz", "has_sig": false, "md5_digest": "54b1fabddb4c92778c56a04e2a1871c8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 161321, "upload_time": "2020-06-24T20:11:43", "upload_time_iso_8601": "2020-06-24T20:11:43.093705Z", "url": "https://files.pythonhosted.org/packages/ba/61/d74552fcba05e5f2f59b5c1b0a142cff0cc6484cdc1210eedf6013378048/aws-cdk.custom-resources-1.47.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.47.1": [ { "comment_text": "", "digests": { "md5": "ba71e436dd49cd249f0dbc3f3dec6d11", "sha256": "76658db3eef4ff128b172cd554cfd186345d3104ddf1a1e2750fc405bf26e4a2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.47.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ba71e436dd49cd249f0dbc3f3dec6d11", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147965, "upload_time": "2020-06-30T11:38:48", "upload_time_iso_8601": "2020-06-30T11:38:48.722788Z", "url": "https://files.pythonhosted.org/packages/d0/b8/2fbfe4a0eb2ee614273299e783f339b96db2e7f8cffef5517035a27de4c9/aws_cdk.custom_resources-1.47.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9e5db23df940f1330cf68cca8184672a", "sha256": "b4080d93022e9d60f27df059fdd684f93aed599980e226c73816410237216a81" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.47.1.tar.gz", "has_sig": false, "md5_digest": "9e5db23df940f1330cf68cca8184672a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 151789, "upload_time": "2020-06-30T11:41:20", "upload_time_iso_8601": "2020-06-30T11:41:20.026786Z", "url": "https://files.pythonhosted.org/packages/53/02/51db6a1396e20798c9eb700398d6b4204ac86c3d69260f67329e2005d7ca/aws-cdk.custom-resources-1.47.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.48.0": [ { "comment_text": "", "digests": { "md5": "e811fb0057e19c6fb49fe079c6866cd6", "sha256": "fcd538994af768eb0a513b399803cd44485678d55535bc7edca85fd0beac99e5" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.48.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e811fb0057e19c6fb49fe079c6866cd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147975, "upload_time": "2020-07-01T10:51:09", "upload_time_iso_8601": "2020-07-01T10:51:09.451360Z", "url": "https://files.pythonhosted.org/packages/b0/b6/14f7226972c3c9c160e489dcc31e322259b1b3e47bb8469eaf5dc4b35958/aws_cdk.custom_resources-1.48.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa8d4fa55138b601d31d7716fee53397", "sha256": "dd54c8afba09e66f9828c6eeeb7e59ef7b2fa7d7208f7aba73969ab043761d2e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.48.0.tar.gz", "has_sig": false, "md5_digest": "aa8d4fa55138b601d31d7716fee53397", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 151832, "upload_time": "2020-07-01T10:53:40", "upload_time_iso_8601": "2020-07-01T10:53:40.199958Z", "url": "https://files.pythonhosted.org/packages/be/fb/4bad0fdfe98a250b2ba5346b7f6b5ecced7569d62885fca9f63b6f0858e0/aws-cdk.custom-resources-1.48.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.49.0": [ { "comment_text": "", "digests": { "md5": "de76c26a7f3fbb6c117b79866d7e4815", "sha256": "796a7493606492f4a0741b622decc04a2396125f5a747e644d818b2adb536785" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.49.0-py3-none-any.whl", "has_sig": false, "md5_digest": "de76c26a7f3fbb6c117b79866d7e4815", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147975, "upload_time": "2020-07-02T13:15:24", "upload_time_iso_8601": "2020-07-02T13:15:24.808707Z", "url": "https://files.pythonhosted.org/packages/9e/95/54f0587978da05b50cd371b7e4ab8d4a98b833545649cb34412908154def/aws_cdk.custom_resources-1.49.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5c8c024cd9aebd375ecd230887d6ffac", "sha256": "e816354ee5f29b791f55aa30a4b141bc3620bcf8803025f304b84a18b53d57f2" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.49.0.tar.gz", "has_sig": false, "md5_digest": "5c8c024cd9aebd375ecd230887d6ffac", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 151833, "upload_time": "2020-07-02T13:18:09", "upload_time_iso_8601": "2020-07-02T13:18:09.390916Z", "url": "https://files.pythonhosted.org/packages/d0/df/c4f147f48221c6c43b676360ed2b8167e279f016133125cade7fe4ac5804/aws-cdk.custom-resources-1.49.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.49.1": [ { "comment_text": "", "digests": { "md5": "e4c5b7aecb08f934c5225c4e3bae7b69", "sha256": "e7153c93343ac6fb66b0c2619039037f3a9e7971560fbd8e1aceb7f570b87933" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.49.1-py3-none-any.whl", "has_sig": false, "md5_digest": "e4c5b7aecb08f934c5225c4e3bae7b69", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 147983, "upload_time": "2020-07-02T19:03:51", "upload_time_iso_8601": "2020-07-02T19:03:51.976077Z", "url": "https://files.pythonhosted.org/packages/b0/bb/0534efb354934764bf545be41c27490730956c55b539de41dc169d93e462/aws_cdk.custom_resources-1.49.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2c1563240d9b0c28f9cfb9eda80cde3", "sha256": "ee9f492dab92e91a6997f5c4018808e539a54916723b87b5464dd548a9234ebf" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.49.1.tar.gz", "has_sig": false, "md5_digest": "b2c1563240d9b0c28f9cfb9eda80cde3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 151828, "upload_time": "2020-07-02T19:06:32", "upload_time_iso_8601": "2020-07-02T19:06:32.891068Z", "url": "https://files.pythonhosted.org/packages/59/67/d011adbcb7816622c82eb584857e6c79fc35ba363db70f446341bf1ece3a/aws-cdk.custom-resources-1.49.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "383e682b10b5db37562894709a9f8638", "sha256": "13c33b6279475b81e5d8136a3eff4cbb2aa294bfb5c7749111ec9c8a564c630b" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "383e682b10b5db37562894709a9f8638", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 42583, "upload_time": "2019-08-21T11:34:30", "upload_time_iso_8601": "2019-08-21T11:34:30.179287Z", "url": "https://files.pythonhosted.org/packages/bc/88/d99d7ed57324c9e0146b7f8a5e69069091797b08845e00ee72527be4fe91/aws_cdk.custom_resources-1.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54107cb80609bbe6acf4afca78902665", "sha256": "0b61a582c1f8f68dadc692d848cc9bf614033eb49d27cca31bcb5ec44c0c20c0" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.5.0.tar.gz", "has_sig": false, "md5_digest": "54107cb80609bbe6acf4afca78902665", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45152, "upload_time": "2019-08-21T11:37:07", "upload_time_iso_8601": "2019-08-21T11:37:07.439077Z", "url": "https://files.pythonhosted.org/packages/c0/1f/27d1967f04ba68a2bd8d94ed82d6b79cc3f9e9d04b552293f0d54d8bae85/aws-cdk.custom-resources-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.50.0": [ { "comment_text": "", "digests": { "md5": "ce4f85dd7d73722562f7b5e57089dd3a", "sha256": "de5efb7e94fdfa80f0c6d42124f90286ebd49fc83abdfdc1d16866d2ff0e6f84" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.50.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ce4f85dd7d73722562f7b5e57089dd3a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 149044, "upload_time": "2020-07-07T14:37:55", "upload_time_iso_8601": "2020-07-07T14:37:55.275176Z", "url": "https://files.pythonhosted.org/packages/3b/52/5f0492af468208992a605e61e98164870fb82d112e8acd9ebb4de0e3653a/aws_cdk.custom_resources-1.50.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b065feae877fe97e870a8d15f63f653d", "sha256": "42f8210fc55a0ca775533c245cae28bd3d8eb74b2f313bd0faffab88587cf828" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.50.0.tar.gz", "has_sig": false, "md5_digest": "b065feae877fe97e870a8d15f63f653d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 152974, "upload_time": "2020-07-07T14:40:36", "upload_time_iso_8601": "2020-07-07T14:40:36.821716Z", "url": "https://files.pythonhosted.org/packages/21/bd/417466819dbc9b618c5ac67f1f96aa134914a371165677e4e6ec40bc9d56/aws-cdk.custom-resources-1.50.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.51.0": [ { "comment_text": "", "digests": { "md5": "13c54d943ff071fef8cc1f5d8bd461b1", "sha256": "bde0bdc52df99b5aa306a200cf141e16308b6a12d6aeadbbb4d09ce9e173bfd6" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.51.0-py3-none-any.whl", "has_sig": false, "md5_digest": "13c54d943ff071fef8cc1f5d8bd461b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 149044, "upload_time": "2020-07-09T14:34:50", "upload_time_iso_8601": "2020-07-09T14:34:50.512974Z", "url": "https://files.pythonhosted.org/packages/2a/35/c5101bf4af22807a905ac6a071fdde3c758242baaee65c181694538705d4/aws_cdk.custom_resources-1.51.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e6a1201e37ba1d249da2f371f05fbfa8", "sha256": "eebac389c9f62ba9a3831318f7de0406bcd979f33fbae259564d12d1069700f6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.51.0.tar.gz", "has_sig": false, "md5_digest": "e6a1201e37ba1d249da2f371f05fbfa8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 153004, "upload_time": "2020-07-09T14:37:33", "upload_time_iso_8601": "2020-07-09T14:37:33.047389Z", "url": "https://files.pythonhosted.org/packages/2a/1b/92d3c52284c01e3ddd86520fd343782a5d291815fe331b82c548ac9913f8/aws-cdk.custom-resources-1.51.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.52.0": [ { "comment_text": "", "digests": { "md5": "5e8733ebbd0b4b3fa118cb80bb542361", "sha256": "1935aa5d2dfe69da197350d839f4c662e9f81f3fba0d571ce22f5a92afc231f0" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.52.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5e8733ebbd0b4b3fa118cb80bb542361", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151251, "upload_time": "2020-07-18T02:55:38", "upload_time_iso_8601": "2020-07-18T02:55:38.124020Z", "url": "https://files.pythonhosted.org/packages/6a/e0/00943b685cf2bd96597fdee76a3d3a4fb8dc198e84c6bc700e68e0008d30/aws_cdk.custom_resources-1.52.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5674170599003a6dd11714ce66f4ca4c", "sha256": "2550f75c4101a4a3590f02eb331480453804a50b470b1dcd4a5dd6db0b16e30e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.52.0.tar.gz", "has_sig": false, "md5_digest": "5674170599003a6dd11714ce66f4ca4c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155280, "upload_time": "2020-07-18T02:58:09", "upload_time_iso_8601": "2020-07-18T02:58:09.991706Z", "url": "https://files.pythonhosted.org/packages/6c/4a/53e6bfbd3cdb10388ca5d0316af19b3e74e2c679048542fe2a88729353e9/aws-cdk.custom-resources-1.52.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.53.0": [ { "comment_text": "", "digests": { "md5": "6e7cbdaa88fe8ec37ca794687c2c5c29", "sha256": "b86aebb229f1275e57dcbf12514b88b05e8d0487cdd219136b42c20ac5f0b933" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.53.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6e7cbdaa88fe8ec37ca794687c2c5c29", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151256, "upload_time": "2020-07-20T12:08:09", "upload_time_iso_8601": "2020-07-20T12:08:09.050393Z", "url": "https://files.pythonhosted.org/packages/ae/43/667ba4f5adf4887db29331e14a32ec70325517a634a96586048e66907b71/aws_cdk.custom_resources-1.53.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f90623a036606336bff7ac1195b384a9", "sha256": "b86f25159976db098b83307d0bee91203a321ae96a4fc5c2c402775ec40a07e6" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.53.0.tar.gz", "has_sig": false, "md5_digest": "f90623a036606336bff7ac1195b384a9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155305, "upload_time": "2020-07-20T12:10:47", "upload_time_iso_8601": "2020-07-20T12:10:47.685816Z", "url": "https://files.pythonhosted.org/packages/2c/2e/5dd9948d9cc8d60ef63e82b1c87b08dedd079b24fecc4e96908679a57e82/aws-cdk.custom-resources-1.53.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.54.0": [ { "comment_text": "", "digests": { "md5": "278c9aac5a126c0a8af841ab08ac37dd", "sha256": "38c91242c2ec9d3b67557044a591bce5297853019fb313ba678b74cab1f814bd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.54.0-py3-none-any.whl", "has_sig": false, "md5_digest": "278c9aac5a126c0a8af841ab08ac37dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151258, "upload_time": "2020-07-22T11:06:23", "upload_time_iso_8601": "2020-07-22T11:06:23.131286Z", "url": "https://files.pythonhosted.org/packages/6b/66/bcd9009623603e4a97e9fd4dfc1cb12c9ae7b12fc430413b6bdf69321df9/aws_cdk.custom_resources-1.54.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f355843642dc793748de8bd3ae9106d", "sha256": "76d4d6504e809c8b4cd1a5debda412ed261851c89daf9146c6de52d569b30a96" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.54.0.tar.gz", "has_sig": false, "md5_digest": "4f355843642dc793748de8bd3ae9106d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155290, "upload_time": "2020-07-22T11:08:58", "upload_time_iso_8601": "2020-07-22T11:08:58.449188Z", "url": "https://files.pythonhosted.org/packages/e4/75/ad88916aeb66633807c1517acb2e1f35e0d34ae3f268476cc5a5e038ae24/aws-cdk.custom-resources-1.54.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.55.0": [ { "comment_text": "", "digests": { "md5": "0b686a29587e2b20f70e9aca17eb3ecd", "sha256": "3fdb7a073a6302c3b76e745dbc296786326163268a6a55523d4f71a731f1f23d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.55.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0b686a29587e2b20f70e9aca17eb3ecd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151256, "upload_time": "2020-07-28T22:41:13", "upload_time_iso_8601": "2020-07-28T22:41:13.231997Z", "url": "https://files.pythonhosted.org/packages/2e/0e/dc9643e6fcff19735ebd79c65501e9a2dd269af5c85d529381c57b35bacf/aws_cdk.custom_resources-1.55.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eda75c2d1444f4da29026c8f3b2eed73", "sha256": "f58a5a746b52f7c3cdd43d5bae9a28e7824bfc9967f84e4d3091f88533bd80c7" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.55.0.tar.gz", "has_sig": false, "md5_digest": "eda75c2d1444f4da29026c8f3b2eed73", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155286, "upload_time": "2020-07-28T22:43:48", "upload_time_iso_8601": "2020-07-28T22:43:48.374428Z", "url": "https://files.pythonhosted.org/packages/23/07/2f618497872dcd8758f877c7495c0f1d49f13f24a53875da54eb4fe89185/aws-cdk.custom-resources-1.55.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.56.0": [ { "comment_text": "", "digests": { "md5": "5e82bdf79e63a58915bbe4fdf8a0c8cb", "sha256": "1ec6d3013cf3125f8c45eb63ad978dba66b7d56214687bb184c5318f828a9165" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.56.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5e82bdf79e63a58915bbe4fdf8a0c8cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151257, "upload_time": "2020-08-01T00:50:39", "upload_time_iso_8601": "2020-08-01T00:50:39.454778Z", "url": "https://files.pythonhosted.org/packages/fc/1f/fabe8b6e25792d1440b1f3c2e2c629b2741bc5957fc4e7d993d97c92e8b2/aws_cdk.custom_resources-1.56.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3ad738528efb5bc18b8bc69cca92ebdc", "sha256": "80ed96b7592ddcb85b4f374212e001dbb06513a91cf1c0669bbf2358890a895a" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.56.0.tar.gz", "has_sig": false, "md5_digest": "3ad738528efb5bc18b8bc69cca92ebdc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155297, "upload_time": "2020-08-01T00:53:18", "upload_time_iso_8601": "2020-08-01T00:53:18.767231Z", "url": "https://files.pythonhosted.org/packages/58/5f/9f768a5ece01db636063ba20f2714be694b4737455e83bf8301f564ab6e9/aws-cdk.custom-resources-1.56.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.57.0": [ { "comment_text": "", "digests": { "md5": "531152d26a55448e9baab218d9e7b1c2", "sha256": "5f70c85b22698fbf5e36b21a7d34a4b522715e18a5eeb9de572a9ea15727972b" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.57.0-py3-none-any.whl", "has_sig": false, "md5_digest": "531152d26a55448e9baab218d9e7b1c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151257, "upload_time": "2020-08-07T21:02:48", "upload_time_iso_8601": "2020-08-07T21:02:48.194933Z", "url": "https://files.pythonhosted.org/packages/ad/ab/a4f39bfb52afe9a74543a1c3427c66852433781f22a91ed16ba00971bf41/aws_cdk.custom_resources-1.57.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f7e3335228ae13bd1744564c213e3c4b", "sha256": "77fb39148868373de50def1922b4b64844ce8467d2a23923a274b277e816c8a1" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.57.0.tar.gz", "has_sig": false, "md5_digest": "f7e3335228ae13bd1744564c213e3c4b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155314, "upload_time": "2020-08-07T21:05:45", "upload_time_iso_8601": "2020-08-07T21:05:45.058830Z", "url": "https://files.pythonhosted.org/packages/6d/ca/87e57dfac1eec4a87e75a76f80c306d470beff44891e65703ce2fb49456a/aws-cdk.custom-resources-1.57.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.58.0": [ { "comment_text": "", "digests": { "md5": "d257df329ad9842976be173c950a58a9", "sha256": "215dcc8b515a88ecc5e292b26602bb7b8cddd7693698737b41c2bac65bc11938" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.58.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d257df329ad9842976be173c950a58a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151374, "upload_time": "2020-08-12T20:25:48", "upload_time_iso_8601": "2020-08-12T20:25:48.958446Z", "url": "https://files.pythonhosted.org/packages/84/ef/fff9297094ac87f7b40995263e6cadd98402e38d471a8f6c67fe21305f74/aws_cdk.custom_resources-1.58.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffa08087becfb5a27f48616e04d7f427", "sha256": "e27b36232c40858705218533209355221e2b9b793bfc52ab7c849ce1f6340b09" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.58.0.tar.gz", "has_sig": false, "md5_digest": "ffa08087becfb5a27f48616e04d7f427", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155410, "upload_time": "2020-08-12T20:28:49", "upload_time_iso_8601": "2020-08-12T20:28:49.544971Z", "url": "https://files.pythonhosted.org/packages/b8/b1/99d4cc3fafbd4a12de0d99a572203c46ce7d51b1896d8b9f0d96afe44c8a/aws-cdk.custom-resources-1.58.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.59.0": [ { "comment_text": "", "digests": { "md5": "4a90c98f5ba163ec35177a179869ae98", "sha256": "69a2d5368175da779958d171c1b59a34547abb735e11b6887295e4f1d1dd0227" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.59.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4a90c98f5ba163ec35177a179869ae98", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 151372, "upload_time": "2020-08-15T01:08:02", "upload_time_iso_8601": "2020-08-15T01:08:02.228344Z", "url": "https://files.pythonhosted.org/packages/d0/10/9be3dc5e7a07de40571c9ed1feab56b62a1a69a97fc807c7032184ea4e95/aws_cdk.custom_resources-1.59.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78e08d35d2d9f1f2eda9556d69d88f8c", "sha256": "06f402453e41a27140fac9760a011322fb685fc4a23e19ffd7a128f95a4873f5" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.59.0.tar.gz", "has_sig": false, "md5_digest": "78e08d35d2d9f1f2eda9556d69d88f8c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 155426, "upload_time": "2020-08-15T01:11:07", "upload_time_iso_8601": "2020-08-15T01:11:07.578326Z", "url": "https://files.pythonhosted.org/packages/8a/fd/3ff6c2c60f614e45c2c5ce11f5f1020f9aa9201c841b06545a91d2937d8f/aws-cdk.custom-resources-1.59.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "a5a1935dc5678f45d4476d96649fa7cc", "sha256": "66b6b744fad4b401b455dadf4a29cb7cfb754e50899355551e88f5a24f1fc00d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a5a1935dc5678f45d4476d96649fa7cc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 42635, "upload_time": "2019-08-27T18:13:18", "upload_time_iso_8601": "2019-08-27T18:13:18.084079Z", "url": "https://files.pythonhosted.org/packages/02/73/ba9f6acd1083fa9fa03757d4e709d252b62ba0fd2e5adc5bb87cf96600e7/aws_cdk.custom_resources-1.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "889fc427cc7b5209223b2cef57e89740", "sha256": "f3ee4b921bc80830c110214c3d582fb2471bbdb0d355250752184be050909f33" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.6.0.tar.gz", "has_sig": false, "md5_digest": "889fc427cc7b5209223b2cef57e89740", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45221, "upload_time": "2019-08-27T18:15:59", "upload_time_iso_8601": "2019-08-27T18:15:59.739112Z", "url": "https://files.pythonhosted.org/packages/24/20/af78a56f128bc208711af3ff39a61d6996f509d63629bf2a2aca61000386/aws-cdk.custom-resources-1.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "efe0a13b8c3b34dcffe7584edc62d2fd", "sha256": "611ead7829ac95a68ecdc04451724737da63b6ae692a363dffa572324338a8d2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "efe0a13b8c3b34dcffe7584edc62d2fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 42638, "upload_time": "2019-08-29T14:38:21", "upload_time_iso_8601": "2019-08-29T14:38:21.806131Z", "url": "https://files.pythonhosted.org/packages/59/57/993c39c11f442dc98649749c546bb092acbed2c541c53b60d1ebce5ac6aa/aws_cdk.custom_resources-1.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52ac2ed07ece65a2e520f4cee902fee9", "sha256": "0d63526b828ae7e574164b78abcd2a3941a34105c641afc619928bc2db60cfb5" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.6.1.tar.gz", "has_sig": false, "md5_digest": "52ac2ed07ece65a2e520f4cee902fee9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45232, "upload_time": "2019-08-29T14:41:07", "upload_time_iso_8601": "2019-08-29T14:41:07.449265Z", "url": "https://files.pythonhosted.org/packages/e5/74/b23429cd28a877712461047862f5363acbe0cf81e61fd754c019fa5db558/aws-cdk.custom-resources-1.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.60.0": [ { "comment_text": "", "digests": { "md5": "bd2462e78fa1e588b7deaed4c39f95c5", "sha256": "aad022c181f88c982cb91c51a4d4d9c91c2f89fa2ca8474b1a5d0af49b81c50d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.60.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bd2462e78fa1e588b7deaed4c39f95c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 152818, "upload_time": "2020-08-20T00:48:59", "upload_time_iso_8601": "2020-08-20T00:48:59.969214Z", "url": "https://files.pythonhosted.org/packages/38/d4/3f1c68799363a9b517affda8a69c83fb08a0b471750fe789abc2f4417f37/aws_cdk.custom_resources-1.60.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cddf6004f018a18ea7345dbc286ac325", "sha256": "ae45aaa7986308b6d235af61ab32abaadf5954592be0d47d5a4a80725d332e51" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.60.0.tar.gz", "has_sig": false, "md5_digest": "cddf6004f018a18ea7345dbc286ac325", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 157054, "upload_time": "2020-08-20T00:52:08", "upload_time_iso_8601": "2020-08-20T00:52:08.743573Z", "url": "https://files.pythonhosted.org/packages/91/cf/4be82c8f7f103336b79cbcf1a03f7fecd1c044d8ec1b148ea170bbb131af/aws-cdk.custom-resources-1.60.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.61.0": [ { "comment_text": "", "digests": { "md5": "f25720eeb6f2c785665a10bd11a6f5bb", "sha256": "bf3cfa9f40873539e09379568f3f60450c0694f35dd5801d3ce026d513e37258" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.61.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f25720eeb6f2c785665a10bd11a6f5bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 153565, "upload_time": "2020-08-27T10:00:13", "upload_time_iso_8601": "2020-08-27T10:00:13.754460Z", "url": "https://files.pythonhosted.org/packages/f0/3e/e2195e06de67fdaf46e5fc5efd4de5e2ab8a74c7d8157a0fede1a02b83ea/aws_cdk.custom_resources-1.61.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1c7585bf3f1564a12a4e1cd4456b0b1d", "sha256": "254d66497013b4dfea21bdaf13ee8aa583b96c0e2739d64cd02f5a4cb212ca26" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.61.0.tar.gz", "has_sig": false, "md5_digest": "1c7585bf3f1564a12a4e1cd4456b0b1d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 157851, "upload_time": "2020-08-27T10:03:16", "upload_time_iso_8601": "2020-08-27T10:03:16.065548Z", "url": "https://files.pythonhosted.org/packages/0d/b0/630ecc9f22078a72dd9f786c521ae2d98bb928c2b7a50c3246532d5d14f8/aws-cdk.custom-resources-1.61.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.61.1": [ { "comment_text": "", "digests": { "md5": "6e5e7afa244dff6b35e75117dff3adb2", "sha256": "930acd25e621a8267f1d36b5a31bde2d324268985be99f9cca86da047d032928" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.61.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6e5e7afa244dff6b35e75117dff3adb2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 153568, "upload_time": "2020-08-28T11:43:44", "upload_time_iso_8601": "2020-08-28T11:43:44.122303Z", "url": "https://files.pythonhosted.org/packages/e3/3a/60f753db9424461f1b8a55336380e69361bc124d78fc4e01aa5fe256e403/aws_cdk.custom_resources-1.61.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b86b70f187956d77294336969b43bd4", "sha256": "e9326f65462a679d121657bf5b8396d4d16f3d2c5823fe5b2e984fa8d954e982" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.61.1.tar.gz", "has_sig": false, "md5_digest": "9b86b70f187956d77294336969b43bd4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 157850, "upload_time": "2020-08-28T11:46:40", "upload_time_iso_8601": "2020-08-28T11:46:40.321907Z", "url": "https://files.pythonhosted.org/packages/03/67/e87276ba09ebe89a3960d05f71ea8b4d2acb1c91a171703b277898179a17/aws-cdk.custom-resources-1.61.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.62.0": [ { "comment_text": "", "digests": { "md5": "76beb83964cbf7612109e1768f27b205", "sha256": "70c5018332d657ca4759ef2f2014a2e63072d17d54e4d35b8cc166a968b75dea" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.62.0-py3-none-any.whl", "has_sig": false, "md5_digest": "76beb83964cbf7612109e1768f27b205", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 154365, "upload_time": "2020-09-04T08:04:48", "upload_time_iso_8601": "2020-09-04T08:04:48.715491Z", "url": "https://files.pythonhosted.org/packages/fa/31/780dbb5f0bcb0f947b94e5c42aff02a2c23825b1dd3aacbe2a8847d7e261/aws_cdk.custom_resources-1.62.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1a36c1ccc786d18a280841a0e8fb7bdd", "sha256": "29b56a78e14e4d08d97198a698e4f07c6fb23535a17942d7f70372f1c44246be" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.62.0.tar.gz", "has_sig": false, "md5_digest": "1a36c1ccc786d18a280841a0e8fb7bdd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 158677, "upload_time": "2020-09-04T08:07:52", "upload_time_iso_8601": "2020-09-04T08:07:52.040045Z", "url": "https://files.pythonhosted.org/packages/27/86/fa56941d22ae71efbba4d000e62f61fc8ecf109660b6a6349eb535a43d92/aws-cdk.custom-resources-1.62.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.63.0": [ { "comment_text": "", "digests": { "md5": "127690193c268e225251fdbaa24bfb31", "sha256": "e20bb3f1eb6542041b4faf77d1201b08841cc459edf444e8ebc84b7bc324ea21" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.63.0-py3-none-any.whl", "has_sig": false, "md5_digest": "127690193c268e225251fdbaa24bfb31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 155472, "upload_time": "2020-09-14T09:05:41", "upload_time_iso_8601": "2020-09-14T09:05:41.022375Z", "url": "https://files.pythonhosted.org/packages/fd/3d/46550533b6f2a298862900b3214c1e4ad86876a9e01022c9bce41df7b36c/aws_cdk.custom_resources-1.63.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f1d3204025afc83206c5b408360ed07c", "sha256": "2d672733a29a66f90644326427b30cb74d3df3b183493518ee5ad229f4d7025e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.63.0.tar.gz", "has_sig": false, "md5_digest": "f1d3204025afc83206c5b408360ed07c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 159793, "upload_time": "2020-09-14T09:08:39", "upload_time_iso_8601": "2020-09-14T09:08:39.745044Z", "url": "https://files.pythonhosted.org/packages/1d/1a/2c8ee53ac4eec90677dbea9de6e6e5ee9182837793d6b2d41f21f31e6458/aws-cdk.custom-resources-1.63.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.64.0": [ { "comment_text": "", "digests": { "md5": "20edb8f4cfc1f75761ce2efe22aec92f", "sha256": "be09d8e8e71964225f0650d80cca03a9d18da04b6c99a63e90ad69324595d2a3" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.64.0-py3-none-any.whl", "has_sig": false, "md5_digest": "20edb8f4cfc1f75761ce2efe22aec92f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 158242, "upload_time": "2020-09-24T08:40:46", "upload_time_iso_8601": "2020-09-24T08:40:46.864067Z", "url": "https://files.pythonhosted.org/packages/19/d4/c5aad0b7d03e3968eb53d052b8725584e3e66941c1768f22849f610ab285/aws_cdk.custom_resources-1.64.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0d1cd5af1e1c07eabc2c6aeb41d8d4e", "sha256": "b7775a4894b6b78d69fa88448026becbfe82d02384843a09f66592868d4899f9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.64.0.tar.gz", "has_sig": false, "md5_digest": "d0d1cd5af1e1c07eabc2c6aeb41d8d4e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162238, "upload_time": "2020-09-24T08:43:50", "upload_time_iso_8601": "2020-09-24T08:43:50.043258Z", "url": "https://files.pythonhosted.org/packages/06/49/b6395bc69fa2d626829e8b2886841a93e6e69726042dd19aca35c82ecf2b/aws-cdk.custom-resources-1.64.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.64.1": [ { "comment_text": "", "digests": { "md5": "d16af204a797c705a9fcf0e57af7dc18", "sha256": "bf591c7817e5d8548649acb415a652e5e2e07262d990df4d81d7c89f44f1e6f6" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.64.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d16af204a797c705a9fcf0e57af7dc18", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 158242, "upload_time": "2020-09-25T19:16:43", "upload_time_iso_8601": "2020-09-25T19:16:43.877176Z", "url": "https://files.pythonhosted.org/packages/7a/e4/9364a589bf02c84e128eb9747cf21b378b89bf0880eebcb4eb14e25e6e79/aws_cdk.custom_resources-1.64.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d038579ba219eef75a3219e3919f0883", "sha256": "6f4ad7dc3ee16aad65ea75aaf6c24508b7fbf2ca564f41b6d9df0511b1ae7bbb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.64.1.tar.gz", "has_sig": false, "md5_digest": "d038579ba219eef75a3219e3919f0883", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162249, "upload_time": "2020-09-25T19:20:10", "upload_time_iso_8601": "2020-09-25T19:20:10.493335Z", "url": "https://files.pythonhosted.org/packages/0a/c2/eb9d74c8bfb5a3745ce05b4f339f6810fe0285076edd48db17d240f44ab3/aws-cdk.custom-resources-1.64.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.65.0": [ { "comment_text": "", "digests": { "md5": "b060acaf00375f8f35fcb4722d153c01", "sha256": "d182e5854ef42cd85bf99fdf7dcf6cac527c02debfcc1c4a147aa09ad885c3db" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.65.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b060acaf00375f8f35fcb4722d153c01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 158379, "upload_time": "2020-10-01T03:18:15", "upload_time_iso_8601": "2020-10-01T03:18:15.058409Z", "url": "https://files.pythonhosted.org/packages/ea/08/e479ff39a831252f4a37f194328d4133e499a8d217e62d4fa1217a858b8b/aws_cdk.custom_resources-1.65.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0501716f54317a45f258a8fd2d7bcf9c", "sha256": "767c17fb2e9395ad0376d8ae2028925afe30c8ee5580f99886c058c71033fc08" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.65.0.tar.gz", "has_sig": false, "md5_digest": "0501716f54317a45f258a8fd2d7bcf9c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 162379, "upload_time": "2020-10-01T03:21:06", "upload_time_iso_8601": "2020-10-01T03:21:06.450990Z", "url": "https://files.pythonhosted.org/packages/e7/1d/ae10155927d7de2adb57b1546460febc3fcb2f2a408d61ff7bc5e01f9c05/aws-cdk.custom-resources-1.65.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.66.0": [ { "comment_text": "", "digests": { "md5": "323069ad94b1faeba5207b51092345e0", "sha256": "c2f6ff5efc66382b3cb80db1f6fce4510be6cfaae70c556323fb496d134c89fd" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.66.0-py3-none-any.whl", "has_sig": false, "md5_digest": "323069ad94b1faeba5207b51092345e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 154792, "upload_time": "2020-10-02T21:49:25", "upload_time_iso_8601": "2020-10-02T21:49:25.806784Z", "url": "https://files.pythonhosted.org/packages/15/cd/fdf19c01dc9d652cf1a26396d45aeb1dfc7bdbdc8803874800d0770e9d45/aws_cdk.custom_resources-1.66.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ee708b77e2d16caf595b997b663e265", "sha256": "6e5a797c7a18c68745983582a8f0237bb5e75d37d77fea1dd1626fd7069f69d9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.66.0.tar.gz", "has_sig": false, "md5_digest": "5ee708b77e2d16caf595b997b663e265", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 159178, "upload_time": "2020-10-02T21:53:06", "upload_time_iso_8601": "2020-10-02T21:53:06.158535Z", "url": "https://files.pythonhosted.org/packages/33/ab/7054393b723e33068a9e169175f59deb824ee2fb022719f2e43270c737dd/aws-cdk.custom-resources-1.66.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.67.0": [ { "comment_text": "", "digests": { "md5": "bc94a2f93eb1696e71dfa1f23e3357f3", "sha256": "a022e9374857582120f70295cccb92ffc7c060e415161875e18a73bd26798545" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.67.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bc94a2f93eb1696e71dfa1f23e3357f3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94552, "upload_time": "2020-10-07T21:34:00", "upload_time_iso_8601": "2020-10-07T21:34:00.386781Z", "url": "https://files.pythonhosted.org/packages/82/9d/2ff88bf7ee9d47f436f9dc74ccd5469513b609d08e67b355debf08fbf782/aws_cdk.custom_resources-1.67.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1994489dc0a65d68618a6721fc91f9fe", "sha256": "c61a5d9f5a23babd76004480f9fa2556996f017f7610929e9acea8066fddb40c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.67.0.tar.gz", "has_sig": false, "md5_digest": "1994489dc0a65d68618a6721fc91f9fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97908, "upload_time": "2020-10-07T21:36:58", "upload_time_iso_8601": "2020-10-07T21:36:58.996708Z", "url": "https://files.pythonhosted.org/packages/11/3e/900876e8c8f3848504bd8852ebeed5f2afd3a1ec8a4df8314f1c6e4cd73c/aws-cdk.custom-resources-1.67.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.68.0": [ { "comment_text": "", "digests": { "md5": "39391227e245d0c2a38ac53df6e4885c", "sha256": "9b5acc433e657e8f707e4f50d8746afab56bc269e2451521797113544b7425f4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.68.0-py3-none-any.whl", "has_sig": false, "md5_digest": "39391227e245d0c2a38ac53df6e4885c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94550, "upload_time": "2020-10-15T19:58:25", "upload_time_iso_8601": "2020-10-15T19:58:25.062710Z", "url": "https://files.pythonhosted.org/packages/91/47/f605dc72360b39f45b5b60a44e9c3fc0456e30d07d8ffe006e2f4ab6613d/aws_cdk.custom_resources-1.68.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "60ec00fb9bc21e9f555a876783fd7de8", "sha256": "a1bb5beb973d6f5cf16d29800dbb99b2996e865e82cddbf11f5466330fd59307" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.68.0.tar.gz", "has_sig": false, "md5_digest": "60ec00fb9bc21e9f555a876783fd7de8", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97883, "upload_time": "2020-10-15T20:01:29", "upload_time_iso_8601": "2020-10-15T20:01:29.486781Z", "url": "https://files.pythonhosted.org/packages/44/d2/bd77019aadc23edf360ea385b47714b284301b835763f4b12fd822b545f9/aws-cdk.custom-resources-1.68.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.69.0": [ { "comment_text": "", "digests": { "md5": "473613a7280161b13cfadddbd141a6f9", "sha256": "38c655bebba105e106810a384c6663f0ba3b63785b6f57825996aca0dcf1455d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.69.0-py3-none-any.whl", "has_sig": false, "md5_digest": "473613a7280161b13cfadddbd141a6f9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94545, "upload_time": "2020-10-19T22:17:40", "upload_time_iso_8601": "2020-10-19T22:17:40.333075Z", "url": "https://files.pythonhosted.org/packages/16/70/9814d2a8d62397114e6e68cecc95ff3229e3997344c0c2c32cd83504aa12/aws_cdk.custom_resources-1.69.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd3896c4ed90c36115aa0489a438fe92", "sha256": "7be4ad2f0011b21e0264a79ec4f63fb08b3f274b285985c282d98a19c95eec3e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.69.0.tar.gz", "has_sig": false, "md5_digest": "dd3896c4ed90c36115aa0489a438fe92", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97899, "upload_time": "2020-10-19T22:20:48", "upload_time_iso_8601": "2020-10-19T22:20:48.619677Z", "url": "https://files.pythonhosted.org/packages/d9/8f/79364a525c9e9e40cc1770fcab098fff726937ad6a3996fed26e6f8e3bba/aws-cdk.custom-resources-1.69.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "d03defa5f53dd088e2aac87a390b3870", "sha256": "420b9da0f56e03ac752c151558a0649bb5933d8a62a1c3856d1f09775dd71319" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d03defa5f53dd088e2aac87a390b3870", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 42621, "upload_time": "2019-09-06T01:57:07", "upload_time_iso_8601": "2019-09-06T01:57:07.024309Z", "url": "https://files.pythonhosted.org/packages/46/be/715ae7d3e269034c82095a284d04fbc778c477dc124e621ec6387af52023/aws_cdk.custom_resources-1.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3c58c3794c914b07ef9c3c38572b7b3d", "sha256": "38bc11c40fcf10a78cef7c32e87e4ad1fb9391be9e9048aa0a01438a78f31c69" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.7.0.tar.gz", "has_sig": false, "md5_digest": "3c58c3794c914b07ef9c3c38572b7b3d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 45209, "upload_time": "2019-09-06T01:59:48", "upload_time_iso_8601": "2019-09-06T01:59:48.354549Z", "url": "https://files.pythonhosted.org/packages/0e/7e/ccf1a5bfd17e3d8b3014ec8497eb4b11d6e180339966b353b22981dcca5c/aws-cdk.custom-resources-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.70.0": [ { "comment_text": "", "digests": { "md5": "66ce1f8a9ffbeb97f3ced9cdec08368f", "sha256": "c24a901dd4465b7c9eb883688a8d56af47874db0c57aa69d1fda5f165416de12" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.70.0-py3-none-any.whl", "has_sig": false, "md5_digest": "66ce1f8a9ffbeb97f3ced9cdec08368f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94541, "upload_time": "2020-10-24T00:58:33", "upload_time_iso_8601": "2020-10-24T00:58:33.042193Z", "url": "https://files.pythonhosted.org/packages/ee/b9/ae9589817b337056fb367eaa5a915d4631b1ea1693da69d305b6d75faec5/aws_cdk.custom_resources-1.70.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "838917d060098307178bab621981f330", "sha256": "ae6671be5fcdb948649d28d3557139836cfdac7e3c28508d455ef224f7d4bdc9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.70.0.tar.gz", "has_sig": false, "md5_digest": "838917d060098307178bab621981f330", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97892, "upload_time": "2020-10-24T01:01:26", "upload_time_iso_8601": "2020-10-24T01:01:26.161921Z", "url": "https://files.pythonhosted.org/packages/14/8d/0a29d06046d0d0211708f3173e9e174b046316efa73e7688e620cb26d30b/aws-cdk.custom-resources-1.70.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.71.0": [ { "comment_text": "", "digests": { "md5": "649739e960a0d8c14dc6f977f70f2d0e", "sha256": "25725f40ca28cf750fc835ad3a6f1b1c628aa7347841ee1313e67c23029ccf6f" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.71.0-py3-none-any.whl", "has_sig": false, "md5_digest": "649739e960a0d8c14dc6f977f70f2d0e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94573, "upload_time": "2020-10-29T20:06:21", "upload_time_iso_8601": "2020-10-29T20:06:21.033625Z", "url": "https://files.pythonhosted.org/packages/93/6b/d9e8860a6ab11bc0b3b2f345e8891705cb77cc02a652a706df169fe292f2/aws_cdk.custom_resources-1.71.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46632b35258fdc494b85a739ba3a592d", "sha256": "bc550473974077bf70af30741433c53b0f7a99aa08a2d475a7ba3b507bcbd1bd" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.71.0.tar.gz", "has_sig": false, "md5_digest": "46632b35258fdc494b85a739ba3a592d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97932, "upload_time": "2020-10-29T20:08:56", "upload_time_iso_8601": "2020-10-29T20:08:56.717803Z", "url": "https://files.pythonhosted.org/packages/ff/ff/84f61922ef7269fb36aef34fc51086b3a1f7d502d8f4d0b737be524b2cda/aws-cdk.custom-resources-1.71.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.72.0": [ { "comment_text": "", "digests": { "md5": "034255b724f38c3f9611adf00cb5e70f", "sha256": "0908be0c5701e5076bd2c37762db3c7b32637c62d8d4b29ede92b0c6adff2f3b" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.72.0-py3-none-any.whl", "has_sig": false, "md5_digest": "034255b724f38c3f9611adf00cb5e70f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94572, "upload_time": "2020-11-06T05:46:00", "upload_time_iso_8601": "2020-11-06T05:46:00.641123Z", "url": "https://files.pythonhosted.org/packages/0c/34/ac7c3efd078dcd56106f1531f50aa531690e36b57e97b57ce3543981882c/aws_cdk.custom_resources-1.72.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f44608f411d0732508f5b88858b275c", "sha256": "2c524f89e283914147f2d8a9edcbd1e7920ed4114f841fa41f795638eec8c833" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.72.0.tar.gz", "has_sig": false, "md5_digest": "6f44608f411d0732508f5b88858b275c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97928, "upload_time": "2020-11-06T05:48:24", "upload_time_iso_8601": "2020-11-06T05:48:24.484528Z", "url": "https://files.pythonhosted.org/packages/a3/c7/dfef6f46c6291a9128c6b4e495096dbdb3a610feb46520b1d7d076aa4c6f/aws-cdk.custom-resources-1.72.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.73.0": [ { "comment_text": "", "digests": { "md5": "3c580e70fdab8d64c6b96d0f237f2146", "sha256": "d54029cdc00152735a79e219808e99d6e64d1a9f1cf56818b4613f28d8c10bf8" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.73.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3c580e70fdab8d64c6b96d0f237f2146", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94578, "upload_time": "2020-11-11T13:55:51", "upload_time_iso_8601": "2020-11-11T13:55:51.956098Z", "url": "https://files.pythonhosted.org/packages/c3/13/df1ee6d8a8968df5c61fcde52d920e97822d38f03d5f25ed60a3e426b3dd/aws_cdk.custom_resources-1.73.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ceaf1e5f860a2b7003b13ad2746c764f", "sha256": "ec849aa6fc62b9175a2e0d52e748e70e2ef3241bb7ee3665dfed9ee7dd348448" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.73.0.tar.gz", "has_sig": false, "md5_digest": "ceaf1e5f860a2b7003b13ad2746c764f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97943, "upload_time": "2020-11-11T13:58:02", "upload_time_iso_8601": "2020-11-11T13:58:02.753506Z", "url": "https://files.pythonhosted.org/packages/03/c8/fe7c1c73e52433c3f36fdbfcd27bd2d4659ebbe80ef9b69c9ddd6d73925a/aws-cdk.custom-resources-1.73.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.74.0": [ { "comment_text": "", "digests": { "md5": "4c9f643841f85edd379bb5059b1ccbf3", "sha256": "5713a2171e0e2108f6bc3f2c2100730331006da508b168d46dbccff4a3b9d64e" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.74.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4c9f643841f85edd379bb5059b1ccbf3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94614, "upload_time": "2020-11-17T11:55:33", "upload_time_iso_8601": "2020-11-17T11:55:33.745469Z", "url": "https://files.pythonhosted.org/packages/d2/3c/77f789580d305720c4f68b55c568cbd4b67f2ba348e74e577e373d482ece/aws_cdk.custom_resources-1.74.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7094fc7e695c934f58021f530a59392c", "sha256": "9abe171afe0d33810916492338785d3f1358b8dac7a35af82a8d47304c88b27f" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.74.0.tar.gz", "has_sig": false, "md5_digest": "7094fc7e695c934f58021f530a59392c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 97964, "upload_time": "2020-11-17T11:57:49", "upload_time_iso_8601": "2020-11-17T11:57:49.460370Z", "url": "https://files.pythonhosted.org/packages/e6/73/d35e8c0b30bdf4eba33708832df65ddb7e9a80334a8568f84e19f4aded2b/aws-cdk.custom-resources-1.74.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.75.0": [ { "comment_text": "", "digests": { "md5": "2bd483d7afd6de3fb3d5e144987deccd", "sha256": "b455148864161a18d57c2a36a1a8cbd0f864814674f236f0e4b8cab0d04f60e7" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.75.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2bd483d7afd6de3fb3d5e144987deccd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94690, "upload_time": "2020-11-24T23:33:02", "upload_time_iso_8601": "2020-11-24T23:33:02.508158Z", "url": "https://files.pythonhosted.org/packages/c3/e8/296986595feeca5ba455e1cb4b8e1dd428199d00f96d536861742d15ca1b/aws_cdk.custom_resources-1.75.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8a2ef825d1aa08f5efe1860038c3c08", "sha256": "0b1fbaf50abf425e799b7ba365a40704ca4cd553ddb87b587e578e5645cd071b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.75.0.tar.gz", "has_sig": false, "md5_digest": "c8a2ef825d1aa08f5efe1860038c3c08", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 98049, "upload_time": "2020-11-24T23:35:21", "upload_time_iso_8601": "2020-11-24T23:35:21.038092Z", "url": "https://files.pythonhosted.org/packages/7d/8c/aa3dd623af89a98d33fead9a58ec7c95bf0c20dc40724b225576d1ad00ee/aws-cdk.custom-resources-1.75.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.76.0": [ { "comment_text": "", "digests": { "md5": "01bd22673db2e51fee995549b93c2909", "sha256": "66587cc54f787adcc846b3f81cdaa5a7ee294add61e6808eb8631974a1443d7d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.76.0-py3-none-any.whl", "has_sig": false, "md5_digest": "01bd22673db2e51fee995549b93c2909", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 94758, "upload_time": "2020-12-01T19:40:35", "upload_time_iso_8601": "2020-12-01T19:40:35.271835Z", "url": "https://files.pythonhosted.org/packages/f1/5f/d604720ef9bb4dffdc968474eab099adae477a2c6d5c9f2e3162e49b2e51/aws_cdk.custom_resources-1.76.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "313d68df27b303586b0ed2954778b710", "sha256": "20ac57eea38cd599a24f87c30b0fe447cc4803c88405e44d528039ee385d2bb4" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.76.0.tar.gz", "has_sig": false, "md5_digest": "313d68df27b303586b0ed2954778b710", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 98100, "upload_time": "2020-12-01T19:43:17", "upload_time_iso_8601": "2020-12-01T19:43:17.381681Z", "url": "https://files.pythonhosted.org/packages/de/9f/b3322fc8f454cf14ac115612d0cbfe7aa3c321e40b49d1ac1899dddb9a80/aws-cdk.custom-resources-1.76.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.77.0": [ { "comment_text": "", "digests": { "md5": "97b45b5d0f55039f9578d07c9fd9df1a", "sha256": "14d654c8abd5e3bab727778cea592b32cc1b6650aaa589e6ec318a6ab72f42c4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.77.0-py3-none-any.whl", "has_sig": false, "md5_digest": "97b45b5d0f55039f9578d07c9fd9df1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 95053, "upload_time": "2020-12-07T13:28:06", "upload_time_iso_8601": "2020-12-07T13:28:06.361563Z", "url": "https://files.pythonhosted.org/packages/37/71/8d8fcf66614d08ab80ca79ed12588a0572690b20e710a64f6855c9712f3c/aws_cdk.custom_resources-1.77.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5bcf1a54aacff8ed542b18da303267a0", "sha256": "16bd88f81d2deff3a06bc18fe22978c8708226f4a27d58b6f5e667337f0e1310" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.77.0.tar.gz", "has_sig": false, "md5_digest": "5bcf1a54aacff8ed542b18da303267a0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 98383, "upload_time": "2020-12-07T13:30:24", "upload_time_iso_8601": "2020-12-07T13:30:24.969467Z", "url": "https://files.pythonhosted.org/packages/d0/98/31cb7fabeb473a346ed3fec19e8ca3d6efaa7fdb8003160158dfd9a31d02/aws-cdk.custom-resources-1.77.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.78.0": [ { "comment_text": "", "digests": { "md5": "2975bc688ca78e855622cbc20be00b2c", "sha256": "30bb4926b426bc7aef2a63f320d91a9714e711727f5bd8b65821d32ed26176bc" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.78.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2975bc688ca78e855622cbc20be00b2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 95055, "upload_time": "2020-12-12T03:06:07", "upload_time_iso_8601": "2020-12-12T03:06:07.933686Z", "url": "https://files.pythonhosted.org/packages/cd/e8/fc13fd778896cc3e1d484df3eed5aa114457c6151fa128b989e8f10b16a4/aws_cdk.custom_resources-1.78.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "73490240905bed682801028d4fcd1366", "sha256": "7b544a3c5670b03755e88e49bd851b13e9ed51562b69de67afad75de4178a487" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.78.0.tar.gz", "has_sig": false, "md5_digest": "73490240905bed682801028d4fcd1366", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 98430, "upload_time": "2020-12-12T03:08:30", "upload_time_iso_8601": "2020-12-12T03:08:30.675830Z", "url": "https://files.pythonhosted.org/packages/55/37/a4a03cdea095ddec484beb0fa42ade2bba8ed3b2defc295f01587f6a2e25/aws-cdk.custom-resources-1.78.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.79.0": [ { "comment_text": "", "digests": { "md5": "03b6b152f1bea06fb5684ef74e8982a9", "sha256": "9242940d56d0971344ddaf766d451447e68f66511c42a4b120c0da5659b29b47" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.79.0-py3-none-any.whl", "has_sig": false, "md5_digest": "03b6b152f1bea06fb5684ef74e8982a9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 95055, "upload_time": "2020-12-17T12:13:32", "upload_time_iso_8601": "2020-12-17T12:13:32.766713Z", "url": "https://files.pythonhosted.org/packages/78/d3/dce443c01823624e224441c112d5d69b6e2c8c353ec743c33b268fd43780/aws_cdk.custom_resources-1.79.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9df81852b07b31de4b5e3032dead80af", "sha256": "bad90464d1581f25c9bf7d2931e689d78ec5d5c0d3488c96f32a0b502c140f47" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.79.0.tar.gz", "has_sig": false, "md5_digest": "9df81852b07b31de4b5e3032dead80af", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 98417, "upload_time": "2020-12-17T12:16:03", "upload_time_iso_8601": "2020-12-17T12:16:03.943380Z", "url": "https://files.pythonhosted.org/packages/e5/1f/87c06f29fa21de99c1146654369474c3b77307cf0e467d85667e03fbe285/aws-cdk.custom-resources-1.79.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "8eb67e61991112ceb258ec588657331d", "sha256": "d9080e9755b05910c040dd890667f5eac11c3b15ecac890116ab876b110a4c02" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8eb67e61991112ceb258ec588657331d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43878, "upload_time": "2019-09-10T22:12:29", "upload_time_iso_8601": "2019-09-10T22:12:29.032977Z", "url": "https://files.pythonhosted.org/packages/2e/52/61f7555f620a4b5b9949028f53c10b4e17f755d3e3ba9f1b2e6296fab7fe/aws_cdk.custom_resources-1.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa91bae73c629935e899b172cfd693e6", "sha256": "cfbea345ae1450a876752818c94bd6bda771c460332e5b46157aab67bd5aaa2d" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.8.0.tar.gz", "has_sig": false, "md5_digest": "aa91bae73c629935e899b172cfd693e6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 46463, "upload_time": "2019-09-10T22:15:21", "upload_time_iso_8601": "2019-09-10T22:15:21.993845Z", "url": "https://files.pythonhosted.org/packages/1c/e2/6d88c9811c6ae2005396cefdc9f2d098b586c2e1c59fb5c85d7cc6f54a1d/aws-cdk.custom-resources-1.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.80.0": [ { "comment_text": "", "digests": { "md5": "7e98be8afa0d357fce14eaae4ccdde6a", "sha256": "fffd6890222f43a69d4b2d02423656cdda419c9414ab59178e23aa2d2d8afd50" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.80.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7e98be8afa0d357fce14eaae4ccdde6a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96099, "upload_time": "2020-12-22T13:22:16", "upload_time_iso_8601": "2020-12-22T13:22:16.673822Z", "url": "https://files.pythonhosted.org/packages/8a/3d/a3d69fc82b020512ae485be05fb367ffcff427c7020659d19db26cfdac4c/aws_cdk.custom_resources-1.80.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e64edd5ee495fd8998bc27eb50e29f3", "sha256": "f5820ce637ee946519b0438960e48069c929da4a2da61444634dc7cd411a54d3" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.80.0.tar.gz", "has_sig": false, "md5_digest": "8e64edd5ee495fd8998bc27eb50e29f3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99714, "upload_time": "2020-12-22T13:24:37", "upload_time_iso_8601": "2020-12-22T13:24:37.033928Z", "url": "https://files.pythonhosted.org/packages/14/1a/c35d771a21e68b4f1eab23540924bb5aa5e04b20ebf742dff4a512e7bbb6/aws-cdk.custom-resources-1.80.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.81.0": [ { "comment_text": "", "digests": { "md5": "f28dbeb6bc089f362fea681036a7be01", "sha256": "8075852c648cee24fe5d072f420f19e7092772ac80bb4c3ed80c290f5031a1b3" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.81.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f28dbeb6bc089f362fea681036a7be01", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96097, "upload_time": "2020-12-31T00:16:36", "upload_time_iso_8601": "2020-12-31T00:16:36.207689Z", "url": "https://files.pythonhosted.org/packages/f7/a7/071813d531bc7d581ca1d0c5aae7d56e8d03fbce1ac69427c2a0691ee986/aws_cdk.custom_resources-1.81.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2f0c15050cc56c0ceacd09121769e7bf", "sha256": "f29e814ef6c7a0b771127401a51fc7e5ded761914e89a6ac9f35dd048d604ea9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.81.0.tar.gz", "has_sig": false, "md5_digest": "2f0c15050cc56c0ceacd09121769e7bf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99732, "upload_time": "2020-12-31T00:18:56", "upload_time_iso_8601": "2020-12-31T00:18:56.800690Z", "url": "https://files.pythonhosted.org/packages/19/d6/a05982697044212cb55ccf1f21d1d0b828338e958caa6f74306797d375b8/aws-cdk.custom-resources-1.81.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.82.0": [ { "comment_text": "", "digests": { "md5": "68521bd91465128772cad7dc330a3c2c", "sha256": "6f3b6c69a88d2d1fca9779187fc2280d416ed6b9bdab134dc7d253f7538257a2" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.82.0-py3-none-any.whl", "has_sig": false, "md5_digest": "68521bd91465128772cad7dc330a3c2c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96095, "upload_time": "2021-01-03T10:56:59", "upload_time_iso_8601": "2021-01-03T10:56:59.666331Z", "url": "https://files.pythonhosted.org/packages/d1/e7/da92cad2c144d4feb9c5f3081d71f31d680a3540c9c2a538672d4fbc8196/aws_cdk.custom_resources-1.82.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4baf06e05dc4aad5767c0c442c165329", "sha256": "6811a0e2f04509196e94c5a15cf4dad2b0b81b5373830f348a782538d2d25989" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.82.0.tar.gz", "has_sig": false, "md5_digest": "4baf06e05dc4aad5767c0c442c165329", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99715, "upload_time": "2021-01-03T10:59:22", "upload_time_iso_8601": "2021-01-03T10:59:22.898317Z", "url": "https://files.pythonhosted.org/packages/b9/39/4a26ba8f83eb5e310dd63f50c803fea7fc77f13a872fcb5631e952a70194/aws-cdk.custom-resources-1.82.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.83.0": [ { "comment_text": "", "digests": { "md5": "767170449af909e29ad3fa7741794668", "sha256": "7335917631c1af52ebaf7e5229d277e51c855a50bdcf52760e9fd8ea5655cad1" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.83.0-py3-none-any.whl", "has_sig": false, "md5_digest": "767170449af909e29ad3fa7741794668", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96264, "upload_time": "2021-01-06T16:34:45", "upload_time_iso_8601": "2021-01-06T16:34:45.856073Z", "url": "https://files.pythonhosted.org/packages/15/aa/3fb06c7b08f5fc9897b9c41955fad3b87d66046ca3e16e46066d37880cdd/aws_cdk.custom_resources-1.83.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dfcec6bce5432c0e445225efa6c760d7", "sha256": "1b8f286c19837713d7432fd74ed0c793245457fdf30e38697014814d80c4c351" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.83.0.tar.gz", "has_sig": false, "md5_digest": "dfcec6bce5432c0e445225efa6c760d7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99911, "upload_time": "2021-01-06T16:37:16", "upload_time_iso_8601": "2021-01-06T16:37:16.766286Z", "url": "https://files.pythonhosted.org/packages/07/b1/d3eebed4b10bc9d64dcdb0551d5d9802b31ed1d5f19d1c39b4d99a6ba6e1/aws-cdk.custom-resources-1.83.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.84.0": [ { "comment_text": "", "digests": { "md5": "46580f921a5628aaed54e9c38dd89770", "sha256": "3e564901a271ddcce8898651369d908ed226bc075eb8d535e39aae7c58cae97d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.84.0-py3-none-any.whl", "has_sig": false, "md5_digest": "46580f921a5628aaed54e9c38dd89770", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96258, "upload_time": "2021-01-12T22:22:00", "upload_time_iso_8601": "2021-01-12T22:22:00.568067Z", "url": "https://files.pythonhosted.org/packages/65/53/fcff8557ed46ebc4ed09b25960c8fd85adfec9e9de06702c8d2769ffceb1/aws_cdk.custom_resources-1.84.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "22b3c5f4021dde1aa0b71afcb04ccf24", "sha256": "1a70a9445e6099335133dab4e88af21727eb81027b0a143c863a6db6e3ec440b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.84.0.tar.gz", "has_sig": false, "md5_digest": "22b3c5f4021dde1aa0b71afcb04ccf24", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99910, "upload_time": "2021-01-12T22:24:36", "upload_time_iso_8601": "2021-01-12T22:24:36.186773Z", "url": "https://files.pythonhosted.org/packages/22/63/4884082be957468d1385522c493e92e6d65290aca2c77b8741ce874002a3/aws-cdk.custom-resources-1.84.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.85.0": [ { "comment_text": "", "digests": { "md5": "4ce61955b9147f43877dee4d696d2068", "sha256": "a8e264efd2d16cffa706e89a3146b94f7d551cafb00c8124cfebcd05e8badbd6" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.85.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4ce61955b9147f43877dee4d696d2068", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96260, "upload_time": "2021-01-14T22:19:39", "upload_time_iso_8601": "2021-01-14T22:19:39.090715Z", "url": "https://files.pythonhosted.org/packages/b2/43/5978bc67e76ae79948b36ec78e4fe6a2fa677392dd266aa13333ea1df1e5/aws_cdk.custom_resources-1.85.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dccefce07276d634bbac86213af7da70", "sha256": "3f830cfa511c2b9ef65503d6a159f9f93374fe165c1e313b5ddf4691424dba37" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.85.0.tar.gz", "has_sig": false, "md5_digest": "dccefce07276d634bbac86213af7da70", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 99917, "upload_time": "2021-01-14T22:22:13", "upload_time_iso_8601": "2021-01-14T22:22:13.430545Z", "url": "https://files.pythonhosted.org/packages/62/f9/a8e1a03b320b7e366ac55217cca3e2bc8e57143d9ceb9814a415f5886c6f/aws-cdk.custom-resources-1.85.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.86.0": [ { "comment_text": "", "digests": { "md5": "62b6c645470c6e249517b9d8d9dd2b8b", "sha256": "9c75024d3b4d35a3189842e89bfc6309ffeaee30455942d9145d9a1a7260f0ac" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.86.0-py3-none-any.whl", "has_sig": false, "md5_digest": "62b6c645470c6e249517b9d8d9dd2b8b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96495, "upload_time": "2021-01-21T15:03:55", "upload_time_iso_8601": "2021-01-21T15:03:55.043497Z", "url": "https://files.pythonhosted.org/packages/f6/19/2945a8ed80881e6c52ca3af4d91245d82e4dba1615ce84c96229dc8a2620/aws_cdk.custom_resources-1.86.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "470c1b06c11e9c6b194890b11967cf3f", "sha256": "9e0c7199d2b9ee1d506054f945d1dd162319ed3c4149b5ea60b838a3678543ac" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.86.0.tar.gz", "has_sig": false, "md5_digest": "470c1b06c11e9c6b194890b11967cf3f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100180, "upload_time": "2021-01-21T15:06:33", "upload_time_iso_8601": "2021-01-21T15:06:33.505249Z", "url": "https://files.pythonhosted.org/packages/3b/54/7755e2ab2fcf7cc5598f28a1c68ab64dd40b316e0339baf48c53e72cc615/aws-cdk.custom-resources-1.86.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.87.0": [ { "comment_text": "", "digests": { "md5": "c4cf8e48d8f59fc0f2575f2f8db6e75c", "sha256": "72df008619b7212ead6e1250652cfb74364dabee8d108d1a1574efc6ea5b95a4" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.87.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c4cf8e48d8f59fc0f2575f2f8db6e75c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96496, "upload_time": "2021-01-27T12:34:18", "upload_time_iso_8601": "2021-01-27T12:34:18.367481Z", "url": "https://files.pythonhosted.org/packages/24/10/049b62f3046b5f2b98e0125aaea2d341fb07a590aaae151bed7a0a025a22/aws_cdk.custom_resources-1.87.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aeda1cc54fbe5cc17af471c332992750", "sha256": "1e9b1819750aa851b98fe15c6f3ca692a8d301043a502021358f7ab303627a2c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.87.0.tar.gz", "has_sig": false, "md5_digest": "aeda1cc54fbe5cc17af471c332992750", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100177, "upload_time": "2021-01-27T12:36:58", "upload_time_iso_8601": "2021-01-27T12:36:58.201816Z", "url": "https://files.pythonhosted.org/packages/c7/de/9a702bc2ebae1fd32efe6ca6939f9d214271f10f479e8f96b0546cf40f40/aws-cdk.custom-resources-1.87.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.87.1": [ { "comment_text": "", "digests": { "md5": "642f73eee252d72f940846f68c9532a7", "sha256": "039aeb3f5e8f9672117d7c8d9f70ac38b3a46695645d0d5582a607bad96c6501" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.87.1-py3-none-any.whl", "has_sig": false, "md5_digest": "642f73eee252d72f940846f68c9532a7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96498, "upload_time": "2021-01-28T17:53:55", "upload_time_iso_8601": "2021-01-28T17:53:55.711492Z", "url": "https://files.pythonhosted.org/packages/69/71/85de51da395e3e8d17d2239f1421d7b6fdfa037af42bda0d804f8fb8694b/aws_cdk.custom_resources-1.87.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b150b9bdb3710a714f004e315ca8060", "sha256": "fa6ac42c81661d0600358023abe2882b10a9344fc5cd96d753c080f65408a0bf" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.87.1.tar.gz", "has_sig": false, "md5_digest": "6b150b9bdb3710a714f004e315ca8060", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100184, "upload_time": "2021-01-28T17:56:34", "upload_time_iso_8601": "2021-01-28T17:56:34.288789Z", "url": "https://files.pythonhosted.org/packages/b3/d3/7e5c0476466bca26027d7eeb3ffb97f9cdc2052630b65e8dc9d6380fa1d5/aws-cdk.custom-resources-1.87.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.88.0": [ { "comment_text": "", "digests": { "md5": "c0eed718740e0f374f49233046a2c296", "sha256": "67025d49fd390e1f53e49b1c89f425adc995db5458c4136725e4c7f2f54afe5a" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.88.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c0eed718740e0f374f49233046a2c296", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96497, "upload_time": "2021-02-04T00:57:01", "upload_time_iso_8601": "2021-02-04T00:57:01.479329Z", "url": "https://files.pythonhosted.org/packages/79/ca/352b874bc63631fc34899b7cd6fb8496fe0bfeb7b0b37fe426ae72981239/aws_cdk.custom_resources-1.88.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5ab847ef087c2855a28c1f49921b9fcf", "sha256": "ab48020bad65097369b20295b59038f0b2599f0aa5afa45c3cae8795b43a6e77" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.88.0.tar.gz", "has_sig": false, "md5_digest": "5ab847ef087c2855a28c1f49921b9fcf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100190, "upload_time": "2021-02-04T01:00:11", "upload_time_iso_8601": "2021-02-04T01:00:11.766790Z", "url": "https://files.pythonhosted.org/packages/91/d0/137adb7abad2b2ab6b53e04bd962a67c15aa9727cf4c50ea5a11c9014330/aws-cdk.custom-resources-1.88.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.89.0": [ { "comment_text": "", "digests": { "md5": "91ee2f2ec353faf991a8a39482738130", "sha256": "6715271f9b5642705b765c467a849d4f8f8810e6dfc139027a43c70f3ff75c45" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.89.0-py3-none-any.whl", "has_sig": false, "md5_digest": "91ee2f2ec353faf991a8a39482738130", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 96844, "upload_time": "2021-02-09T16:32:13", "upload_time_iso_8601": "2021-02-09T16:32:13.899388Z", "url": "https://files.pythonhosted.org/packages/f0/fc/8f726ad21463f91b17d533fe01517ddaccb34a492a33344191801a898a02/aws_cdk.custom_resources-1.89.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0dbb43022fc560cdda5e309926938ff3", "sha256": "57f8ac1766a253a1bce77e0d26c9b49079337c3a36463ca0d8979c18e98ca1ac" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.89.0.tar.gz", "has_sig": false, "md5_digest": "0dbb43022fc560cdda5e309926938ff3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 100574, "upload_time": "2021-02-09T16:34:59", "upload_time_iso_8601": "2021-02-09T16:34:59.942512Z", "url": "https://files.pythonhosted.org/packages/f1/ba/b9fe2bf8c77a390e5040e9b85576d3b0b2e1007c690c3f1dfa660eac7f23/aws-cdk.custom-resources-1.89.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "522d09b9a2f3a8f04a8ffd9141379e49", "sha256": "afe1e94051518557c2283a1232e52a410b17cda3bf58cea4e5ceafa71af8679d" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "522d09b9a2f3a8f04a8ffd9141379e49", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 43984, "upload_time": "2019-09-20T10:48:54", "upload_time_iso_8601": "2019-09-20T10:48:54.177237Z", "url": "https://files.pythonhosted.org/packages/f4/ec/f83a70905015baf38a7a6725cee41605c97e5aec8f68205f92f3fdc515f1/aws_cdk.custom_resources-1.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eabfc9cc5dfb82a435430ab4d92d3653", "sha256": "462aa1ed121b9f5967b19640db9e3ae93aa510e7b08de57fe64d8bfe42c1f22c" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.9.0.tar.gz", "has_sig": false, "md5_digest": "eabfc9cc5dfb82a435430ab4d92d3653", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 46580, "upload_time": "2019-09-20T10:51:51", "upload_time_iso_8601": "2019-09-20T10:51:51.432880Z", "url": "https://files.pythonhosted.org/packages/40/be/1dc1927aab3d724626c650bdbe3e6296df2a7f8efe6abecc510d7c3d80de/aws-cdk.custom-resources-1.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.90.0": [ { "comment_text": "", "digests": { "md5": "e07f41d460e7f116ef089848033f5260", "sha256": "ec2661ba690c4d6c33dbd3462c4f703922647f3045b5df7c1208346f717f1d01" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.90.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e07f41d460e7f116ef089848033f5260", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97354, "upload_time": "2021-02-17T23:55:43", "upload_time_iso_8601": "2021-02-17T23:55:43.461637Z", "url": "https://files.pythonhosted.org/packages/a5/e3/391bd84d3e225918ee5681d9a4a8993ce29ab4fdc86c71e45382dc7532a4/aws_cdk.custom_resources-1.90.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "52159b5fe095d677dea5eecf9aa6d699", "sha256": "a85e49ebc600ff0debe94dc38749959108710e629d80ae6b3a904e789c3354a9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.90.0.tar.gz", "has_sig": false, "md5_digest": "52159b5fe095d677dea5eecf9aa6d699", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 101141, "upload_time": "2021-02-17T23:58:23", "upload_time_iso_8601": "2021-02-17T23:58:23.722783Z", "url": "https://files.pythonhosted.org/packages/cd/a8/48e5ba958c9484308688930b84bcfb824d203dc02cd4795b418af85daf27/aws-cdk.custom-resources-1.90.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.90.1": [ { "comment_text": "", "digests": { "md5": "966e0fc57dc79223146b39b957cc5bf4", "sha256": "374c7957dd5b8b9d0e61f4e442ea8bddcd0eb3b770c923227899fb541a3bbf45" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.90.1-py3-none-any.whl", "has_sig": false, "md5_digest": "966e0fc57dc79223146b39b957cc5bf4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 97355, "upload_time": "2021-02-19T19:45:24", "upload_time_iso_8601": "2021-02-19T19:45:24.920291Z", "url": "https://files.pythonhosted.org/packages/df/51/c1efab87609510154f30e1a691d0284e4bd089c9091368f633f432f984e7/aws_cdk.custom_resources-1.90.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b5c98367760593abd4904f0321cb948", "sha256": "458f9d682dad88cbfe8e2e400fb5441a6b6445e3fa7da20f16e6c93059ef200b" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.90.1.tar.gz", "has_sig": false, "md5_digest": "2b5c98367760593abd4904f0321cb948", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 101151, "upload_time": "2021-02-19T19:48:09", "upload_time_iso_8601": "2021-02-19T19:48:09.471195Z", "url": "https://files.pythonhosted.org/packages/2e/5a/7a20da887c6acc16683151b9a3675604bc5ba3ba54ad64b4d7062a36bb52/aws-cdk.custom-resources-1.90.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.91.0": [ { "comment_text": "", "digests": { "md5": "cbd20e96b87beb31c6a7f7db2e4c945f", "sha256": "7142f61848bfef77aa82acc0ea4af538713e3d67a93fe4da18203355540e0e4c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.91.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cbd20e96b87beb31c6a7f7db2e4c945f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 98067, "upload_time": "2021-02-23T13:20:23", "upload_time_iso_8601": "2021-02-23T13:20:23.697021Z", "url": "https://files.pythonhosted.org/packages/00/ed/5528372132491ef196eb9e254f31931bd03e252906060643701df03c48ba/aws_cdk.custom_resources-1.91.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2817526cb57078e21a05fdfb35ad5dd", "sha256": "0e8ca5c1d58f699e7baad9bd0905d018064b9f178f5cd9a396039134e4e56cb3" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.91.0.tar.gz", "has_sig": false, "md5_digest": "f2817526cb57078e21a05fdfb35ad5dd", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 101929, "upload_time": "2021-02-23T13:23:16", "upload_time_iso_8601": "2021-02-23T13:23:16.768259Z", "url": "https://files.pythonhosted.org/packages/df/94/6a5bf86a6d6eb92b92d3f6241157ce2af9fb8665bf4c9852a22716aa5920/aws-cdk.custom-resources-1.91.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.92.0": [ { "comment_text": "", "digests": { "md5": "ee36f4e104ae4ada848710634d0de3e8", "sha256": "fc36a0ac8025fa59c6feb1670d07c345ec9cae0f58ad12c06c2ab79ca98688c9" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.92.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ee36f4e104ae4ada848710634d0de3e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103836, "upload_time": "2021-03-06T04:19:40", "upload_time_iso_8601": "2021-03-06T04:19:40.119083Z", "url": "https://files.pythonhosted.org/packages/20/6d/6b66c2704c6664fd6cc399ec877d9941fb47649e29b03d48ea1a123a0c80/aws_cdk.custom_resources-1.92.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e594e5bdbc68182e39258ca30cd47bd7", "sha256": "65b6669064ce7e0319aeb75f0f740bdc782da77fe34e140c1fe06c32e30c8f04" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.92.0.tar.gz", "has_sig": false, "md5_digest": "e594e5bdbc68182e39258ca30cd47bd7", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103323, "upload_time": "2021-03-06T04:22:21", "upload_time_iso_8601": "2021-03-06T04:22:21.493111Z", "url": "https://files.pythonhosted.org/packages/44/94/8502652d80769357f43aaa82a0c27660a0fdfdcae36faaa3006d25928cc4/aws-cdk.custom-resources-1.92.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.93.0": [ { "comment_text": "", "digests": { "md5": "51d1eba84e0927bc9b3175e02f4b9481", "sha256": "2d39432d66cddf5753f974854af079885671066a684456b31bcfb3f1f9af403c" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.93.0-py3-none-any.whl", "has_sig": false, "md5_digest": "51d1eba84e0927bc9b3175e02f4b9481", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103841, "upload_time": "2021-03-11T15:17:36", "upload_time_iso_8601": "2021-03-11T15:17:36.313369Z", "url": "https://files.pythonhosted.org/packages/92/df/62495b1989a3e8712ee39230f08784a06942ece90b2682ae42e0efe3c277/aws_cdk.custom_resources-1.93.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d329f0a53c2ca3688baea6db1823b546", "sha256": "92867c5cd4ca0691f35592a891483ed4dc89db1578da906931f62debe08100ec" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.93.0.tar.gz", "has_sig": false, "md5_digest": "d329f0a53c2ca3688baea6db1823b546", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103327, "upload_time": "2021-03-11T15:20:27", "upload_time_iso_8601": "2021-03-11T15:20:27.685603Z", "url": "https://files.pythonhosted.org/packages/9d/21/d579b4248e2de1e03da6ac25d40b361795ad8e8941682963bd7cbb78c109/aws-cdk.custom-resources-1.93.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.94.0": [ { "comment_text": "", "digests": { "md5": "56d1f83f37f7e5aefa4b6942b8a12223", "sha256": "6495b32ed5e4cabb68bac41fe9dcda3d65ec71d2352a80dd00fbaad7fba99cce" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.94.0-py3-none-any.whl", "has_sig": false, "md5_digest": "56d1f83f37f7e5aefa4b6942b8a12223", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103841, "upload_time": "2021-03-16T20:19:14", "upload_time_iso_8601": "2021-03-16T20:19:14.531957Z", "url": "https://files.pythonhosted.org/packages/52/88/55d31fef5d6a754cfb95f08d912c1f0867360a3c38c22305a8be84fc9a67/aws_cdk.custom_resources-1.94.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "145bff0fcc9ccece48ef6318a6983042", "sha256": "7ba3ccc95ed6c6f5fcbf42e85657f6b7a898143a35cf352f184c016d825293d9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.94.0.tar.gz", "has_sig": false, "md5_digest": "145bff0fcc9ccece48ef6318a6983042", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103335, "upload_time": "2021-03-16T20:22:21", "upload_time_iso_8601": "2021-03-16T20:22:21.829871Z", "url": "https://files.pythonhosted.org/packages/b1/5f/749cf3a6163bcb9a27120c83dcba420d9a470d8c9593013e7b3aa2f8c3c8/aws-cdk.custom-resources-1.94.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.94.1": [ { "comment_text": "", "digests": { "md5": "356dd43b413f1d2e5937f06ccb1d4f63", "sha256": "fc433f0a504efa5753e269fd147a2a1248328945c0fc027b09514951077063fb" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.94.1-py3-none-any.whl", "has_sig": false, "md5_digest": "356dd43b413f1d2e5937f06ccb1d4f63", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103847, "upload_time": "2021-03-17T01:32:55", "upload_time_iso_8601": "2021-03-17T01:32:55.923526Z", "url": "https://files.pythonhosted.org/packages/8c/93/5d8c1f5e247cfdea45275e541b4be144f62fa1f2328e570db25189974c07/aws_cdk.custom_resources-1.94.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dd578e2726b1345fb2ef7bc787332da5", "sha256": "ac00c7ab87ea00fa8c8f2e09c52088a141666d22e2e4468e9b96834ae3b4272a" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.94.1.tar.gz", "has_sig": false, "md5_digest": "dd578e2726b1345fb2ef7bc787332da5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103348, "upload_time": "2021-03-17T01:35:40", "upload_time_iso_8601": "2021-03-17T01:35:40.761236Z", "url": "https://files.pythonhosted.org/packages/3b/35/51de27694eeb2d58c401ff0382332e4c0d28b7af932db735ac1c550299f9/aws-cdk.custom-resources-1.94.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.95.0": [ { "comment_text": "", "digests": { "md5": "ef575cd633fa84aad0bb73fda9d2e36b", "sha256": "455bc24992a7d925235c67662a9c475bc27ab4097346dd3f92dad6ed5526c002" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.95.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ef575cd633fa84aad0bb73fda9d2e36b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103860, "upload_time": "2021-03-25T12:52:10", "upload_time_iso_8601": "2021-03-25T12:52:10.206989Z", "url": "https://files.pythonhosted.org/packages/72/07/5f9df908d15bba34d6263c0c22a5b0cf3602881b7dbbb573ef35c223b71d/aws_cdk.custom_resources-1.95.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "10e60a7b23e528f5c45beedab04582f1", "sha256": "7369e4ed1bdd3e10a28e2358cba220a2ca39e01d9f030b939e9253ef059751bb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.95.0.tar.gz", "has_sig": false, "md5_digest": "10e60a7b23e528f5c45beedab04582f1", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103341, "upload_time": "2021-03-25T12:55:02", "upload_time_iso_8601": "2021-03-25T12:55:02.217262Z", "url": "https://files.pythonhosted.org/packages/ba/28/9301382bf9e7fe955f0d421c9b0ee4f5fea8c2fa3ebe956813f2dd16a451/aws-cdk.custom-resources-1.95.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.95.1": [ { "comment_text": "", "digests": { "md5": "a07bab9cf24c88b656aeb45e4fcc876d", "sha256": "4f3de6822c2d6599e7736216fd351af425b5305e0a4221f8ab0d0d6862b3e520" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.95.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a07bab9cf24c88b656aeb45e4fcc876d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103858, "upload_time": "2021-03-26T01:04:43", "upload_time_iso_8601": "2021-03-26T01:04:43.217403Z", "url": "https://files.pythonhosted.org/packages/28/1e/1cea316a957f9fcf7302fbfffc645e6f4ef59528e6ddf5cd5c4ec6542b95/aws_cdk.custom_resources-1.95.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5ff3926c643c02fa50c1e2f38dda520", "sha256": "024682ea66ee69c4d81955f9c39ffad3a0230cd657db63c0287d51c4daac22c9" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.95.1.tar.gz", "has_sig": false, "md5_digest": "a5ff3926c643c02fa50c1e2f38dda520", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103311, "upload_time": "2021-03-26T01:08:13", "upload_time_iso_8601": "2021-03-26T01:08:13.630790Z", "url": "https://files.pythonhosted.org/packages/01/66/fe18b2d1e523246a3376922bb53ae08e9251fba5c62771d166f504205ec1/aws-cdk.custom-resources-1.95.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.95.2": [ { "comment_text": "", "digests": { "md5": "9893d2ab55703cd7ada2b5a348c90d24", "sha256": "68192c71317c5b4026762d90ea45e97f63098c93939787f54a2487681ddbe8e5" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.95.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9893d2ab55703cd7ada2b5a348c90d24", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103864, "upload_time": "2021-04-01T07:13:10", "upload_time_iso_8601": "2021-04-01T07:13:10.052834Z", "url": "https://files.pythonhosted.org/packages/b9/0f/024b18ee01ce17a452123ba7e921717efac2ece730190336cc2dfc67e729/aws_cdk.custom_resources-1.95.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bef31d9e4a6b3d7b15371d18b87a568", "sha256": "83ecdeae7ab68e9c9bb2b5ed7fbed82b4eb821395c3eeeb6be1cb44aac6374e4" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.95.2.tar.gz", "has_sig": false, "md5_digest": "4bef31d9e4a6b3d7b15371d18b87a568", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103326, "upload_time": "2021-04-01T07:16:04", "upload_time_iso_8601": "2021-04-01T07:16:04.226256Z", "url": "https://files.pythonhosted.org/packages/fd/96/c4313d0cfd95076530ca060437faf05adbee08dde4469f32af3d6269e53a/aws-cdk.custom-resources-1.95.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.96.0": [ { "comment_text": "", "digests": { "md5": "e0ac76125027f726cd57f82127d4c220", "sha256": "66b1c5e1fe5ad7be94cc0fad1736a3309977f96944a4ca1ff82196b6f2fbd100" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.96.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e0ac76125027f726cd57f82127d4c220", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103858, "upload_time": "2021-04-01T15:33:01", "upload_time_iso_8601": "2021-04-01T15:33:01.806458Z", "url": "https://files.pythonhosted.org/packages/93/50/d1616bba8290249c6f7a9615928965b59abadfb932607d48336eae8f3592/aws_cdk.custom_resources-1.96.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a3c707ed7168e3e4b1752452b4956f09", "sha256": "39838e4ece57964830b798f748dc83f179aed0baa362be59d8594c26399ab638" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.96.0.tar.gz", "has_sig": false, "md5_digest": "a3c707ed7168e3e4b1752452b4956f09", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103317, "upload_time": "2021-04-01T15:36:07", "upload_time_iso_8601": "2021-04-01T15:36:07.866780Z", "url": "https://files.pythonhosted.org/packages/75/4b/eaa5eaff07407ab3abfae003a3b183e5dd5910a2b4b11aa4fa8ced2eb299/aws-cdk.custom-resources-1.96.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.97.0": [ { "comment_text": "", "digests": { "md5": "b78cfc853bc25ee5ebc88a11aebaf029", "sha256": "d743bb073c4a682bbb53f02ef95ffb032dbbcd67038649bbf7db929a78926bc8" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.97.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b78cfc853bc25ee5ebc88a11aebaf029", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103851, "upload_time": "2021-04-06T15:22:57", "upload_time_iso_8601": "2021-04-06T15:22:57.833739Z", "url": "https://files.pythonhosted.org/packages/44/c3/3418f067d54dcb39ec1bfdc2d2b001e48a014c56e1d5fb9d56ab89ee425a/aws_cdk.custom_resources-1.97.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "db432a27ea9396cddf91c987f6933c22", "sha256": "87a35a44a3e89a1883c6dde266bee7088f008b0edf1fe4c51b70091a6c142abb" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.97.0.tar.gz", "has_sig": false, "md5_digest": "db432a27ea9396cddf91c987f6933c22", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103330, "upload_time": "2021-04-06T15:26:07", "upload_time_iso_8601": "2021-04-06T15:26:07.729981Z", "url": "https://files.pythonhosted.org/packages/ea/62/238e4b75e398be24973fe9a3cc892960652fa08c74f83e1e003302ab5667/aws-cdk.custom-resources-1.97.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.98.0": [ { "comment_text": "", "digests": { "md5": "8a53535139f175d340de133421a722f8", "sha256": "b2dfd555d75a254c42d851a289ea0fa8f763bd3167adb944504a0bcd9e5163d3" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.98.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8a53535139f175d340de133421a722f8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103852, "upload_time": "2021-04-12T11:27:50", "upload_time_iso_8601": "2021-04-12T11:27:50.971242Z", "url": "https://files.pythonhosted.org/packages/44/a1/4b125be7adb77e29994bdb3991f9a705b5392d1cd9e9fb786f0bfa2cf046/aws_cdk.custom_resources-1.98.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0207ab68671f8f6bfd06c9bebc245799", "sha256": "e3a68f3b72bf5acbbdfda5fdeff625d8a3dd09d0d98bc7efe4bb5c327b0ee8a4" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.98.0.tar.gz", "has_sig": false, "md5_digest": "0207ab68671f8f6bfd06c9bebc245799", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 103341, "upload_time": "2021-04-12T11:30:47", "upload_time_iso_8601": "2021-04-12T11:30:47.201261Z", "url": "https://files.pythonhosted.org/packages/58/70/258bc598f9abee8e779ad073077b8a91a518c39a6d99d2a388597ef80045/aws-cdk.custom-resources-1.98.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.99.0": [ { "comment_text": "", "digests": { "md5": "5f969cc7d999df4949146079cdae2605", "sha256": "6e7ba5070b3dada0ff8b0fcb1381a8e41845cbe00b66c1395c8adbdfc400fe07" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.99.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5f969cc7d999df4949146079cdae2605", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 103850, "upload_time": "2021-04-19T10:47:28", "upload_time_iso_8601": "2021-04-19T10:47:28.722784Z", "url": "https://files.pythonhosted.org/packages/e0/30/4698dedc2e33369e543bc66f39490c113337d7d8ac31178a3dda8e087991/aws_cdk.custom_resources-1.99.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fa86eae3324b0979bccee3afb022a53d", "sha256": "0d04875f0eac76793c56d746a1dfada2b3ad3163a75556d28842982eccba725e" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.99.0.tar.gz", "has_sig": false, "md5_digest": "fa86eae3324b0979bccee3afb022a53d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 107180, "upload_time": "2021-04-19T10:50:26", "upload_time_iso_8601": "2021-04-19T10:50:26.542891Z", "url": "https://files.pythonhosted.org/packages/82/bc/c4210e529182f9fe03d4a33efe613092b93f7d9144f486638a752df757a7/aws-cdk.custom-resources-1.99.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cbce57b90c90839ee72afef0f4e8b820", "sha256": "77e9db0e116384f85b115c523aad6db2bda5d55c2b121268719b6a2ac86cd920" }, "downloads": -1, "filename": "aws_cdk.custom_resources-1.156.1-py3-none-any.whl", "has_sig": false, "md5_digest": "cbce57b90c90839ee72afef0f4e8b820", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 132383, "upload_time": "2022-05-13T04:39:12", "upload_time_iso_8601": "2022-05-13T04:39:12.901254Z", "url": "https://files.pythonhosted.org/packages/fc/df/475699283b377f3c1b896dc0239868a35d600bf4ec3c13677f15151a9b4d/aws_cdk.custom_resources-1.156.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "58304cdb84154ed13474620d55664a41", "sha256": "1cb17f7d6359a0cdba2c377993f352eb6f4fccc330d0aae2fd3e8bf96656a815" }, "downloads": -1, "filename": "aws-cdk.custom-resources-1.156.1.tar.gz", "has_sig": false, "md5_digest": "58304cdb84154ed13474620d55664a41", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 139718, "upload_time": "2022-05-13T04:44:03", "upload_time_iso_8601": "2022-05-13T04:44:03.201613Z", "url": "https://files.pythonhosted.org/packages/94/bf/d9eca60a1492e1f76487973df5a586299664c0aa062907307b0373646fe5/aws-cdk.custom-resources-1.156.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }