Interface CfnAppBlockMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAppBlockMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:55.901Z")
@Stability(Stable)
public interface CfnAppBlockMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnAppBlockPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.appstream.*;
CfnAppBlockMixinProps cfnAppBlockMixinProps = CfnAppBlockMixinProps.builder()
.description("description")
.displayName("displayName")
.name("name")
.packagingType("packagingType")
.postSetupScriptDetails(ScriptDetailsProperty.builder()
.executableParameters("executableParameters")
.executablePath("executablePath")
.scriptS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
.timeoutInSeconds(123)
.build())
.setupScriptDetails(ScriptDetailsProperty.builder()
.executableParameters("executableParameters")
.executablePath("executablePath")
.scriptS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
.timeoutInSeconds(123)
.build())
.sourceS3Location(S3LocationProperty.builder()
.s3Bucket("s3Bucket")
.s3Key("s3Key")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAppBlockMixinPropsstatic final classAn implementation forCfnAppBlockMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the app block.default StringThe display name of the app block.default StringgetName()The name of the app block.default StringThe packaging type of the app block.default ObjectThe post setup script details of the app block.default ObjectThe setup script details of the app block.default ObjectThe source S3 location of the app block.getTags()The tags of the app block.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the app block.- See Also:
-
getDisplayName
The display name of the app block.- See Also:
-
getName
The name of the app block.Pattern :
^[a-zA-Z0-9][a-zA-Z0-9_.-]{0,100}$- See Also:
-
getPackagingType
The packaging type of the app block.- See Also:
-
getPostSetupScriptDetails
The post setup script details of the app block.Returns union: either
IResolvableorCfnAppBlockPropsMixin.ScriptDetailsProperty- See Also:
-
getSetupScriptDetails
The setup script details of the app block.Returns union: either
IResolvableorCfnAppBlockPropsMixin.ScriptDetailsProperty- See Also:
-
getSourceS3Location
The source S3 location of the app block.Returns union: either
IResolvableorCfnAppBlockPropsMixin.S3LocationProperty- See Also:
-
getTags
The tags of the app block.- See Also:
-
builder
- Returns:
- a
CfnAppBlockMixinProps.BuilderofCfnAppBlockMixinProps
-