Interface CfnAppBlockPropsMixin.IScriptDetailsProperty
The details of the script.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppStream
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAppBlockPropsMixin.IScriptDetailsProperty
Syntax (vb)
Public Interface CfnAppBlockPropsMixin.IScriptDetailsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppStream;
var scriptDetailsProperty = new ScriptDetailsProperty {
ExecutableParameters = "executableParameters",
ExecutablePath = "executablePath",
ScriptS3Location = new S3LocationProperty {
S3Bucket = "s3Bucket",
S3Key = "s3Key"
},
TimeoutInSeconds = 123
};
Synopsis
Properties
| ExecutableParameters | The parameters used in the run path for the script. |
| ExecutablePath | The run path for the script. |
| ScriptS3Location | The S3 object location of the script. |
| TimeoutInSeconds | The run timeout, in seconds, for the script. |
Properties
ExecutableParameters
The parameters used in the run path for the script.
string? ExecutableParameters { get; }
Property Value
Remarks
ExecutablePath
The run path for the script.
string? ExecutablePath { get; }
Property Value
Remarks
ScriptS3Location
The S3 object location of the script.
object? ScriptS3Location { get; }
Property Value
Remarks
TimeoutInSeconds
The run timeout, in seconds, for the script.
double? TimeoutInSeconds { get; }