cdk-simplewebsite-deploy 2.2.0__tar.gz → 2.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cdk_simplewebsite_deploy-2.2.0/src/cdk_simplewebsite_deploy.egg-info → cdk_simplewebsite_deploy-2.2.2}/PKG-INFO +3 -60
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/README.md +1 -58
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/setup.py +3 -3
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy/__init__.py +1 -58
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy/_jsii/__init__.py +2 -2
- cdk_simplewebsite_deploy-2.2.2/src/cdk_simplewebsite_deploy/_jsii/cdk-simplewebsite-deploy@2.2.2.jsii.tgz +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2/src/cdk_simplewebsite_deploy.egg-info}/PKG-INFO +3 -60
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy.egg-info/SOURCES.txt +1 -1
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy.egg-info/requires.txt +1 -1
- cdk_simplewebsite_deploy-2.2.0/src/cdk_simplewebsite_deploy/_jsii/cdk-simplewebsite-deploy@2.2.0.jsii.tgz +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/LICENSE +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/MANIFEST.in +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/pyproject.toml +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/setup.cfg +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy/py.typed +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy.egg-info/dependency_links.txt +0 -0
- {cdk_simplewebsite_deploy-2.2.0 → cdk_simplewebsite_deploy-2.2.2}/src/cdk_simplewebsite_deploy.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdk-simplewebsite-deploy
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: This is an AWS CDK v2 Construct to simplify deploying a single-page website use CloudFront distributions.
|
|
5
5
|
Home-page: https://github.com/SnapPetal/cdk-simplewebsite-deploy
|
|
6
6
|
Author: Thon Becker<thon.becker@gmail.com>
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: aws-cdk-lib<3.0.0,>=2.248.0
|
|
23
23
|
Requires-Dist: constructs<11.0.0,>=10.6.0
|
|
24
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.128.0
|
|
25
25
|
Requires-Dist: publication>=0.0.3
|
|
26
26
|
Requires-Dist: typeguard==2.13.3
|
|
27
27
|
|
|
@@ -64,35 +64,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
64
64
|
}
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
##### C#
|
|
68
|
-
|
|
69
|
-
```console
|
|
70
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
```cs
|
|
74
|
-
using Amazon.CDK;
|
|
75
|
-
using Constructs;
|
|
76
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
77
|
-
|
|
78
|
-
namespace SimpleWebsiteDeploy
|
|
79
|
-
{
|
|
80
|
-
public class PipelineStack : Stack
|
|
81
|
-
{
|
|
82
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
83
|
-
{
|
|
84
|
-
new CreateCloudfrontSite(scope, "test-website", new CloudfrontSiteConfiguration()
|
|
85
|
-
{
|
|
86
|
-
WebsiteFolder = "./src/build",
|
|
87
|
-
IndexDoc = "index.html",
|
|
88
|
-
HostedZone = "example.com",
|
|
89
|
-
SubDomain = "www.example.com",
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
```
|
|
95
|
-
|
|
96
67
|
##### Java
|
|
97
68
|
|
|
98
69
|
```xml
|
|
@@ -182,34 +153,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
182
153
|
}
|
|
183
154
|
```
|
|
184
155
|
|
|
185
|
-
##### C#
|
|
186
|
-
|
|
187
|
-
```console
|
|
188
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
```cs
|
|
192
|
-
using Amazon.CDK;
|
|
193
|
-
using Constructs;
|
|
194
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
195
|
-
|
|
196
|
-
namespace SimpleWebsiteDeploy
|
|
197
|
-
{
|
|
198
|
-
public class PipelineStack : Stack
|
|
199
|
-
{
|
|
200
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
201
|
-
{
|
|
202
|
-
new CreateBasicSite(scope, "test-website", new BasicSiteConfiguration()
|
|
203
|
-
{
|
|
204
|
-
WebsiteFolder = "./src/build",
|
|
205
|
-
IndexDoc = "index.html",
|
|
206
|
-
HostedZone = "example.com",
|
|
207
|
-
});
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
```
|
|
212
|
-
|
|
213
156
|
##### Java
|
|
214
157
|
|
|
215
158
|
```xml
|
|
@@ -510,7 +453,7 @@ export class AdvancedWebsiteStack extends cdk.Stack {
|
|
|
510
453
|
* **Backward Compatible**: All existing configurations continue to work
|
|
511
454
|
* **Type Safe**: Full TypeScript support with comprehensive interfaces
|
|
512
455
|
* **CDK v2 Ready**: Built for the latest AWS CDK version
|
|
513
|
-
* **Multi-Language**: Support for TypeScript, Python,
|
|
456
|
+
* **Multi-Language**: Support for TypeScript, Python, and Java
|
|
514
457
|
|
|
515
458
|
## License
|
|
516
459
|
|
|
@@ -37,35 +37,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
37
37
|
}
|
|
38
38
|
```
|
|
39
39
|
|
|
40
|
-
##### C#
|
|
41
|
-
|
|
42
|
-
```console
|
|
43
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
```cs
|
|
47
|
-
using Amazon.CDK;
|
|
48
|
-
using Constructs;
|
|
49
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
50
|
-
|
|
51
|
-
namespace SimpleWebsiteDeploy
|
|
52
|
-
{
|
|
53
|
-
public class PipelineStack : Stack
|
|
54
|
-
{
|
|
55
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
56
|
-
{
|
|
57
|
-
new CreateCloudfrontSite(scope, "test-website", new CloudfrontSiteConfiguration()
|
|
58
|
-
{
|
|
59
|
-
WebsiteFolder = "./src/build",
|
|
60
|
-
IndexDoc = "index.html",
|
|
61
|
-
HostedZone = "example.com",
|
|
62
|
-
SubDomain = "www.example.com",
|
|
63
|
-
});
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
```
|
|
68
|
-
|
|
69
40
|
##### Java
|
|
70
41
|
|
|
71
42
|
```xml
|
|
@@ -155,34 +126,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
155
126
|
}
|
|
156
127
|
```
|
|
157
128
|
|
|
158
|
-
##### C#
|
|
159
|
-
|
|
160
|
-
```console
|
|
161
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
162
|
-
```
|
|
163
|
-
|
|
164
|
-
```cs
|
|
165
|
-
using Amazon.CDK;
|
|
166
|
-
using Constructs;
|
|
167
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
168
|
-
|
|
169
|
-
namespace SimpleWebsiteDeploy
|
|
170
|
-
{
|
|
171
|
-
public class PipelineStack : Stack
|
|
172
|
-
{
|
|
173
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
174
|
-
{
|
|
175
|
-
new CreateBasicSite(scope, "test-website", new BasicSiteConfiguration()
|
|
176
|
-
{
|
|
177
|
-
WebsiteFolder = "./src/build",
|
|
178
|
-
IndexDoc = "index.html",
|
|
179
|
-
HostedZone = "example.com",
|
|
180
|
-
});
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
```
|
|
185
|
-
|
|
186
129
|
##### Java
|
|
187
130
|
|
|
188
131
|
```xml
|
|
@@ -483,7 +426,7 @@ export class AdvancedWebsiteStack extends cdk.Stack {
|
|
|
483
426
|
* **Backward Compatible**: All existing configurations continue to work
|
|
484
427
|
* **Type Safe**: Full TypeScript support with comprehensive interfaces
|
|
485
428
|
* **CDK v2 Ready**: Built for the latest AWS CDK version
|
|
486
|
-
* **Multi-Language**: Support for TypeScript, Python,
|
|
429
|
+
* **Multi-Language**: Support for TypeScript, Python, and Java
|
|
487
430
|
|
|
488
431
|
## License
|
|
489
432
|
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "cdk-simplewebsite-deploy",
|
|
8
|
-
"version": "2.2.
|
|
8
|
+
"version": "2.2.2",
|
|
9
9
|
"description": "This is an AWS CDK v2 Construct to simplify deploying a single-page website use CloudFront distributions.",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/SnapPetal/cdk-simplewebsite-deploy",
|
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
|
26
26
|
],
|
|
27
27
|
"package_data": {
|
|
28
28
|
"cdk_simplewebsite_deploy._jsii": [
|
|
29
|
-
"cdk-simplewebsite-deploy@2.2.
|
|
29
|
+
"cdk-simplewebsite-deploy@2.2.2.jsii.tgz"
|
|
30
30
|
],
|
|
31
31
|
"cdk_simplewebsite_deploy": [
|
|
32
32
|
"py.typed"
|
|
@@ -36,7 +36,7 @@ kwargs = json.loads(
|
|
|
36
36
|
"install_requires": [
|
|
37
37
|
"aws-cdk-lib>=2.248.0, <3.0.0",
|
|
38
38
|
"constructs>=10.6.0, <11.0.0",
|
|
39
|
-
"jsii>=1.
|
|
39
|
+
"jsii>=1.128.0, <2.0.0",
|
|
40
40
|
"publication>=0.0.3",
|
|
41
41
|
"typeguard==2.13.3"
|
|
42
42
|
],
|
|
@@ -38,35 +38,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
38
38
|
}
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
##### C#
|
|
42
|
-
|
|
43
|
-
```console
|
|
44
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
```cs
|
|
48
|
-
using Amazon.CDK;
|
|
49
|
-
using Constructs;
|
|
50
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
51
|
-
|
|
52
|
-
namespace SimpleWebsiteDeploy
|
|
53
|
-
{
|
|
54
|
-
public class PipelineStack : Stack
|
|
55
|
-
{
|
|
56
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
57
|
-
{
|
|
58
|
-
new CreateCloudfrontSite(scope, "test-website", new CloudfrontSiteConfiguration()
|
|
59
|
-
{
|
|
60
|
-
WebsiteFolder = "./src/build",
|
|
61
|
-
IndexDoc = "index.html",
|
|
62
|
-
HostedZone = "example.com",
|
|
63
|
-
SubDomain = "www.example.com",
|
|
64
|
-
});
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
|
-
```
|
|
69
|
-
|
|
70
41
|
##### Java
|
|
71
42
|
|
|
72
43
|
```xml
|
|
@@ -156,34 +127,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
156
127
|
}
|
|
157
128
|
```
|
|
158
129
|
|
|
159
|
-
##### C#
|
|
160
|
-
|
|
161
|
-
```console
|
|
162
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
163
|
-
```
|
|
164
|
-
|
|
165
|
-
```cs
|
|
166
|
-
using Amazon.CDK;
|
|
167
|
-
using Constructs;
|
|
168
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
169
|
-
|
|
170
|
-
namespace SimpleWebsiteDeploy
|
|
171
|
-
{
|
|
172
|
-
public class PipelineStack : Stack
|
|
173
|
-
{
|
|
174
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
175
|
-
{
|
|
176
|
-
new CreateBasicSite(scope, "test-website", new BasicSiteConfiguration()
|
|
177
|
-
{
|
|
178
|
-
WebsiteFolder = "./src/build",
|
|
179
|
-
IndexDoc = "index.html",
|
|
180
|
-
HostedZone = "example.com",
|
|
181
|
-
});
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
```
|
|
186
|
-
|
|
187
130
|
##### Java
|
|
188
131
|
|
|
189
132
|
```xml
|
|
@@ -484,7 +427,7 @@ export class AdvancedWebsiteStack extends cdk.Stack {
|
|
|
484
427
|
* **Backward Compatible**: All existing configurations continue to work
|
|
485
428
|
* **Type Safe**: Full TypeScript support with comprehensive interfaces
|
|
486
429
|
* **CDK v2 Ready**: Built for the latest AWS CDK version
|
|
487
|
-
* **Multi-Language**: Support for TypeScript, Python,
|
|
430
|
+
* **Multi-Language**: Support for TypeScript, Python, and Java
|
|
488
431
|
|
|
489
432
|
## License
|
|
490
433
|
|
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
|
33
33
|
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
35
35
|
"cdk-simplewebsite-deploy",
|
|
36
|
-
"2.2.
|
|
36
|
+
"2.2.2",
|
|
37
37
|
__name__[0:-6],
|
|
38
|
-
"cdk-simplewebsite-deploy@2.2.
|
|
38
|
+
"cdk-simplewebsite-deploy@2.2.2.jsii.tgz",
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
__all__ = [
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: cdk-simplewebsite-deploy
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
4
4
|
Summary: This is an AWS CDK v2 Construct to simplify deploying a single-page website use CloudFront distributions.
|
|
5
5
|
Home-page: https://github.com/SnapPetal/cdk-simplewebsite-deploy
|
|
6
6
|
Author: Thon Becker<thon.becker@gmail.com>
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: aws-cdk-lib<3.0.0,>=2.248.0
|
|
23
23
|
Requires-Dist: constructs<11.0.0,>=10.6.0
|
|
24
|
-
Requires-Dist: jsii<2.0.0,>=1.
|
|
24
|
+
Requires-Dist: jsii<2.0.0,>=1.128.0
|
|
25
25
|
Requires-Dist: publication>=0.0.3
|
|
26
26
|
Requires-Dist: typeguard==2.13.3
|
|
27
27
|
|
|
@@ -64,35 +64,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
64
64
|
}
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
##### C#
|
|
68
|
-
|
|
69
|
-
```console
|
|
70
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
```cs
|
|
74
|
-
using Amazon.CDK;
|
|
75
|
-
using Constructs;
|
|
76
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
77
|
-
|
|
78
|
-
namespace SimpleWebsiteDeploy
|
|
79
|
-
{
|
|
80
|
-
public class PipelineStack : Stack
|
|
81
|
-
{
|
|
82
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
83
|
-
{
|
|
84
|
-
new CreateCloudfrontSite(scope, "test-website", new CloudfrontSiteConfiguration()
|
|
85
|
-
{
|
|
86
|
-
WebsiteFolder = "./src/build",
|
|
87
|
-
IndexDoc = "index.html",
|
|
88
|
-
HostedZone = "example.com",
|
|
89
|
-
SubDomain = "www.example.com",
|
|
90
|
-
});
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
```
|
|
95
|
-
|
|
96
67
|
##### Java
|
|
97
68
|
|
|
98
69
|
```xml
|
|
@@ -182,34 +153,6 @@ export class PipelineStack extends cdk.Stack {
|
|
|
182
153
|
}
|
|
183
154
|
```
|
|
184
155
|
|
|
185
|
-
##### C#
|
|
186
|
-
|
|
187
|
-
```console
|
|
188
|
-
dotnet add package ThonBecker.CDK.SimpleWebsiteDeploy
|
|
189
|
-
```
|
|
190
|
-
|
|
191
|
-
```cs
|
|
192
|
-
using Amazon.CDK;
|
|
193
|
-
using Constructs;
|
|
194
|
-
using ThonBecker.CDK.SimpleWebsiteDeploy;
|
|
195
|
-
|
|
196
|
-
namespace SimpleWebsiteDeploy
|
|
197
|
-
{
|
|
198
|
-
public class PipelineStack : Stack
|
|
199
|
-
{
|
|
200
|
-
internal PipelineStack(Construct scope, string id, IStackProps props = null) : base(scope, id, props)
|
|
201
|
-
{
|
|
202
|
-
new CreateBasicSite(scope, "test-website", new BasicSiteConfiguration()
|
|
203
|
-
{
|
|
204
|
-
WebsiteFolder = "./src/build",
|
|
205
|
-
IndexDoc = "index.html",
|
|
206
|
-
HostedZone = "example.com",
|
|
207
|
-
});
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
```
|
|
212
|
-
|
|
213
156
|
##### Java
|
|
214
157
|
|
|
215
158
|
```xml
|
|
@@ -510,7 +453,7 @@ export class AdvancedWebsiteStack extends cdk.Stack {
|
|
|
510
453
|
* **Backward Compatible**: All existing configurations continue to work
|
|
511
454
|
* **Type Safe**: Full TypeScript support with comprehensive interfaces
|
|
512
455
|
* **CDK v2 Ready**: Built for the latest AWS CDK version
|
|
513
|
-
* **Multi-Language**: Support for TypeScript, Python,
|
|
456
|
+
* **Multi-Language**: Support for TypeScript, Python, and Java
|
|
514
457
|
|
|
515
458
|
## License
|
|
516
459
|
|
|
@@ -11,4 +11,4 @@ src/cdk_simplewebsite_deploy.egg-info/dependency_links.txt
|
|
|
11
11
|
src/cdk_simplewebsite_deploy.egg-info/requires.txt
|
|
12
12
|
src/cdk_simplewebsite_deploy.egg-info/top_level.txt
|
|
13
13
|
src/cdk_simplewebsite_deploy/_jsii/__init__.py
|
|
14
|
-
src/cdk_simplewebsite_deploy/_jsii/cdk-simplewebsite-deploy@2.2.
|
|
14
|
+
src/cdk_simplewebsite_deploy/_jsii/cdk-simplewebsite-deploy@2.2.2.jsii.tgz
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|