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: