CfnStudioProps
- class aws_cdk.aws_nimblestudio.CfnStudioProps(*, admin_role_arn, display_name, studio_name, user_role_arn, studio_encryption_configuration=None, tags=None)
Bases:
object
Properties for defining a
CfnStudio
.- Parameters:
admin_role_arn (
str
) – The IAM role that studio admins assume when logging in to the Nimble Studio portal.display_name (
str
) – A friendly name for the studio.studio_name (
str
) – The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.user_role_arn (
str
) – The IAM role that studio users assume when logging in to the Nimble Studio portal.studio_encryption_configuration (
Union
[IResolvable
,StudioEncryptionConfigurationProperty
,Dict
[str
,Any
],None
]) – Configuration of the encryption method that is used for the studio.tags (
Optional
[Mapping
[str
,str
]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- Link:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-studio.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_nimblestudio as nimblestudio cfn_studio_props = nimblestudio.CfnStudioProps( admin_role_arn="adminRoleArn", display_name="displayName", studio_name="studioName", user_role_arn="userRoleArn", # the properties below are optional studio_encryption_configuration=nimblestudio.CfnStudio.StudioEncryptionConfigurationProperty( key_type="keyType", # the properties below are optional key_arn="keyArn" ), tags={ "tags_key": "tags" } )
Attributes
- admin_role_arn
The IAM role that studio admins assume when logging in to the Nimble Studio portal.
- display_name
A friendly name for the studio.
- studio_encryption_configuration
Configuration of the encryption method that is used for the studio.
- studio_name
The name of the studio, as included in the URL when accessing it in the Nimble Studio portal.
- user_role_arn
The IAM role that studio users assume when logging in to the Nimble Studio portal.