interface SuperuserParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FinSpace.Mixins.CfnEnvironmentPropsMixin.SuperuserParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfinspace/mixins#CfnEnvironmentPropsMixin_SuperuserParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.finspace.mixins.CfnEnvironmentPropsMixin.SuperuserParametersProperty |
Python | aws_cdk.mixins_preview.aws_finspace.mixins.CfnEnvironmentPropsMixin.SuperuserParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_finspace » mixins » CfnEnvironmentPropsMixin » SuperuserParametersProperty |
Configuration information for the superuser.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as finspace_mixins } from '@aws-cdk/mixins-preview/aws-finspace';
const superuserParametersProperty: finspace_mixins.CfnEnvironmentPropsMixin.SuperuserParametersProperty = {
emailAddress: 'emailAddress',
firstName: 'firstName',
lastName: 'lastName',
};
Properties
| Name | Type | Description |
|---|---|---|
| email | string | The email address of the superuser. |
| first | string | The first name of the superuser. |
| last | string | The last name of the superuser. |
emailAddress?
Type:
string
(optional)
The email address of the superuser.
firstName?
Type:
string
(optional)
The first name of the superuser.
lastName?
Type:
string
(optional)
The last name of the superuser.

.NET
Go
Java
Python
TypeScript