Class: Aws::NimbleStudio::Types::StudioComponentInitializationScript
- Inherits:
-
Struct
- Object
- Struct
- Aws::NimbleStudio::Types::StudioComponentInitializationScript
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-nimblestudio/types.rb
Overview
Initialization scripts for studio components.
Constant Summary collapse
- SENSITIVE =
[:script]
Instance Attribute Summary collapse
-
#launch_profile_protocol_version ⇒ String
The version number of the protocol that is used by the launch profile.
-
#platform ⇒ String
The platform of the initialization script, either Windows or Linux.
-
#run_context ⇒ String
The method to use when running the initialization script.
-
#script ⇒ String
The initialization script.
Instance Attribute Details
#launch_profile_protocol_version ⇒ String
The version number of the protocol that is used by the launch profile. The only valid version is “2021-03-31”.
3434 3435 3436 3437 3438 3439 3440 3441 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 3434 class StudioComponentInitializationScript < Struct.new( :launch_profile_protocol_version, :platform, :run_context, :script) SENSITIVE = [:script] include Aws::Structure end |
#platform ⇒ String
The platform of the initialization script, either Windows or Linux.
3434 3435 3436 3437 3438 3439 3440 3441 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 3434 class StudioComponentInitializationScript < Struct.new( :launch_profile_protocol_version, :platform, :run_context, :script) SENSITIVE = [:script] include Aws::Structure end |
#run_context ⇒ String
The method to use when running the initialization script.
3434 3435 3436 3437 3438 3439 3440 3441 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 3434 class StudioComponentInitializationScript < Struct.new( :launch_profile_protocol_version, :platform, :run_context, :script) SENSITIVE = [:script] include Aws::Structure end |
#script ⇒ String
The initialization script.
3434 3435 3436 3437 3438 3439 3440 3441 |
# File 'lib/aws-sdk-nimblestudio/types.rb', line 3434 class StudioComponentInitializationScript < Struct.new( :launch_profile_protocol_version, :platform, :run_context, :script) SENSITIVE = [:script] include Aws::Structure end |