معرفی شرکت ها


cdk-cloudfront-plus-0.3.99


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

CDK construct library for CloudFront Extensions
ویژگی مقدار
سیستم عامل -
نام فایل cdk-cloudfront-plus-0.3.99
نام cdk-cloudfront-plus
نسخه کتابخانه 0.3.99
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Pahud Hsieh<pahudnet@gmail.com>
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/pahud/cdk-cloudfront-plus.git
آدرس اینترنتی https://pypi.org/project/cdk-cloudfront-plus/
مجوز Apache-2.0
[![NPM version](https://badge.fury.io/js/cdk-cloudfront-plus.svg)](https://badge.fury.io/js/cdk-cloudfront-plus) [![PyPI version](https://badge.fury.io/py/cdk-cloudfront-plus.svg)](https://badge.fury.io/py/cdk-cloudfront-plus) ![Release](https://github.com/pahud/cdk-cloudfront-plus/workflows/Release/badge.svg?branch=main) # cdk-cloudfront-plus CDK constructs library that allows you to build [AWS CloudFront Extensions](https://github.com/awslabs/aws-cloudfront-extensions) in **JavaScript**, **TypeScript** or **Python**. # Sample ```python # Example automatically generated from non-compiling source. May contain errors. import * as cfplus from 'cdk-cloudfront-plus'; const app = new cdk.App(); const stack = new cdk.Stack(app, 'demo-stack'); // prepare the `modify resonse header` extension const modifyRespHeader = new extensions.ModifyResponseHeader(stack, 'ModifyResp'); // prepare the `anti-hotlinking` extension const antiHotlinking = new extensions.AntiHotlinking(stack, 'AntiHotlink', { referer: [ 'example.com', 'exa?ple.*', ], }); // create the cloudfront distribution with extension(s) new Distribution(stack, 'dist', { defaultBehavior: { origin: new origins.HttpOrigin('aws.amazon.com'), edgeLambdas: [ modifyRespHeader, antiHotlinking, ], }, }); ``` # Available Extensions in AWS CDK | Extension Name | Category | Solution ID | Function/Folder Name | Status | Contributor | | -------------- | ---------- | ------------- | --------------------------------------- | ---| --- | | [Access Origin by geolocation](https://github.com/pahud/cdk-cloudfront-plus/issues/41) | Origin Selection | SO8118 | cf-access-origin-by-geolocation | Completed | @pahud PR#52 | | [Redirect by geolocation](https://github.com/pahud/cdk-cloudfront-plus/issues/11) | Origin Selection | SO8135 | cf-redirect-by-geolocation | Completed | @minche-tsai PR#50 | | [Convert Query String](https://github.com/pahud/cdk-cloudfront-plus/issues/23) | Override Request | SO8113 | cf-convert-query-string | Completed | @HsiehShuJeng PR#53 | | [OAuth2 Authentication](https://github.com/pahud/cdk-cloudfront-plus/issues/17) | Authentication | SO8131 | cf-authentication-by-oauth2 | Completed | @dwchiang PR#59 | | [Cognito Redirect](https://github.com/pahud/cdk-cloudfront-plus/issues/16) | Authentication | SO8132 | cf-authentication-by-cognito-redirect | WIP(BabooPan) | - | | [Global Data Ingestion](https://github.com/pahud/cdk-cloudfront-plus/issues/14) | Logging | SO8133 | cf-global-data-ingestion | Completed | @titanjer PR#62 | | [HTTP 302 from Origin](https://github.com/pahud/cdk-cloudfront-plus/issues/12) | URL Redirect | SO8103 | cf-http302-from-origin | Completed | @RicoToothless PR#71 | | [Default Directory Index for Amazon S3 Origin](https://github.com/pahud/cdk-cloudfront-plus/issues/9) | URL Redirect | SO8134 | cf-default-dir-index | Completed | @guan840912 PR#21 | | [Modify Response Header](https://github.com/awslabs/aws-cloudfront-extensions/tree/main/edge/nodejs/modify-response-header) | Header Rewrite | SO8105 | cf-modify-response-header | Completed | @pahud PR#45 | | [Custom Error Page](https://github.com/pahud/cdk-cloudfront-plus/pull/46)| Header Rewrite | SO8136 | cf-custom-error-page | Completed | @BabooPan PR#46 | | [Anti Hotlinking](https://github.com/awslabs/aws-cloudfront-extensions/tree/main/edge/nodejs/anti-hotlinking) | Security | SO8126 | cf-anti-hotlinking | Completed | @pahud PR#2 | | [Add Security Headers](https://github.com/awslabs/aws-cloudfront-extensions/tree/main/edge/nodejs/add-security-headers) | Security | SO8102 | cf-add-security-headers | Completed | @pahud PR#7 | | [Failover to alternative origin](https://github.com/awslabs/aws-cloudfront-extensions/tree/main/edge/nodejs/multiple-origin-IP-retry) | Origin Selection | SO8120 | cf-multiple-origin-ip-retry | Completed | @guan840912 PR#58 | | [Normalize Query String](https://github.com/pahud/cdk-cloudfront-plus/pull/64) | Override Request | SO8112 | cf-normalize-query-string | Completed | @benkajaja PR#64 |


نیازمندی

مقدار نام
<2.0.0,>=1.73.0 aws-cdk.aws-apigatewayv2-integrations
<2.0.0,>=1.73.0 aws-cdk.aws-apigatewayv2
<2.0.0,>=1.73.0 aws-cdk.aws-cloudfront-origins
<2.0.0,>=1.73.0 aws-cdk.aws-cloudfront
<2.0.0,>=1.73.0 aws-cdk.aws-iam
<2.0.0,>=1.73.0 aws-cdk.aws-kinesisfirehose
<2.0.0,>=1.73.0 aws-cdk.aws-lambda-nodejs
<2.0.0,>=1.73.0 aws-cdk.aws-lambda
<2.0.0,>=1.73.0 aws-cdk.aws-s3-deployment
<2.0.0,>=1.73.0 aws-cdk.aws-s3
<2.0.0,>=1.73.0 aws-cdk.aws-sam
<2.0.0,>=1.73.0 aws-cdk.core
<4.0.0,>=3.2.27 constructs
<2.0.0,>=1.47.0 jsii
>=0.0.3 publication


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl cdk-cloudfront-plus-0.3.99:

    pip install cdk-cloudfront-plus-0.3.99.whl


نصب پکیج tar.gz cdk-cloudfront-plus-0.3.99:

    pip install cdk-cloudfront-plus-0.3.99.tar.gz