Add/update users with given persona to studio membership.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, PutStudioMembersCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, PutStudioMembersCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new PutStudioMembersCommand(input); const response = await client.send(command);
PutStudioMembersCommandInput for command's input shape.
input
PutStudioMembersCommandOutput for command's response shape.
response
config for NimbleClient's config shape.
config
Add/update users with given persona to studio membership.
Use a bare-bones client and the command you need to make an API call.
import { NimbleClient, PutStudioMembersCommand } from "@aws-sdk/client-nimble"; // ES Modules import // const { NimbleClient, PutStudioMembersCommand } = require("@aws-sdk/client-nimble"); // CommonJS import const client = new NimbleClient(config); const command = new PutStudioMembersCommand(input); const response = await client.send(command);
PutStudioMembersCommandInput for command's
input
shape.PutStudioMembersCommandOutput for command's
response
shape.config for NimbleClient's
config
shape.