Skip to content

Commit 3d7a69e

Browse files
API docs work
1 parent 8f4b6d8 commit 3d7a69e

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

cloudFrontS3.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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
99
class 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.
5448
export 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) {

0 commit comments

Comments
 (0)