Skip to content

/AWS1/IF_CL9=>CREATEENVIRONMENTEC2()

About CreateEnvironmentEC2

Creates an Cloud9 development environment, launches an Amazon Elastic Compute Cloud (Amazon EC2) instance, and then connects from the instance to the environment.

Cloud9 is no longer available to new customers. Existing customers of Cloud9 can continue to use the service as normal. Learn more"

Method Signature

METHODS /AWS1/IF_CL9~CREATEENVIRONMENTEC2
  IMPORTING
    !IV_NAME TYPE /AWS1/CL9ENVIRONMENTNAME OPTIONAL
    !IV_DESCRIPTION TYPE /AWS1/CL9ENVIRONMENTDESC OPTIONAL
    !IV_CLIENTREQUESTTOKEN TYPE /AWS1/CL9CLIENTREQUESTTOKEN OPTIONAL
    !IV_INSTANCETYPE TYPE /AWS1/CL9INSTANCETYPE OPTIONAL
    !IV_SUBNETID TYPE /AWS1/CL9SUBNETID OPTIONAL
    !IV_IMAGEID TYPE /AWS1/CL9IMAGEID OPTIONAL
    !IV_AUTOMATICSTOPTIMEMINUTES TYPE /AWS1/CL9AUTOMATICSTOPTIMEMINS OPTIONAL
    !IV_OWNERARN TYPE /AWS1/CL9USERARN OPTIONAL
    !IT_TAGS TYPE /AWS1/CL_CL9TAG=>TT_TAGLIST OPTIONAL
    !IV_CONNECTIONTYPE TYPE /AWS1/CL9CONNECTIONTYPE OPTIONAL
    !IV_DRYRUN TYPE /AWS1/CL9NULLABLEBOOLEAN OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_cl9creenvironmentec01
  RAISING
    /AWS1/CX_CL9BADREQUESTEX
    /AWS1/CX_CL9CONFLICTEXCEPTION
    /AWS1/CX_CL9FORBIDDENEXCEPTION
    /AWS1/CX_CL9INTERNALSERVERER00
    /AWS1/CX_CL9LIMITEXCEEDEDEX
    /AWS1/CX_CL9NOTFOUNDEXCEPTION
    /AWS1/CX_CL9TOOMANYREQUESTSEX
    /AWS1/CX_CL9CLIENTEXC
    /AWS1/CX_CL9SERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_name TYPE /AWS1/CL9ENVIRONMENTNAME /AWS1/CL9ENVIRONMENTNAME

The name of the environment to create.

This name is visible to other IAM users in the same Amazon Web Services account.

iv_instancetype TYPE /AWS1/CL9INSTANCETYPE /AWS1/CL9INSTANCETYPE

The type of instance to connect to the environment (for example, t2.micro).

iv_imageid TYPE /AWS1/CL9IMAGEID /AWS1/CL9IMAGEID

The identifier for the Amazon Machine Image (AMI) that's used to create the EC2 instance. To choose an AMI for the instance, you must specify a valid AMI alias or a valid Amazon EC2 Systems Manager (SSM) path.

We recommend using Amazon Linux 2023 as the AMI to create your environment as it is fully supported.

From December 16, 2024, Ubuntu 18.04 will be removed from the list of available imageIds for Cloud9. This change is necessary as Ubuntu 18.04 has ended standard support on May 31, 2023. This change will only affect direct API consumers, and not Cloud9 console users.

Since Ubuntu 18.04 has ended standard support as of May 31, 2023, we recommend you choose Ubuntu 22.04.

AMI aliases

  • Amazon Linux 2: amazonlinux-2-x86_64

  • Amazon Linux 2023 (recommended): amazonlinux-2023-x86_64

  • Ubuntu 18.04: ubuntu-18.04-x86_64

  • Ubuntu 22.04: ubuntu-22.04-x86_64

SSM paths

  • Amazon Linux 2: resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2-x86_64

  • Amazon Linux 2023 (recommended): resolve:ssm:/aws/service/cloud9/amis/amazonlinux-2023-x86_64

  • Ubuntu 18.04: resolve:ssm:/aws/service/cloud9/amis/ubuntu-18.04-x86_64

  • Ubuntu 22.04: resolve:ssm:/aws/service/cloud9/amis/ubuntu-22.04-x86_64

Optional arguments:

iv_description TYPE /AWS1/CL9ENVIRONMENTDESC /AWS1/CL9ENVIRONMENTDESC

The description of the environment to create.

iv_clientrequesttoken TYPE /AWS1/CL9CLIENTREQUESTTOKEN /AWS1/CL9CLIENTREQUESTTOKEN

A unique, case-sensitive string that helps Cloud9 to ensure this operation completes no more than one time.

For more information, see Client Tokens in the Amazon EC2 API Reference.

iv_subnetid TYPE /AWS1/CL9SUBNETID /AWS1/CL9SUBNETID

The ID of the subnet in Amazon VPC that Cloud9 will use to communicate with the Amazon EC2 instance.

iv_automaticstoptimeminutes TYPE /AWS1/CL9AUTOMATICSTOPTIMEMINS /AWS1/CL9AUTOMATICSTOPTIMEMINS

The number of minutes until the running instance is shut down after the environment has last been used.

iv_ownerarn TYPE /AWS1/CL9USERARN /AWS1/CL9USERARN

The Amazon Resource Name (ARN) of the environment owner. This ARN can be the ARN of any IAM principal. If this value is not specified, the ARN defaults to this environment's creator.

it_tags TYPE /AWS1/CL_CL9TAG=>TT_TAGLIST TT_TAGLIST

An array of key-value pairs that will be associated with the new Cloud9 development environment.

iv_connectiontype TYPE /AWS1/CL9CONNECTIONTYPE /AWS1/CL9CONNECTIONTYPE

The connection type used for connecting to an Amazon EC2 environment. Valid values are CONNECT_SSH (default) and CONNECT_SSM (connected through Amazon EC2 Systems Manager).

For more information, see Accessing no-ingress EC2 instances with Amazon EC2 Systems Manager in the Cloud9 User Guide.

iv_dryrun TYPE /AWS1/CL9NULLABLEBOOLEAN /AWS1/CL9NULLABLEBOOLEAN

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

RETURNING

oo_output TYPE REF TO /aws1/cl_cl9creenvironmentec01 /AWS1/CL_CL9CREENVIRONMENTEC01

Domain /AWS1/RT_ACCOUNT_ID
Primitive Type NUMC

Examples

Syntax Example

This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.

DATA(lo_result) = lo_client->createenvironmentec2(
  it_tags = VALUE /aws1/cl_cl9tag=>tt_taglist(
    (
      new /aws1/cl_cl9tag(
        iv_key = |string|
        iv_value = |string|
      )
    )
  )
  iv_automaticstoptimeminutes = 123
  iv_clientrequesttoken = |string|
  iv_connectiontype = |string|
  iv_description = |string|
  iv_dryrun = ABAP_TRUE
  iv_imageid = |string|
  iv_instancetype = |string|
  iv_name = |string|
  iv_ownerarn = |string|
  iv_subnetid = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_environmentid = lo_result->get_environmentid( ).
ENDIF.

CreateEnvironmentEC2

DATA(lo_result) = lo_client->createenvironmentec2(
  iv_automaticstoptimeminutes = 60
  iv_description = |This is my demonstration environment.|
  iv_imageid = |amazonlinux-2023-x86_64|
  iv_instancetype = |t2.micro|
  iv_name = |my-demo-environment|
  iv_ownerarn = |arn:aws:iam::123456789012:user/MyDemoUser|
  iv_subnetid = |subnet-6300cd1b|
).