Show / Hide Table of Contents

Class CfnEnvironment.SuperuserParametersProperty

Configuration information for the superuser.

Inheritance
object
CfnEnvironment.SuperuserParametersProperty
Implements
CfnEnvironment.ISuperuserParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-superuserparameters.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-superuserparameters.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-superuserparameters.html#cfn-finspace-environment-superuserparameters-emailaddress

FirstName

The first name of the superuser.

public string? FirstName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-superuserparameters.html#cfn-finspace-environment-superuserparameters-firstname

LastName

The last name of the superuser.

public string? LastName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-finspace-environment-superuserparameters.html#cfn-finspace-environment-superuserparameters-lastname

Implements

CfnEnvironment.ISuperuserParametersProperty
Back to top Generated by DocFX