File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,7 @@ import { aws_cloudfront } from 'aws-cdk-lib';
88// Define class that acts as a set of CDK and other Pulumi resources
99class CloudFrontS3Stack extends pulumicdk . Stack {
1010
11- /**
12- * The domain name for the CloudFront distribution
13- **/
1411 cloudFrontDomain : pulumi . Output < string > ;
15- /**
16- * The name of the S3 bucket that is set up to hold the website content.
17- **/
1812 websiteBucketName : pulumi . Output < string > ;
1913
2014 constructor ( app : pulumicdk . App , id : string , options ?: pulumicdk . StackOptions ) {
@@ -52,7 +46,14 @@ class CloudFrontS3Deployment extends pulumicdk.App {
5246
5347// This resources helps you create a self signed certificate.
5448export class CloudFrontS3 extends pulumi . ComponentResource {
49+
50+ /**
51+ * The domain name for the CloudFront distribution
52+ **/
5553 public readonly cloudFrontDomain : pulumi . Output < any > ;
54+ /**
55+ * The name of the S3 bucket that is set up to hold the website content.
56+ **/
5657 public readonly websiteBucketName : pulumi . Output < any > ;
5758
5859 constructor ( name : string , args ?: CloudFrontS3Args , opts ?: pulumi . ComponentResourceOptions ) {
You can’t perform that action at this time.
0 commit comments