The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::Cloud9 - Perl Interface to AWS AWS Cloud9

SYNOPSIS

  use Paws;

  my $obj = Paws->service('Cloud9');
  my $res = $obj->Method(
    Arg1 => $val1,
    Arg2 => [ 'V1', 'V2' ],
    # if Arg3 is an object, the HashRef will be used as arguments to the constructor
    # of the arguments type
    Arg3 => { Att1 => 'Val1' },
    # if Arg4 is an array of objects, the HashRefs will be passed as arguments to
    # the constructor of the arguments type
    Arg4 => [ { Att1 => 'Val1'  }, { Att1 => 'Val2' } ],
  );

DESCRIPTION

AWS Cloud9

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 (https://docs.aws.amazon.com/cloud9/latest/user-guide).

AWS Cloud9 supports these operations:

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

  • CreateEnvironmentMembership: Adds an environment member to an environment.

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

  • DeleteEnvironmentMembership: Deletes an environment member from an environment.

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

  • DescribeEnvironments: Gets information about environments.

  • DescribeEnvironmentStatus: Gets status information for an environment.

  • ListEnvironments: Gets a list of environment identifiers.

  • UpdateEnvironment: Changes the settings of an existing environment.

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

For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/cloud9-2017-09-23

METHODS

CreateEnvironmentEC2

InstanceType => Str
Name => Str
[AutomaticStopTimeMinutes => Int]
[ClientRequestToken => Str]
[Description => Str]
[OwnerArn => Str]
[SubnetId => Str]

Each argument is described in detail in: Paws::Cloud9::CreateEnvironmentEC2

Returns: a Paws::Cloud9::CreateEnvironmentEC2Result instance

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

CreateEnvironmentMembership

EnvironmentId => Str
Permissions => Str
UserArn => Str

Each argument is described in detail in: Paws::Cloud9::CreateEnvironmentMembership

Returns: a Paws::Cloud9::CreateEnvironmentMembershipResult instance

Adds an environment member to an AWS Cloud9 development environment.

DeleteEnvironment

EnvironmentId => Str

Each argument is described in detail in: Paws::Cloud9::DeleteEnvironment

Returns: a Paws::Cloud9::DeleteEnvironmentResult instance

Deletes an AWS Cloud9 development environment. If an Amazon EC2 instance is connected to the environment, also terminates the instance.

DeleteEnvironmentMembership

EnvironmentId => Str
UserArn => Str

Each argument is described in detail in: Paws::Cloud9::DeleteEnvironmentMembership

Returns: a Paws::Cloud9::DeleteEnvironmentMembershipResult instance

Deletes an environment member from an AWS Cloud9 development environment.

DescribeEnvironmentMemberships

[EnvironmentId => Str]
[MaxResults => Int]
[NextToken => Str]
[Permissions => ArrayRef[Str|Undef]]
[UserArn => Str]

Each argument is described in detail in: Paws::Cloud9::DescribeEnvironmentMemberships

Returns: a Paws::Cloud9::DescribeEnvironmentMembershipsResult instance

Gets information about environment members for an AWS Cloud9 development environment.

DescribeEnvironments

EnvironmentIds => ArrayRef[Str|Undef]

Each argument is described in detail in: Paws::Cloud9::DescribeEnvironments

Returns: a Paws::Cloud9::DescribeEnvironmentsResult instance

Gets information about AWS Cloud9 development environments.

DescribeEnvironmentStatus

EnvironmentId => Str

Each argument is described in detail in: Paws::Cloud9::DescribeEnvironmentStatus

Returns: a Paws::Cloud9::DescribeEnvironmentStatusResult instance

Gets status information for an AWS Cloud9 development environment.

ListEnvironments

[MaxResults => Int]
[NextToken => Str]

Each argument is described in detail in: Paws::Cloud9::ListEnvironments

Returns: a Paws::Cloud9::ListEnvironmentsResult instance

Gets a list of AWS Cloud9 development environment identifiers.

UpdateEnvironment

EnvironmentId => Str
[Description => Str]
[Name => Str]

Each argument is described in detail in: Paws::Cloud9::UpdateEnvironment

Returns: a Paws::Cloud9::UpdateEnvironmentResult instance

Changes the settings of an existing AWS Cloud9 development environment.

UpdateEnvironmentMembership

EnvironmentId => Str
Permissions => Str
UserArn => Str

Each argument is described in detail in: Paws::Cloud9::UpdateEnvironmentMembership

Returns: a Paws::Cloud9::UpdateEnvironmentMembershipResult instance

Changes the settings of an existing environment member for an AWS Cloud9 development environment.

PAGINATORS

Paginator methods are helpers that repetively call methods that return partial results

DescribeAllEnvironmentMemberships(sub { },[EnvironmentId => Str, MaxResults => Int, NextToken => Str, Permissions => ArrayRef[Str|Undef], UserArn => Str])

DescribeAllEnvironmentMemberships([EnvironmentId => Str, MaxResults => Int, NextToken => Str, Permissions => ArrayRef[Str|Undef], UserArn => Str])

If passed a sub as first parameter, it will call the sub for each element found in :

 - memberships, passing the object as the first parameter, and the string 'memberships' as the second parameter 

If not, it will return a a Paws::Cloud9::DescribeEnvironmentMembershipsResult instance with all the params; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.

ListAllEnvironments(sub { },[MaxResults => Int, NextToken => Str])

ListAllEnvironments([MaxResults => Int, NextToken => Str])

If passed a sub as first parameter, it will call the sub for each element found in :

 - environmentIds, passing the object as the first parameter, and the string 'environmentIds' as the second parameter 

If not, it will return a a Paws::Cloud9::ListEnvironmentsResult instance with all the params; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory.

SEE ALSO

This service class forms part of Paws

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues