interface CfnStudioProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NimbleStudio.CfnStudioProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnimblestudio#CfnStudioProps |
Java | software.amazon.awscdk.services.nimblestudio.CfnStudioProps |
Python | aws_cdk.aws_nimblestudio.CfnStudioProps |
TypeScript | aws-cdk-lib » aws_nimblestudio » CfnStudioProps |
Properties for defining a CfnStudio.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studio.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_nimblestudio as nimblestudio } from 'aws-cdk-lib';
const cfnStudioProps: nimblestudio.CfnStudioProps = {
adminRoleArn: 'adminRoleArn',
displayName: 'displayName',
studioName: 'studioName',
userRoleArn: 'userRoleArn',
// the properties below are optional
studioEncryptionConfiguration: {
keyType: 'keyType',
// the properties below are optional
keyArn: 'keyArn',
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| admin | string | IRole | The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal. . |
| display | string | A friendly name for the studio. . |
| studio | string | The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users. . |
| user | string | IRole | The IAM role that Studio Users will assume when logging in to the Nimble Studio portal. . |
| studio | IResolvable | Studio | Configuration of the encryption method that is used for the studio. . |
| tags? | { [string]: string } |
adminRoleArn
Type:
string | IRole
<p>The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
.displayName
Type:
string
<p>A friendly name for the studio.
.studioName
Type:
string
<p>The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.
.userRoleArn
Type:
string | IRole
<p>The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
.studioEncryptionConfiguration?
Type:
IResolvable | Studio
(optional)
<p>Configuration of the encryption method that is used for the studio.
.tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript