aws.cloud9.EnvironmentMembership
Explore with Pulumi AI
Provides an environment member to an AWS Cloud9 development environment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.cloud9.EnvironmentEC2("test", {
instanceType: "t2.micro",
name: "some-env",
});
const testUser = new aws.iam.User("test", {name: "some-user"});
const testEnvironmentMembership = new aws.cloud9.EnvironmentMembership("test", {
environmentId: test.id,
permissions: "read-only",
userArn: testUser.arn,
});
import pulumi
import pulumi_aws as aws
test = aws.cloud9.EnvironmentEC2("test",
instance_type="t2.micro",
name="some-env")
test_user = aws.iam.User("test", name="some-user")
test_environment_membership = aws.cloud9.EnvironmentMembership("test",
environment_id=test.id,
permissions="read-only",
user_arn=test_user.arn)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/cloud9"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iam"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
test, err := cloud9.NewEnvironmentEC2(ctx, "test", &cloud9.EnvironmentEC2Args{
InstanceType: pulumi.String("t2.micro"),
Name: pulumi.String("some-env"),
})
if err != nil {
return err
}
testUser, err := iam.NewUser(ctx, "test", &iam.UserArgs{
Name: pulumi.String("some-user"),
})
if err != nil {
return err
}
_, err = cloud9.NewEnvironmentMembership(ctx, "test", &cloud9.EnvironmentMembershipArgs{
EnvironmentId: test.ID(),
Permissions: pulumi.String("read-only"),
UserArn: testUser.Arn,
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Cloud9.EnvironmentEC2("test", new()
{
InstanceType = "t2.micro",
Name = "some-env",
});
var testUser = new Aws.Iam.User("test", new()
{
Name = "some-user",
});
var testEnvironmentMembership = new Aws.Cloud9.EnvironmentMembership("test", new()
{
EnvironmentId = test.Id,
Permissions = "read-only",
UserArn = testUser.Arn,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.cloud9.EnvironmentEC2;
import com.pulumi.aws.cloud9.EnvironmentEC2Args;
import com.pulumi.aws.iam.User;
import com.pulumi.aws.iam.UserArgs;
import com.pulumi.aws.cloud9.EnvironmentMembership;
import com.pulumi.aws.cloud9.EnvironmentMembershipArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new EnvironmentEC2("test", EnvironmentEC2Args.builder()
.instanceType("t2.micro")
.name("some-env")
.build());
var testUser = new User("testUser", UserArgs.builder()
.name("some-user")
.build());
var testEnvironmentMembership = new EnvironmentMembership("testEnvironmentMembership", EnvironmentMembershipArgs.builder()
.environmentId(test.id())
.permissions("read-only")
.userArn(testUser.arn())
.build());
}
}
resources:
test:
type: aws:cloud9:EnvironmentEC2
properties:
instanceType: t2.micro
name: some-env
testUser:
type: aws:iam:User
name: test
properties:
name: some-user
testEnvironmentMembership:
type: aws:cloud9:EnvironmentMembership
name: test
properties:
environmentId: ${test.id}
permissions: read-only
userArn: ${testUser.arn}
Create EnvironmentMembership Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EnvironmentMembership(name: string, args: EnvironmentMembershipArgs, opts?: CustomResourceOptions);
@overload
def EnvironmentMembership(resource_name: str,
args: EnvironmentMembershipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def EnvironmentMembership(resource_name: str,
opts: Optional[ResourceOptions] = None,
environment_id: Optional[str] = None,
permissions: Optional[str] = None,
user_arn: Optional[str] = None)
func NewEnvironmentMembership(ctx *Context, name string, args EnvironmentMembershipArgs, opts ...ResourceOption) (*EnvironmentMembership, error)
public EnvironmentMembership(string name, EnvironmentMembershipArgs args, CustomResourceOptions? opts = null)
public EnvironmentMembership(String name, EnvironmentMembershipArgs args)
public EnvironmentMembership(String name, EnvironmentMembershipArgs args, CustomResourceOptions options)
type: aws:cloud9:EnvironmentMembership
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EnvironmentMembershipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EnvironmentMembershipArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EnvironmentMembershipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnvironmentMembershipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnvironmentMembershipArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var environmentMembershipResource = new Aws.Cloud9.EnvironmentMembership("environmentMembershipResource", new()
{
EnvironmentId = "string",
Permissions = "string",
UserArn = "string",
});
example, err := cloud9.NewEnvironmentMembership(ctx, "environmentMembershipResource", &cloud9.EnvironmentMembershipArgs{
EnvironmentId: pulumi.String("string"),
Permissions: pulumi.String("string"),
UserArn: pulumi.String("string"),
})
var environmentMembershipResource = new EnvironmentMembership("environmentMembershipResource", EnvironmentMembershipArgs.builder()
.environmentId("string")
.permissions("string")
.userArn("string")
.build());
environment_membership_resource = aws.cloud9.EnvironmentMembership("environmentMembershipResource",
environment_id="string",
permissions="string",
user_arn="string")
const environmentMembershipResource = new aws.cloud9.EnvironmentMembership("environmentMembershipResource", {
environmentId: "string",
permissions: "string",
userArn: "string",
});
type: aws:cloud9:EnvironmentMembership
properties:
environmentId: string
permissions: string
userArn: string
EnvironmentMembership Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The EnvironmentMembership resource accepts the following input properties:
- Environment
Id string - The ID of the environment that contains the environment member you want to add.
- Permissions string
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - User
Arn string - The Amazon Resource Name (ARN) of the environment member you want to add.
- Environment
Id string - The ID of the environment that contains the environment member you want to add.
- Permissions string
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - User
Arn string - The Amazon Resource Name (ARN) of the environment member you want to add.
- environment
Id String - The ID of the environment that contains the environment member you want to add.
- permissions String
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user
Arn String - The Amazon Resource Name (ARN) of the environment member you want to add.
- environment
Id string - The ID of the environment that contains the environment member you want to add.
- permissions string
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user
Arn string - The Amazon Resource Name (ARN) of the environment member you want to add.
- environment_
id str - The ID of the environment that contains the environment member you want to add.
- permissions str
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user_
arn str - The Amazon Resource Name (ARN) of the environment member you want to add.
- environment
Id String - The ID of the environment that contains the environment member you want to add.
- permissions String
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user
Arn String - The Amazon Resource Name (ARN) of the environment member you want to add.
Outputs
All input properties are implicitly available as output properties. Additionally, the EnvironmentMembership resource produces the following output properties:
Look up Existing EnvironmentMembership Resource
Get an existing EnvironmentMembership resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EnvironmentMembershipState, opts?: CustomResourceOptions): EnvironmentMembership
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
environment_id: Optional[str] = None,
permissions: Optional[str] = None,
user_arn: Optional[str] = None,
user_id: Optional[str] = None) -> EnvironmentMembership
func GetEnvironmentMembership(ctx *Context, name string, id IDInput, state *EnvironmentMembershipState, opts ...ResourceOption) (*EnvironmentMembership, error)
public static EnvironmentMembership Get(string name, Input<string> id, EnvironmentMembershipState? state, CustomResourceOptions? opts = null)
public static EnvironmentMembership get(String name, Output<String> id, EnvironmentMembershipState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Environment
Id string - The ID of the environment that contains the environment member you want to add.
- Permissions string
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - User
Arn string - The Amazon Resource Name (ARN) of the environment member you want to add.
- User
Id string - The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.
- Environment
Id string - The ID of the environment that contains the environment member you want to add.
- Permissions string
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - User
Arn string - The Amazon Resource Name (ARN) of the environment member you want to add.
- User
Id string - The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.
- environment
Id String - The ID of the environment that contains the environment member you want to add.
- permissions String
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user
Arn String - The Amazon Resource Name (ARN) of the environment member you want to add.
- user
Id String - The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.
- environment
Id string - The ID of the environment that contains the environment member you want to add.
- permissions string
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user
Arn string - The Amazon Resource Name (ARN) of the environment member you want to add.
- user
Id string - The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.
- environment_
id str - The ID of the environment that contains the environment member you want to add.
- permissions str
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user_
arn str - The Amazon Resource Name (ARN) of the environment member you want to add.
- user_
id str - The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.
- environment
Id String - The ID of the environment that contains the environment member you want to add.
- permissions String
- The type of environment member permissions you want to associate with this environment member. Allowed values are
read-only
andread-write
. - user
Arn String - The Amazon Resource Name (ARN) of the environment member you want to add.
- user
Id String - The user ID in AWS Identity and Access Management (AWS IAM) of the environment member.
Import
Using pulumi import
, import Cloud9 environment membership using the environment-id#user-arn
. For example:
$ pulumi import aws:cloud9/environmentMembership:EnvironmentMembership test environment-id#user-arn
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.