Delete a user from studio membership.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, DeleteStudioMemberCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, DeleteStudioMemberCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new DeleteStudioMemberCommand(input); const response = await client.send(command);
DeleteStudioMemberCommandInput for command's input shape.
input
DeleteStudioMemberCommandOutput for command's response shape.
response
config for NimbleClient's config shape.
config
Delete a user from studio membership.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, DeleteStudioMemberCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, DeleteStudioMemberCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new DeleteStudioMemberCommand(input); const response = await client.send(command);
DeleteStudioMemberCommandInput for command's
input
shape.DeleteStudioMemberCommandOutput for command's
response
shape.config for NimbleClient's
config
shape.