GroupMembershipArgs

data class GroupMembershipArgs(val groupName: Output<String>? = null, val userNames: Output<List<String>>? = null) : ConvertibleToJava<GroupMembershipArgs>

Provides a RAM Group membership resource.

NOTE: Available since v1.0.0+.

Import

RAM Group membership can be imported using the id, e.g.

$ pulumi import alicloud:ram/groupMembership:GroupMembership example my-group

Constructors

Link copied to clipboard
constructor(groupName: Output<String>? = null, userNames: Output<List<String>>? = null)

Properties

Link copied to clipboard
val groupName: Output<String>? = null

Name of the RAM group. This name can have a string of 1 to 64 characters, must contain only alphanumeric characters or hyphen "-", and must not begin with a hyphen.

Link copied to clipboard
val userNames: Output<List<String>>? = null

Set of user name which will be added to group. Each name can have a string of 1 to 64 characters, must contain only alphanumeric characters or hyphens, such as "-",".","_", and must not begin with a hyphen.

Functions

Link copied to clipboard
open override fun toJava(): GroupMembershipArgs