@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-14T16:25:22.205Z")
public interface CfnUserToGroupAdditionProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iam.*; CfnUserToGroupAdditionProps cfnUserToGroupAdditionProps = CfnUserToGroupAdditionProps.builder() .groupName("groupName") .users(List.of("users")) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnUserToGroupAdditionProps.Builder
A builder for
CfnUserToGroupAdditionProps |
static class |
CfnUserToGroupAdditionProps.Jsii$Proxy
An implementation for
CfnUserToGroupAdditionProps |
Modifier and Type | Method and Description |
---|---|
static CfnUserToGroupAdditionProps.Builder |
builder() |
java.lang.String |
getGroupName()
The name of the group to update.
|
java.util.List<java.lang.String> |
getUsers()
A list of the names of the users that you want to add to the group.
|
java.lang.String getGroupName()
This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
java.util.List<java.lang.String> getUsers()
static CfnUserToGroupAdditionProps.Builder builder()