GroupMembership

class GroupMembership : KotlinCustomResource

Resource for managing QuickSight Group Membership

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.quicksight.GroupMembership;
import com.pulumi.aws.quicksight.GroupMembershipArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new GroupMembership("example", GroupMembershipArgs.builder()
.groupName("all-access-users")
.memberName("john_smith")
.build());
}
}

Import

QuickSight Group membership can be imported using the AWS account ID, namespace, group name and member name separated by /.

$ pulumi import aws:quicksight/groupMembership:GroupMembership example 123456789123/default/all-access-users/john_smith

Properties

Link copied to clipboard
val arn: Output<String>
Link copied to clipboard
val awsAccountId: Output<String>

The ID for the AWS account that the group is in. Currently, you use the ID for the AWS account that contains your Amazon QuickSight account.

Link copied to clipboard
val groupName: Output<String>

The name of the group in which the member will be added.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val memberName: Output<String>

The name of the member to add to the group.

Link copied to clipboard
val namespace: Output<String>?

The namespace. Defaults to default. Currently only default is supported.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>