interface SuperuserParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FinSpace.CfnEnvironmentPropsMixin.SuperuserParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfinspace#CfnEnvironmentPropsMixin_SuperuserParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.finspace.CfnEnvironmentPropsMixin.SuperuserParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_finspace.CfnEnvironmentPropsMixin.SuperuserParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_finspace » 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 { aws_finspace as finspace } from '@aws-cdk/cfn-property-mixins';
const superuserParametersProperty: finspace.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