Interface CfnStudioComponentProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStudioComponentProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:40.840Z")
@Stability(Stable)
public interface CfnStudioComponentProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStudioComponent.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.nimblestudio.*;
CfnStudioComponentProps cfnStudioComponentProps = CfnStudioComponentProps.builder()
.name("name")
.studioId("studioId")
.type("type")
// the properties below are optional
.configuration(StudioComponentConfigurationProperty.builder()
.activeDirectoryConfiguration(ActiveDirectoryConfigurationProperty.builder()
.computerAttributes(List.of(ActiveDirectoryComputerAttributeProperty.builder()
.name("name")
.value("value")
.build()))
.directoryId("directoryId")
.organizationalUnitDistinguishedName("organizationalUnitDistinguishedName")
.build())
.computeFarmConfiguration(ComputeFarmConfigurationProperty.builder()
.activeDirectoryUser("activeDirectoryUser")
.endpoint("endpoint")
.build())
.licenseServiceConfiguration(LicenseServiceConfigurationProperty.builder()
.endpoint("endpoint")
.build())
.sharedFileSystemConfiguration(SharedFileSystemConfigurationProperty.builder()
.endpoint("endpoint")
.fileSystemId("fileSystemId")
.linuxMountPoint("linuxMountPoint")
.shareName("shareName")
.windowsMountDrive("windowsMountDrive")
.build())
.build())
.description("description")
.ec2SecurityGroupIds(List.of("ec2SecurityGroupIds"))
.initializationScripts(List.of(StudioComponentInitializationScriptProperty.builder()
.launchProfileProtocolVersion("launchProfileProtocolVersion")
.platform("platform")
.runContext("runContext")
.script("script")
.build()))
.scriptParameters(List.of(ScriptParameterKeyValueProperty.builder()
.key("key")
.value("value")
.build()))
.subtype("subtype")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStudioComponentPropsstatic final classAn implementation forCfnStudioComponentProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnStudioComponent.StudioComponentConfigurationPropertydefault Stringdefault ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.StudioComponentInitializationScriptProperty>getName()default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.ScriptParameterKeyValueProperty>default StringgetTags()getType()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
- See Also:
-
getStudioId
- See Also:
-
getType
- See Also:
-
getConfiguration
Returns union: eitherIResolvableorCfnStudioComponent.StudioComponentConfigurationProperty- See Also:
-
getDescription
- See Also:
-
getEc2SecurityGroupIds
- See Also:
-
getInitializationScripts
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.StudioComponentInitializationScriptProperty>- See Also:
-
getScriptParameters
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.ScriptParameterKeyValueProperty>- See Also:
-
getSubtype
- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnStudioComponentProps.BuilderofCfnStudioComponentProps
-