Skip to content

Batch Disassociate User Stack

appstream_batch_disassociate_user_stack R Documentation

Disassociates the specified users from the specified stacks

Description

Disassociates the specified users from the specified stacks.

Usage

appstream_batch_disassociate_user_stack(UserStackAssociations)

Arguments

UserStackAssociations

[required] The list of UserStackAssociation objects.

Value

A list with the following syntax:

list(
  errors = list(
    list(
      UserStackAssociation = list(
        StackName = "string",
        UserName = "string",
        AuthenticationType = "API"|"SAML"|"USERPOOL"|"AWS_AD",
        SendEmailNotification = TRUE|FALSE
      ),
      ErrorCode = "STACK_NOT_FOUND"|"USER_NAME_NOT_FOUND"|"DIRECTORY_NOT_FOUND"|"INTERNAL_ERROR",
      ErrorMessage = "string"
    )
  )
)

Request syntax

svc$batch_disassociate_user_stack(
  UserStackAssociations = list(
    list(
      StackName = "string",
      UserName = "string",
      AuthenticationType = "API"|"SAML"|"USERPOOL"|"AWS_AD",
      SendEmailNotification = TRUE|FALSE
    )
  )
)