Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/iac/get-started/aws/create-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export interface AwsS3WebsiteArgs {
export class AwsS3Website extends pulumi.ComponentResource {
public readonly url: pulumi.Output<string>; // the S3 website url.

constructor(name: string, args: AwsS3WebsiteArgs, opts: pulumi.ComponentResourceOptions) {
constructor(name: string, args: AwsS3WebsiteArgs, opts?: pulumi.ComponentResourceOptions) {
super("quickstart:index:AwsS3Website", name, args, opts);

// Component initialization will go here next...
Expand Down