Class: Aws::AppStream::Types::ScriptDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::ScriptDetails
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass ScriptDetails data as a hash:
{
script_s3_location: { # required
s3_bucket: "S3Bucket", # required
s3_key: "S3Key", # required
},
executable_path: "String", # required
executable_parameters: "String",
timeout_in_seconds: 1, # required
}
Describes the details of the script.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#executable_parameters ⇒ String
The runtime parameters passed to the run path for the script.
-
#executable_path ⇒ String
The run path for the script.
-
#script_s3_location ⇒ Types::S3Location
The S3 object location for the script.
-
#timeout_in_seconds ⇒ Integer
The run timeout, in seconds, for the script.
Instance Attribute Details
#executable_parameters ⇒ String
The runtime parameters passed to the run path for the script.
4378 4379 4380 4381 4382 4383 4384 4385 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4378 class ScriptDetails < Struct.new( :script_s3_location, :executable_path, :executable_parameters, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end |
#executable_path ⇒ String
The run path for the script.
4378 4379 4380 4381 4382 4383 4384 4385 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4378 class ScriptDetails < Struct.new( :script_s3_location, :executable_path, :executable_parameters, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end |
#script_s3_location ⇒ Types::S3Location
The S3 object location for the script.
4378 4379 4380 4381 4382 4383 4384 4385 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4378 class ScriptDetails < Struct.new( :script_s3_location, :executable_path, :executable_parameters, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end |
#timeout_in_seconds ⇒ Integer
The run timeout, in seconds, for the script.
4378 4379 4380 4381 4382 4383 4384 4385 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 4378 class ScriptDetails < Struct.new( :script_s3_location, :executable_path, :executable_parameters, :timeout_in_seconds) SENSITIVE = [] include Aws::Structure end |