aws-cdk-lib.aws_nimblestudio.CfnStudioComponent.StudioComponentInitializationScriptProperty

interface StudioComponentInitializationScriptProperty

LanguageType name
.NETAmazon.CDK.AWS.NimbleStudio.CfnStudioComponent.StudioComponentInitializationScriptProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnimblestudio#CfnStudioComponent_StudioComponentInitializationScriptProperty
Javasoftware.amazon.awscdk.services.nimblestudio.CfnStudioComponent.StudioComponentInitializationScriptProperty
Pythonaws_cdk.aws_nimblestudio.CfnStudioComponent.StudioComponentInitializationScriptProperty
TypeScript aws-cdk-lib » aws_nimblestudio » CfnStudioComponent » StudioComponentInitializationScriptProperty

Initialization scripts for studio components.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_nimblestudio as nimblestudio } from 'aws-cdk-lib';
const studioComponentInitializationScriptProperty: nimblestudio.CfnStudioComponent.StudioComponentInitializationScriptProperty = {
  launchProfileProtocolVersion: 'launchProfileProtocolVersion',
  platform: 'platform',
  runContext: 'runContext',
  script: 'script',
};

Properties

NameTypeDescription
launchProfileProtocolVersion?stringThe version number of the protocol that is used by the launch profile.
platform?stringThe platform of the initialization script, either Windows or Linux.
runContext?stringThe method to use when running the initialization script.
script?stringThe initialization script.

launchProfileProtocolVersion?

Type: string (optional)

The version number of the protocol that is used by the launch profile.

The only valid version is "2021-03-31".


platform?

Type: string (optional)

The platform of the initialization script, either Windows or Linux.


runContext?

Type: string (optional)

The method to use when running the initialization script.


script?

Type: string (optional)

The initialization script.