# GitHub::Organizations::Membership Add people to an organization. Will create an invite and user will only become a member once they accept this invite. ## Syntax To declare this entity in your AWS CloudFormation template, use the following syntax: ### JSON
{
    "Type" : "GitHub::Organizations::Membership",
    "Properties" : {
        "Organization" : String,
        "Username" : String,
        "Role" : String
    }
}
### YAML
Type: GitHub::Organizations::Membership
Properties:
    Organization: String
    Username: String
    Role: String
## Properties #### Organization The Organization the user is being added to _Required_: Yes _Type_: String _Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement) #### Username The handle for the GitHub user account _Required_: Yes _Type_: String _Update requires_: [Replacement](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-replacement) #### Role The role for the new member. _Required_: No _Type_: String _Allowed Values_: admin | member _Update requires_: [No interruption](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt)