updateEnvironmentMembership
inline suspend fun Cloud9Client.updateEnvironmentMembership(crossinline block: UpdateEnvironmentMembershipRequest.Builder.() -> Unit): UpdateEnvironmentMembershipResponse
Changes the settings of an existing environment member for an Cloud9 development environment.
Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more"
Samples
import aws.sdk.kotlin.services.cloud9.model.MemberPermissions
fun main() {
//sampleStart
val resp = cloud9Client.updateEnvironmentMembership {
environmentId = "8d9967e2f0624182b74e7690ad69ebEX"
userArn = "arn:aws:iam::123456789012:user/AnotherDemoUser"
permissions = MemberPermissions.fromValue("read-only")
}
//sampleEnd
}