@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.752Z") @Stability(value=Stable) public interface CfnUserToGroupAdditionProps extends software.amazon.jsii.JsiiSerializable
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() |
String |
getGroupName()
The name of the group to update.
|
List<String> |
getUsers()
A list of the names of the users that you want to add to the group.
|
@Stability(value=Stable) @NotNull 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: _+=,.@-
@Stability(value=Stable) @NotNull List<String> getUsers()
@Stability(value=Stable) static CfnUserToGroupAdditionProps.Builder builder()
Copyright © 2022. All rights reserved.