Interface CfnStudioProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStudioProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:11.468Z")
@Stability(Stable)
public interface CfnStudioProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnStudio
.
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.*; CfnStudioProps cfnStudioProps = CfnStudioProps.builder() .adminRoleArn("adminRoleArn") .displayName("displayName") .studioName("studioName") .userRoleArn("userRoleArn") // the properties below are optional .studioEncryptionConfiguration(StudioEncryptionConfigurationProperty.builder() .keyType("keyType") // the properties below are optional .keyArn("keyArn") .build()) .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStudioProps
static final class
An implementation forCfnStudioProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnStudioProps.Builder
builder()
The IAM role that studio admins assume when logging in to the Nimble Studio portal.A friendly name for the studio.default Object
Configuration of the encryption method that is used for the studio.The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.getTags()
An array of key-value pairs to apply to this resource.The IAM role that studio users 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 assume when logging in to the Nimble Studio portal.- See Also:
-
getDisplayName
A friendly name for the studio.- See Also:
-
getStudioName
The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.- See Also:
-
getUserRoleArn
The IAM role that studio users assume when logging in to the Nimble Studio portal.- See Also:
-
getStudioEncryptionConfiguration
Configuration of the encryption method that is used for the studio.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnStudioProps.Builder
ofCfnStudioProps
-