Interface ICfnUserToGroupAdditionProps
Properties for defining a CfnUserToGroupAddition.
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnUserToGroupAdditionProps
Syntax (vb)
Public Interface ICfnUserToGroupAdditionProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IAM;
var cfnUserToGroupAdditionProps = new CfnUserToGroupAdditionProps {
GroupName = "groupName",
Users = new [] { "users" }
};
Synopsis
Properties
| GroupName | The name of the group to update. |
| Users | A list of the names of the users that you want to add to the group. |
Properties
GroupName
The name of the group to update.
string GroupName { get; }
Property Value
Remarks
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: _+=,.@-
Users
A list of the names of the users that you want to add to the group.
string[] Users { get; }
Property Value
string[]