Class: Aws::Cloud9::Types::UpdateEnvironmentRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloud9/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:description]

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

Any new or replacement description for the environment.

Returns:

  • (String)


793
794
795
796
797
798
799
800
# File 'lib/aws-sdk-cloud9/types.rb', line 793

class UpdateEnvironmentRequest < Struct.new(
  :environment_id,
  :name,
  :description,
  :managed_credentials_action)
  SENSITIVE = [:description]
  include Aws::Structure
end

#environment_idString

The ID of the environment to change settings.

Returns:

  • (String)


793
794
795
796
797
798
799
800
# File 'lib/aws-sdk-cloud9/types.rb', line 793

class UpdateEnvironmentRequest < Struct.new(
  :environment_id,
  :name,
  :description,
  :managed_credentials_action)
  SENSITIVE = [:description]
  include Aws::Structure
end

#managed_credentials_actionString

Allows the environment owner to turn on or turn off the Amazon Web Services managed temporary credentials for an Cloud9 environment by using one of the following values:

  • ‘ENABLE`

  • ‘DISABLE`

<note markdown=“1”> Only the environment owner can change the status of managed temporary credentials. An ‘AccessDeniedException` is thrown if an attempt to turn on or turn off managed temporary credentials is made by an account that’s not the environment owner.

</note>

Returns:

  • (String)


793
794
795
796
797
798
799
800
# File 'lib/aws-sdk-cloud9/types.rb', line 793

class UpdateEnvironmentRequest < Struct.new(
  :environment_id,
  :name,
  :description,
  :managed_credentials_action)
  SENSITIVE = [:description]
  include Aws::Structure
end

#nameString

A replacement name for the environment.

Returns:

  • (String)


793
794
795
796
797
798
799
800
# File 'lib/aws-sdk-cloud9/types.rb', line 793

class UpdateEnvironmentRequest < Struct.new(
  :environment_id,
  :name,
  :description,
  :managed_credentials_action)
  SENSITIVE = [:description]
  include Aws::Structure
end