Class: Aws::CodeCatalyst::Types::IdeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::IdeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecatalyst/types.rb
Overview
Information about the configuration of an integrated development environment (IDE) for a Dev Environment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the IDE.
-
#runtime ⇒ String
A link to the IDE runtime image.
Instance Attribute Details
#name ⇒ String
The name of the IDE. Valid values include ‘Cloud9`, `IntelliJ`, `PyCharm`, `GoLand`, and `VSCode`.
1591 1592 1593 1594 1595 1596 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 1591 class IdeConfiguration < Struct.new( :runtime, :name) SENSITIVE = [] include Aws::Structure end |
#runtime ⇒ String
A link to the IDE runtime image.
<note markdown=“1”> This parameter is not required for ‘VSCode`.
</note>
1591 1592 1593 1594 1595 1596 |
# File 'lib/aws-sdk-codecatalyst/types.rb', line 1591 class IdeConfiguration < Struct.new( :runtime, :name) SENSITIVE = [] include Aws::Structure end |