Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblock-scriptdetails.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblock-scriptdetails.html#cfn-appstream-appblock-scriptdetails-executableparameters

ExecutablePath

The run path for the script.

string? ExecutablePath { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblock-scriptdetails.html#cfn-appstream-appblock-scriptdetails-executablepath

ScriptS3Location

The S3 object location of the script.

object? ScriptS3Location { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblock-scriptdetails.html#cfn-appstream-appblock-scriptdetails-scripts3location

Type union: either IResolvable or CfnAppBlockPropsMixin.IS3LocationProperty

TimeoutInSeconds

The run timeout, in seconds, for the script.

double? TimeoutInSeconds { get; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-appblock-scriptdetails.html#cfn-appstream-appblock-scriptdetails-timeoutinseconds

Back to top Generated by DocFX