@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.076Z") @Stability(value=Stable) public interface CfnStudioComponentProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnStudioComponentProps.Builder
A builder for
CfnStudioComponentProps |
static class |
CfnStudioComponentProps.Jsii$Proxy
An implementation for
CfnStudioComponentProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnStudioComponentProps.Builder |
builder() |
default Object |
getConfiguration()
The configuration of the studio component, based on component type.
|
default String |
getDescription()
A human-readable description for the studio component resource.
|
default List<String> |
getEc2SecurityGroupIds()
The EC2 security groups that control access to the studio component.
|
default Object |
getInitializationScripts()
Initialization scripts for studio components.
|
String |
getName()
A friendly name for the studio component resource.
|
default Object |
getScriptParameters()
Parameters for the studio component scripts.
|
String |
getStudioId()
The unique identifier for a studio resource.
|
default String |
getSubtype()
The specific subtype of a studio component.
|
default Map<String,String> |
getTags()
An array of key-value pairs to apply to this resource.
|
String |
getType()
The type of the studio component.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getStudioId()
In Nimble Studio , all other resources are contained in a studio resource.
@Stability(value=Stable) @NotNull String getType()
@Stability(value=Stable) @Nullable default Object getConfiguration()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<String> getEc2SecurityGroupIds()
@Stability(value=Stable) @Nullable default Object getInitializationScripts()
@Stability(value=Stable) @Nullable default Object getScriptParameters()
@Stability(value=Stable) @Nullable default String getSubtype()
@Stability(value=Stable) @Nullable default Map<String,String> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnStudioComponentProps.Builder builder()
CfnStudioComponentProps.Builder of CfnStudioComponentPropsCopyright © 2022. All rights reserved.