Class CfnEnvironment.SuperuserParametersProperty
Configuration information for the superuser.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.FinSpace
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEnvironment.SuperuserParametersProperty : CfnEnvironment.ISuperuserParametersProperty
Syntax (vb)
Public Class CfnEnvironment.SuperuserParametersProperty Implements CfnEnvironment.ISuperuserParametersProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FinSpace;
var superuserParametersProperty = new SuperuserParametersProperty {
EmailAddress = "emailAddress",
FirstName = "firstName",
LastName = "lastName"
};
Synopsis
Constructors
SuperuserParametersProperty() | Configuration information for the superuser. |
Properties
EmailAddress | The email address of the superuser. |
FirstName | The first name of the superuser. |
LastName | The last name of the superuser. |
Constructors
SuperuserParametersProperty()
Configuration information for the superuser.
public SuperuserParametersProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FinSpace;
var superuserParametersProperty = new SuperuserParametersProperty {
EmailAddress = "emailAddress",
FirstName = "firstName",
LastName = "lastName"
};
Properties
EmailAddress
The email address of the superuser.
public string? EmailAddress { get; set; }
Property Value
Remarks
FirstName
The first name of the superuser.
public string? FirstName { get; set; }
Property Value
Remarks
LastName
The last name of the superuser.
public string? LastName { get; set; }