Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(init): add new parameter to C# example #1831

Merged
merged 1 commit into from
Feb 21, 2019
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ public HelloStack(App parent, string name, IStackProps props) : base(parent, nam
DisplayName = "My First Topic Yeah"
});

topic.SubscribeQueue(queue);
topic.SubscribeQueue(queue, null);

// You can also define your own constructs and use them in your stack.
HelloConstruct hello = new HelloConstruct(this, "Buckets", new HelloConstructProps()
{
BucketCount = 5
});

// Create a new user with read access to the HelloConstruct resource.
// Create a new user with read access to the HelloConstruct resource.
User user = new User(this, "MyUser", new UserProps());
hello.GrantRead(user);
}
Expand Down