Show / Hide Table of Contents

Class CfnUserToGroupAdditionProps

Properties for defining a CfnUserToGroupAddition.

Inheritance
object
CfnUserToGroupAdditionProps
Implements
ICfnUserToGroupAdditionProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserToGroupAdditionProps : ICfnUserToGroupAdditionProps
Syntax (vb)
Public Class CfnUserToGroupAdditionProps Implements ICfnUserToGroupAdditionProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html

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

Constructors

CfnUserToGroupAdditionProps()

Properties for defining a CfnUserToGroupAddition.

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.

Constructors

CfnUserToGroupAdditionProps()

Properties for defining a CfnUserToGroupAddition.

public CfnUserToGroupAdditionProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html

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" }
             };

Properties

GroupName

The name of the group to update.

public string GroupName { get; set; }
Property Value

string

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: _+=,.@-

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html#cfn-iam-usertogroupaddition-groupname

Users

A list of the names of the users that you want to add to the group.

public string[] Users { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-usertogroupaddition.html#cfn-iam-usertogroupaddition-users

Implements

ICfnUserToGroupAdditionProps
Back to top Generated by DocFX