Interface CfnStudioMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStudioMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:30.297Z")
@Stability(Stable)
public interface CfnStudioMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnStudioPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.nimblestudio.*;
CfnStudioMixinProps cfnStudioMixinProps = CfnStudioMixinProps.builder()
.adminRoleArn("adminRoleArn")
.displayName("displayName")
.studioEncryptionConfiguration(StudioEncryptionConfigurationProperty.builder()
.keyArn("keyArn")
.keyType("keyType")
.build())
.studioName("studioName")
.tags(Map.of(
"tagsKey", "tags"))
.userRoleArn("userRoleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStudioMixinPropsstatic final classAn implementation forCfnStudioMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnStudioMixinProps.Builderbuilder()default ObjectThe IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.default StringA friendly name for the studio.default ObjectConfiguration of the encryption method that is used for the studio.default StringThe studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.getTags()default ObjectThe IAM role that Studio Users will assume when logging in to the Nimble Studio portal.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAdminRoleArn
The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
.- See Also:
-
getDisplayName
A friendly name for the studio.
.- See Also:
-
getStudioEncryptionConfiguration
Configuration of the encryption method that is used for the studio.
.Returns union: either
IResolvableorCfnStudioPropsMixin.StudioEncryptionConfigurationProperty- See Also:
-
getStudioName
The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.
.- See Also:
-
getTags
- See Also:
-
getUserRoleArn
The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
.- See Also:
-
builder
- Returns:
- a
CfnStudioMixinProps.BuilderofCfnStudioMixinProps
-