@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.661Z") @Stability(value=Stable) public class CfnStudioComponent extends CfnResource implements IInspectable
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();
| Modifier and Type | Class and Description |
|---|---|
static interface |
CfnStudioComponent.ActiveDirectoryComputerAttributeProperty
Example:
|
static interface |
CfnStudioComponent.ActiveDirectoryConfigurationProperty
Example:
|
static class |
CfnStudioComponent.Builder
A fluent builder for
CfnStudioComponent. |
static interface |
CfnStudioComponent.ComputeFarmConfigurationProperty
Example:
|
static interface |
CfnStudioComponent.LicenseServiceConfigurationProperty
Example:
|
static interface |
CfnStudioComponent.ScriptParameterKeyValueProperty
Example:
|
static interface |
CfnStudioComponent.SharedFileSystemConfigurationProperty
Example:
|
static interface |
CfnStudioComponent.StudioComponentConfigurationProperty
Example:
|
static interface |
CfnStudioComponent.StudioComponentInitializationScriptProperty
Example:
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnStudioComponent(software.constructs.Construct scope,
String id,
CfnStudioComponentProps props)
Create a new `AWS::NimbleStudio::StudioComponent`.
|
protected |
CfnStudioComponent(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnStudioComponent(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrStudioComponentId() |
protected Map<String,Object> |
getCfnProperties() |
Object |
getConfiguration()
`AWS::NimbleStudio::StudioComponent.Configuration`.
|
String |
getDescription()
`AWS::NimbleStudio::StudioComponent.Description`.
|
List<String> |
getEc2SecurityGroupIds()
`AWS::NimbleStudio::StudioComponent.Ec2SecurityGroupIds`.
|
Object |
getInitializationScripts()
`AWS::NimbleStudio::StudioComponent.InitializationScripts`.
|
String |
getName()
`AWS::NimbleStudio::StudioComponent.Name`.
|
Object |
getScriptParameters()
`AWS::NimbleStudio::StudioComponent.ScriptParameters`.
|
String |
getStudioId()
`AWS::NimbleStudio::StudioComponent.StudioId`.
|
String |
getSubtype()
`AWS::NimbleStudio::StudioComponent.Subtype`.
|
TagManager |
getTags()
`AWS::NimbleStudio::StudioComponent.Tags`.
|
String |
getType()
`AWS::NimbleStudio::StudioComponent.Type`.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setConfiguration(CfnStudioComponent.StudioComponentConfigurationProperty value)
`AWS::NimbleStudio::StudioComponent.Configuration`.
|
void |
setConfiguration(IResolvable value)
`AWS::NimbleStudio::StudioComponent.Configuration`.
|
void |
setDescription(String value)
`AWS::NimbleStudio::StudioComponent.Description`.
|
void |
setEc2SecurityGroupIds(List<String> value)
`AWS::NimbleStudio::StudioComponent.Ec2SecurityGroupIds`.
|
void |
setInitializationScripts(IResolvable value)
`AWS::NimbleStudio::StudioComponent.InitializationScripts`.
|
void |
setInitializationScripts(List<Object> value)
`AWS::NimbleStudio::StudioComponent.InitializationScripts`.
|
void |
setName(String value)
`AWS::NimbleStudio::StudioComponent.Name`.
|
void |
setScriptParameters(IResolvable value)
`AWS::NimbleStudio::StudioComponent.ScriptParameters`.
|
void |
setScriptParameters(List<Object> value)
`AWS::NimbleStudio::StudioComponent.ScriptParameters`.
|
void |
setStudioId(String value)
`AWS::NimbleStudio::StudioComponent.StudioId`.
|
void |
setSubtype(String value)
`AWS::NimbleStudio::StudioComponent.Subtype`.
|
void |
setType(String value)
`AWS::NimbleStudio::StudioComponent.Type`.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnStudioComponent(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnStudioComponent(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnStudioComponent(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnStudioComponentProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrStudioComponentId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @Nullable public Object getConfiguration()
@Stability(value=Stable)
public void setConfiguration(@Nullable
CfnStudioComponent.StudioComponentConfigurationProperty value)
@Stability(value=Stable)
public void setConfiguration(@Nullable
IResolvable value)
@Stability(value=Stable) @Nullable public String getDescription()
@Stability(value=Stable)
public void setDescription(@Nullable
String value)
@Stability(value=Stable) @Nullable public List<String> getEc2SecurityGroupIds()
@Stability(value=Stable)
public void setEc2SecurityGroupIds(@Nullable
List<String> value)
@Stability(value=Stable) @Nullable public Object getInitializationScripts()
@Stability(value=Stable)
public void setInitializationScripts(@Nullable
IResolvable value)
@Stability(value=Stable)
public void setInitializationScripts(@Nullable
List<Object> value)
@Stability(value=Stable) @NotNull public String getName()
@Stability(value=Stable)
public void setName(@NotNull
String value)
@Stability(value=Stable) @Nullable public Object getScriptParameters()
@Stability(value=Stable)
public void setScriptParameters(@Nullable
IResolvable value)
@Stability(value=Stable)
public void setScriptParameters(@Nullable
List<Object> value)
@Stability(value=Stable) @NotNull public String getStudioId()
@Stability(value=Stable)
public void setStudioId(@NotNull
String value)
@Stability(value=Stable) @Nullable public String getSubtype()
@Stability(value=Stable)
public void setSubtype(@Nullable
String value)
@Stability(value=Stable) @NotNull public TagManager getTags()
@Stability(value=Stable) @NotNull public String getType()
@Stability(value=Stable)
public void setType(@NotNull
String value)
Copyright © 2021. All rights reserved.