Class CfnStudioComponent
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.nimblestudio.CfnStudioComponent
- All Implemented Interfaces:
IInspectable,IEnvironmentAware,IStudioComponentRef,ITaggable,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:09.806Z")
@Stability(Stable)
public class CfnStudioComponent
extends CfnResource
implements IInspectable, IStudioComponentRef, ITaggable
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studiocomponent.html.
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.*;
CfnStudioComponent cfnStudioComponent = CfnStudioComponent.Builder.create(this, "MyCfnStudioComponent")
.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 TypeClassDescriptionstatic interfaceExample:static interfaceExample:static final classA fluent builder forCfnStudioComponent.static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:static interfaceExample:Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.interfaces.nimblestudio.IStudioComponentRef
IStudioComponentRef.Jsii$Default, IStudioComponentRef.Jsii$ProxyNested classes/interfaces inherited from interface software.amazon.awscdk.ITaggable
ITaggable.Jsii$Default, ITaggable.Jsii$Proxy -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedCfnStudioComponent(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnStudioComponent(software.amazon.jsii.JsiiObjectRef objRef) CfnStudioComponent(software.constructs.Construct scope, String id, CfnStudioComponentProps props) Create a newAWS::NimbleStudio::StudioComponent. -
Method Summary
Modifier and TypeMethodDescriptionReturns union: eitherIResolvableorCfnStudioComponent.StudioComponentConfigurationPropertyReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.StudioComponentInitializationScriptProperty>getName()Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.ScriptParameterKeyValueProperty>A reference to a StudioComponent resource.getTags()Tag Manager which manages the tags for this resource.getType()voidinspect(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties(Map<String, Object> props) voidsetConfiguration(IResolvable value) voidvoidsetDescription(String value) voidsetEc2SecurityGroupIds(List<String> value) voidsetInitializationScripts(List<Object> value) voidvoidvoidsetScriptParameters(List<Object> value) voidsetScriptParameters(IResolvable value) voidsetStudioId(String value) voidsetSubtype(String value) voidsetTagsRaw(Map<String, String> value) voidMethods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getEnv, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validatePropertiesMethods inherited from class software.amazon.awscdk.CfnRefElement
getRefMethods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdMethods inherited from class software.constructs.Construct
getNode, isConstructMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.constructs.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.interfaces.IEnvironmentAware
getEnvMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnStudioComponent
protected CfnStudioComponent(software.amazon.jsii.JsiiObjectRef objRef) -
CfnStudioComponent
protected CfnStudioComponent(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnStudioComponent
@Stability(Stable) public CfnStudioComponent(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnStudioComponentProps props) Create a newAWS::NimbleStudio::StudioComponent.- Parameters:
scope- Scope in which this resource is defined. This parameter is required.id- Construct identifier for this resource (unique in its scope). This parameter is required.props- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspectin interfaceIInspectable- Parameters:
inspector- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderPropertiesin classCfnResource- Parameters:
props- This parameter is required.
-
getAttrStudioComponentId
-
getCfnProperties
- Overrides:
getCfnPropertiesin classCfnResource
-
getStudioComponentRef
A reference to a StudioComponent resource.- Specified by:
getStudioComponentRefin interfaceIStudioComponentRef
-
getTags
Tag Manager which manages the tags for this resource. -
getName
-
setName
-
getStudioId
-
setStudioId
-
getType
-
setType
-
getConfiguration
Returns union: eitherIResolvableorCfnStudioComponent.StudioComponentConfigurationProperty -
setConfiguration
-
setConfiguration
@Stability(Stable) public void setConfiguration(@Nullable CfnStudioComponent.StudioComponentConfigurationProperty value) -
getDescription
-
setDescription
-
getEc2SecurityGroupIds
-
setEc2SecurityGroupIds
-
getInitializationScripts
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.StudioComponentInitializationScriptProperty> -
setInitializationScripts
-
setInitializationScripts
-
getScriptParameters
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnStudioComponent.ScriptParameterKeyValueProperty> -
setScriptParameters
-
setScriptParameters
-
getSubtype
-
setSubtype
-
getTagsRaw
-
setTagsRaw
-