Class: Aws::Cloud9::Types::UpdateEnvironmentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Cloud9::Types::UpdateEnvironmentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloud9/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#description ⇒ String
Any new or replacement description for the environment.
-
#environment_id ⇒ String
The ID of the environment to change settings.
-
#managed_credentials_action ⇒ String
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:.
-
#name ⇒ String
A replacement name for the environment.
Instance Attribute Details
#description ⇒ String
Any new or replacement description for the environment.
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_id ⇒ String
The ID of the environment to change settings.
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_action ⇒ String
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>
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 |
#name ⇒ String
A replacement name for the environment.
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 |