Learn R Programming

paws (version 0.1.12)

cloud9: AWS Cloud9

Description

AWS Cloud9 is a collection of tools that you can use to code, build, run, test, debug, and release software in the cloud.

For more information about AWS Cloud9, see the AWS Cloud9 User Guide.

AWS Cloud9 supports these operations:

  • create_environment_ec2: Creates an AWS Cloud9 development environment, launches an Amazon EC2 instance, and then connects from the instance to the environment.

  • create_environment_membership: Adds an environment member to an environment.

  • delete_environment: Deletes an environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.

  • delete_environment_membership: Deletes an environment member from an environment.

  • describe_environment_memberships: Gets information about environment members for an environment.

  • describe_environments: Gets information about environments.

  • describe_environment_status: Gets status information for an environment.

  • list_environments: Gets a list of environment identifiers.

  • list_tags_for_resource: Gets the tags for an environment.

  • tag_resource: Adds tags to an environment.

  • untag_resource: Removes tags from an environment.

  • update_environment: Changes the settings of an existing environment.

  • update_environment_membership: Changes the settings of an existing environment member for an environment.

Usage

cloud9(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- cloud9(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

create_environment_ec2Creates an AWS Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and then connects from the instance to the environment
create_environment_membershipAdds an environment member to an AWS Cloud9 development environment
delete_environmentDeletes an AWS Cloud9 development environment
delete_environment_membershipDeletes an environment member from an AWS Cloud9 development environment
describe_environment_membershipsGets information about environment members for an AWS Cloud9 development environment
describe_environmentsGets information about AWS Cloud9 development environments
describe_environment_statusGets status information for an AWS Cloud9 development environment
list_environmentsGets a list of AWS Cloud9 development environment identifiers
list_tags_for_resourceGets a list of the tags associated with an AWS Cloud9 development environment
tag_resourceAdds tags to an AWS Cloud9 development environment
untag_resourceRemoves tags from an AWS Cloud9 development environment
update_environmentChanges the settings of an existing AWS Cloud9 development environment
update_environment_membershipChanges the settings of an existing environment member for an AWS Cloud9 development environment

Examples

Run this code
if (FALSE) {
svc <- cloud9()
# 
svc$create_environment_ec2(
  name = "my-demo-environment",
  automaticStopTimeMinutes = 60L,
  description = "This is my demonstration environment.",
  instanceType = "t2.micro",
  ownerArn = "arn:aws:iam::123456789012:user/MyDemoUser",
  subnetId = "subnet-1fab8aEX"
)
}

Run the code above in your browser using DataLab