Class CfnWorkspaceInstance
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.workspacesinstances.CfnWorkspaceInstance
- All Implemented Interfaces:
IInspectable
,ITaggableV2
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-16T11:43:24.625Z")
@Stability(Stable)
public class CfnWorkspaceInstance
extends CfnResource
implements IInspectable, ITaggableV2
Resource Type definition for AWS::WorkspacesInstances::WorkspaceInstance.
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.workspacesinstances.*; CfnWorkspaceInstance cfnWorkspaceInstance = CfnWorkspaceInstance.Builder.create(this, "MyCfnWorkspaceInstance") .managedInstance(ManagedInstanceProperty.builder() .imageId("imageId") .instanceType("instanceType") // the properties below are optional .blockDeviceMappings(List.of(BlockDeviceMappingProperty.builder() .deviceName("deviceName") .ebs(EbsBlockDeviceProperty.builder() .encrypted(false) .iops(123) .kmsKeyId("kmsKeyId") .throughput(123) .volumeSize(123) .volumeType("volumeType") .build()) .noDevice("noDevice") .virtualName("virtualName") .build())) .cpuOptions(CpuOptionsRequestProperty.builder() .coreCount(123) .threadsPerCore(123) .build()) .creditSpecification(CreditSpecificationRequestProperty.builder() .cpuCredits("cpuCredits") .build()) .disableApiStop(false) .ebsOptimized(false) .enclaveOptions(EnclaveOptionsRequestProperty.builder() .enabled(false) .build()) .hibernationOptions(HibernationOptionsRequestProperty.builder() .configured(false) .build()) .iamInstanceProfile(IamInstanceProfileSpecificationProperty.builder() .name("name") .build()) .keyName("keyName") .maintenanceOptions(InstanceMaintenanceOptionsRequestProperty.builder() .autoRecovery("autoRecovery") .build()) .metadataOptions(InstanceMetadataOptionsRequestProperty.builder() .httpEndpoint("httpEndpoint") .httpProtocolIpv6("httpProtocolIpv6") .httpPutResponseHopLimit(123) .httpTokens("httpTokens") .instanceMetadataTags("instanceMetadataTags") .build()) .monitoring(RunInstancesMonitoringEnabledProperty.builder() .enabled(false) .build()) .networkInterfaces(List.of(InstanceNetworkInterfaceSpecificationProperty.builder() .description("description") .deviceIndex(123) .groups(List.of("groups")) .subnetId("subnetId") .build())) .networkPerformanceOptions(InstanceNetworkPerformanceOptionsRequestProperty.builder() .bandwidthWeighting("bandwidthWeighting") .build()) .placement(PlacementProperty.builder() .availabilityZone("availabilityZone") .groupName("groupName") .tenancy("tenancy") .build()) .privateDnsNameOptions(PrivateDnsNameOptionsRequestProperty.builder() .enableResourceNameDnsAaaaRecord(false) .enableResourceNameDnsARecord(false) .hostnameType("hostnameType") .build()) .tagSpecifications(List.of(TagSpecificationProperty.builder() .resourceType("resourceType") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build())) .userData("userData") .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interface
Example:static final class
A fluent builder forCfnWorkspaceInstance
.static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:static interface
Example:Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.ITaggableV2
ITaggableV2.Jsii$Default, ITaggableV2.Jsii$Proxy
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
CfnWorkspaceInstance
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnWorkspaceInstance
(software.amazon.jsii.JsiiObjectRef objRef) CfnWorkspaceInstance
(software.constructs.Construct scope, String id) CfnWorkspaceInstance
(software.constructs.Construct scope, String id, CfnWorkspaceInstanceProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe current state of the workspace instance.Unique identifier for the workspace instance.Tag Manager which manages the tags for this resource.getTags()
void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setManagedInstance
(IResolvable value) void
void
Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods 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
-
CfnWorkspaceInstance
protected CfnWorkspaceInstance(software.amazon.jsii.JsiiObjectRef objRef) -
CfnWorkspaceInstance
protected CfnWorkspaceInstance(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnWorkspaceInstance
@Stability(Stable) public CfnWorkspaceInstance(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnWorkspaceInstanceProps props) - 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.
-
CfnWorkspaceInstance
@Stability(Stable) public CfnWorkspaceInstance(@NotNull software.constructs.Construct scope, @NotNull String id) - 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.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in 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:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrEc2ManagedInstance
-
getAttrEc2ManagedInstanceInstanceId
-
getAttrProvisionState
The current state of the workspace instance. -
getAttrWorkspaceInstanceId
Unique identifier for the workspace instance. -
getCdkTagManager
Tag Manager which manages the tags for this resource.- Specified by:
getCdkTagManager
in interfaceITaggableV2
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getManagedInstance
-
setManagedInstance
-
setManagedInstance
@Stability(Stable) public void setManagedInstance(@Nullable CfnWorkspaceInstance.ManagedInstanceProperty value) -
getTags
-
setTags
-