Interface CfnStudioProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStudioProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:00.508Z") @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();
 
  • Method Details

    • getAdminRoleArn

      @Stability(Stable) @NotNull String getAdminRoleArn()
      The IAM role that studio admins assume when logging in to the Nimble Studio portal.
    • getDisplayName

      @Stability(Stable) @NotNull String getDisplayName()
      A friendly name for the studio.
    • getStudioName

      @Stability(Stable) @NotNull String getStudioName()
      The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.
    • getUserRoleArn

      @Stability(Stable) @NotNull String getUserRoleArn()
      The IAM role that studio users assume when logging in to the Nimble Studio portal.
    • getStudioEncryptionConfiguration

      @Stability(Stable) @Nullable default Object getStudioEncryptionConfiguration()
      Configuration of the encryption method that is used for the studio.
    • getTags

      @Stability(Stable) @Nullable default Map<String,String> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

      @Stability(Stable) static CfnStudioProps.Builder builder()
      Returns:
      a CfnStudioProps.Builder of CfnStudioProps