Class: Aws::CodeCatalyst::Types::IdeConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The name of the IDE. Valid values include ‘Cloud9`, `IntelliJ`, `PyCharm`, `GoLand`, and `VSCode`.

Returns:

  • (String)


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

#runtimeString

A link to the IDE runtime image.

<note markdown=“1”> This parameter is not required for ‘VSCode`.

</note>

Returns:

  • (String)


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