cdk-private-s3-hosting 0.0.6__tar.gz → 0.0.7__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_private_s3_hosting-0.0.6/src/cdk_private_s3_hosting.egg-info → cdk_private_s3_hosting-0.0.7}/PKG-INFO +2 -3
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/README.md +1 -2
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/setup.py +2 -2
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk-private-s3-hosting/__init__.py +1 -2
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk-private-s3-hosting/_jsii/__init__.py +2 -2
- cdk_private_s3_hosting-0.0.7/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.7.jsii.tgz +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7/src/cdk_private_s3_hosting.egg-info}/PKG-INFO +2 -3
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk_private_s3_hosting.egg-info/SOURCES.txt +1 -1
- cdk_private_s3_hosting-0.0.6/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.6.jsii.tgz +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/LICENSE +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/MANIFEST.in +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/pyproject.toml +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/setup.cfg +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk-private-s3-hosting/py.typed +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk_private_s3_hosting.egg-info/dependency_links.txt +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk_private_s3_hosting.egg-info/requires.txt +0 -0
- {cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk_private_s3_hosting.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-private-s3-hosting
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.7
|
4
4
|
Summary: CDK Construct for a private frontend hosting S3 bucket
|
5
5
|
Home-page: https://github.com/badmintoncryer/cdk-private-s3-hosting.git
|
6
6
|
Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
|
@@ -88,8 +88,7 @@ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
|
|
88
88
|
|
89
89
|
new s3deploy.BucketDeployment(this, 'DeployWebsite', {
|
90
90
|
sources: [s3deploy.Source.asset('./website-dist')],
|
91
|
-
destinationBucket:
|
92
|
-
bucket: privateS3Hosting.bucket,
|
91
|
+
destinationBucket: privateS3Hosting.bucket,
|
93
92
|
});
|
94
93
|
```
|
95
94
|
|
@@ -60,8 +60,7 @@ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
|
|
60
60
|
|
61
61
|
new s3deploy.BucketDeployment(this, 'DeployWebsite', {
|
62
62
|
sources: [s3deploy.Source.asset('./website-dist')],
|
63
|
-
destinationBucket:
|
64
|
-
bucket: privateS3Hosting.bucket,
|
63
|
+
destinationBucket: privateS3Hosting.bucket,
|
65
64
|
});
|
66
65
|
```
|
67
66
|
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
5
5
|
"""
|
6
6
|
{
|
7
7
|
"name": "cdk-private-s3-hosting",
|
8
|
-
"version": "0.0.
|
8
|
+
"version": "0.0.7",
|
9
9
|
"description": "CDK Construct for a private frontend hosting S3 bucket",
|
10
10
|
"license": "Apache-2.0",
|
11
11
|
"url": "https://github.com/badmintoncryer/cdk-private-s3-hosting.git",
|
@@ -26,7 +26,7 @@ kwargs = json.loads(
|
|
26
26
|
],
|
27
27
|
"package_data": {
|
28
28
|
"cdk-private-s3-hosting._jsii": [
|
29
|
-
"cdk-private-s3-hosting@0.0.
|
29
|
+
"cdk-private-s3-hosting@0.0.7.jsii.tgz"
|
30
30
|
],
|
31
31
|
"cdk-private-s3-hosting": [
|
32
32
|
"py.typed"
|
{cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk-private-s3-hosting/__init__.py
RENAMED
@@ -61,8 +61,7 @@ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
|
|
61
61
|
|
62
62
|
new s3deploy.BucketDeployment(this, 'DeployWebsite', {
|
63
63
|
sources: [s3deploy.Source.asset('./website-dist')],
|
64
|
-
destinationBucket:
|
65
|
-
bucket: privateS3Hosting.bucket,
|
64
|
+
destinationBucket: privateS3Hosting.bucket,
|
66
65
|
});
|
67
66
|
```
|
68
67
|
|
@@ -33,9 +33,9 @@ import constructs._jsii
|
|
33
33
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
35
35
|
"cdk-private-s3-hosting",
|
36
|
-
"0.0.
|
36
|
+
"0.0.7",
|
37
37
|
__name__[0:-6],
|
38
|
-
"cdk-private-s3-hosting@0.0.
|
38
|
+
"cdk-private-s3-hosting@0.0.7.jsii.tgz",
|
39
39
|
)
|
40
40
|
|
41
41
|
__all__ = [
|
cdk_private_s3_hosting-0.0.7/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.7.jsii.tgz
ADDED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: cdk-private-s3-hosting
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.7
|
4
4
|
Summary: CDK Construct for a private frontend hosting S3 bucket
|
5
5
|
Home-page: https://github.com/badmintoncryer/cdk-private-s3-hosting.git
|
6
6
|
Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
|
@@ -88,8 +88,7 @@ const privateS3Hosting = new PrivateS3Hosting(this, 'PrivateS3Hosting', {
|
|
88
88
|
|
89
89
|
new s3deploy.BucketDeployment(this, 'DeployWebsite', {
|
90
90
|
sources: [s3deploy.Source.asset('./website-dist')],
|
91
|
-
destinationBucket:
|
92
|
-
bucket: privateS3Hosting.bucket,
|
91
|
+
destinationBucket: privateS3Hosting.bucket,
|
93
92
|
});
|
94
93
|
```
|
95
94
|
|
@@ -6,7 +6,7 @@ setup.py
|
|
6
6
|
src/cdk-private-s3-hosting/__init__.py
|
7
7
|
src/cdk-private-s3-hosting/py.typed
|
8
8
|
src/cdk-private-s3-hosting/_jsii/__init__.py
|
9
|
-
src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.
|
9
|
+
src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.7.jsii.tgz
|
10
10
|
src/cdk_private_s3_hosting.egg-info/PKG-INFO
|
11
11
|
src/cdk_private_s3_hosting.egg-info/SOURCES.txt
|
12
12
|
src/cdk_private_s3_hosting.egg-info/dependency_links.txt
|
cdk_private_s3_hosting-0.0.6/src/cdk-private-s3-hosting/_jsii/cdk-private-s3-hosting@0.0.6.jsii.tgz
DELETED
Binary file
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{cdk_private_s3_hosting-0.0.6 → cdk_private_s3_hosting-0.0.7}/src/cdk-private-s3-hosting/py.typed
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|