User Stack Association Args
    data class UserStackAssociationArgs(val authenticationType: Output<String>? = null, val sendEmailNotification: Output<Boolean>? = null, val stackName: Output<String>? = null, val userName: Output<String>? = null) : ConvertibleToJava<UserStackAssociationArgs> 
Manages an AppStream User Stack association.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.appstream.Stack("test", {name: "STACK NAME"});
const testUser = new aws.appstream.User("test", {
    authenticationType: "USERPOOL",
    userName: "EMAIL",
});
const testUserStackAssociation = new aws.appstream.UserStackAssociation("test", {
    authenticationType: testUser.authenticationType,
    stackName: test.name,
    userName: testUser.userName,
});Content copied to clipboard
import pulumi
import pulumi_aws as aws
test = aws.appstream.Stack("test", name="STACK NAME")
test_user = aws.appstream.User("test",
    authentication_type="USERPOOL",
    user_name="EMAIL")
test_user_stack_association = aws.appstream.UserStackAssociation("test",
    authentication_type=test_user.authentication_type,
    stack_name=test.name,
    user_name=test_user.user_name)Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
    var test = new Aws.AppStream.Stack("test", new()
    {
        Name = "STACK NAME",
    });
    var testUser = new Aws.AppStream.User("test", new()
    {
        AuthenticationType = "USERPOOL",
        UserName = "EMAIL",
    });
    var testUserStackAssociation = new Aws.AppStream.UserStackAssociation("test", new()
    {
        AuthenticationType = testUser.AuthenticationType,
        StackName = test.Name,
        UserName = testUser.UserName,
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appstream"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		test, err := appstream.NewStack(ctx, "test", &appstream.StackArgs{
			Name: pulumi.String("STACK NAME"),
		})
		if err != nil {
			return err
		}
		testUser, err := appstream.NewUser(ctx, "test", &appstream.UserArgs{
			AuthenticationType: pulumi.String("USERPOOL"),
			UserName:           pulumi.String("EMAIL"),
		})
		if err != nil {
			return err
		}
		_, err = appstream.NewUserStackAssociation(ctx, "test", &appstream.UserStackAssociationArgs{
			AuthenticationType: testUser.AuthenticationType,
			StackName:          test.Name,
			UserName:           testUser.UserName,
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appstream.Stack;
import com.pulumi.aws.appstream.StackArgs;
import com.pulumi.aws.appstream.User;
import com.pulumi.aws.appstream.UserArgs;
import com.pulumi.aws.appstream.UserStackAssociation;
import com.pulumi.aws.appstream.UserStackAssociationArgs;
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 test = new Stack("test", StackArgs.builder()
            .name("STACK NAME")
            .build());
        var testUser = new User("testUser", UserArgs.builder()
            .authenticationType("USERPOOL")
            .userName("EMAIL")
            .build());
        var testUserStackAssociation = new UserStackAssociation("testUserStackAssociation", UserStackAssociationArgs.builder()
            .authenticationType(testUser.authenticationType())
            .stackName(test.name())
            .userName(testUser.userName())
            .build());
    }
}Content copied to clipboard
resources:
  test:
    type: aws:appstream:Stack
    properties:
      name: STACK NAME
  testUser:
    type: aws:appstream:User
    name: test
    properties:
      authenticationType: USERPOOL
      userName: EMAIL
  testUserStackAssociation:
    type: aws:appstream:UserStackAssociation
    name: test
    properties:
      authenticationType: ${testUser.authenticationType}
      stackName: ${test.name}
      userName: ${testUser.userName}Content copied to clipboard
Import
Using pulumi import, import AppStream User Stack Association using the user_name, authentication_type, and stack_name, separated by a slash (/). For example:
$ pulumi import aws:appstream/userStackAssociation:UserStackAssociation example userName/auhtenticationType/stackNameContent copied to clipboard
Constructors
Link copied to clipboard
                fun UserStackAssociationArgs(authenticationType: Output<String>? = null, sendEmailNotification: Output<Boolean>? = null, stackName: Output<String>? = null, userName: Output<String>? = null)