Namespace Pulumi.Aws.Quicksight
Classes
Group
Resource for managing QuickSight Group
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.Quicksight.Group("example", new Aws.Quicksight.GroupArgs
{
GroupName = "tf-example",
});
}
}
GroupArgs
GroupState
User
Resource for managing QuickSight User
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = new Aws.Quicksight.User("example", new Aws.Quicksight.UserArgs
{
Email = "author@example.com",
IdentityType = "IAM",
UserName = "an-author",
UserRole = "AUTHOR",
});
}
}