Interface CfnUserToGroupAdditionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserToGroupAdditionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.297Z")
@Stability(Stable)
public interface CfnUserToGroupAdditionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnUserToGroupAddition
.
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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUserToGroupAdditionProps
static final class
An implementation forCfnUserToGroupAdditionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroupName
The name of the group to update.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: _+=,.@-
-
getUsers
A list of the names of the users that you want to add to the group. -
builder
-