There are more AWS SDK examples available in the AWS Doc SDK Examples
Use DeleteEnvironmentMembership
with a CLI
The following code examples show how to use DeleteEnvironmentMembership
.
- CLI
-
- AWS CLI
-
To delete an environment member from an AWS Cloud9 development environment
This example deletes the specified environment member from the specified AWS Cloud9 development environment.
Command:
aws cloud9 delete-environment-membership --environment-id
8a34f51ce1e04a08882f1e811bd706EX
--user-arnarn:aws:iam::123456789012:user/AnotherDemoUser
Output:
None.
-
For API details, see DeleteEnvironmentMembership
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell
-
Example 1: This example deletes the specified environment member from the specified AWS Cloud9 development environment.
Remove-C9EnvironmentMembership -UserArn arn:aws:iam::123456789012:user/AnotherDemoUser -EnvironmentId ffd88420d4824eeeaeaa8a04bfde8cEX
-
For API details, see DeleteEnvironmentMembership in AWS Tools for PowerShell Cmdlet Reference.
-