interface CfnStudioMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NimbleStudio.CfnStudioMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnimblestudio#CfnStudioMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.nimblestudio.CfnStudioMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_nimblestudio.CfnStudioMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_nimblestudio » CfnStudioMixinProps |
Properties for CfnStudioPropsMixin.
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/cfn-property-mixins';
const cfnStudioMixinProps: nimblestudio.CfnStudioMixinProps = {
adminRoleArn: 'adminRoleArn',
displayName: 'displayName',
studioEncryptionConfiguration: {
keyArn: 'keyArn',
keyType: 'keyType',
},
studioName: 'studioName',
tags: {
tagsKey: 'tags',
},
userRoleArn: 'userRoleArn',
};
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 | IResolvable | Studio | Configuration of the encryption method that is used 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. . |
| tags? | { [string]: string } | |
| user | string | IRole | The IAM role that Studio Users will assume when logging in to the Nimble Studio portal. . |
adminRoleArn?
Type:
string | IRole
(optional)
<p>The IAM role that Studio Admins will assume when logging in to the Nimble Studio portal.
.displayName?
Type:
string
(optional)
<p>A friendly name for the studio.
.studioEncryptionConfiguration?
Type:
IResolvable | Studio
(optional)
<p>Configuration of the encryption method that is used for the studio.
.studioName?
Type:
string
(optional)
<p>The studio name that is used in the URL of the Nimble Studio portal when accessed by Nimble Studio users.
.tags?
Type:
{ [string]: string }
(optional)
userRoleArn?
Type:
string | IRole
(optional)
<p>The IAM role that Studio Users will assume when logging in to the Nimble Studio portal.
.
.NET
Go
Java
Python
TypeScript