UserProfile constructor

UserProfile({
  1. bool? allowSelfManagement,
  2. String? iamUserArn,
  3. String? name,
  4. String? sshPublicKey,
  5. String? sshUsername,
})

Implementation

UserProfile({
  this.allowSelfManagement,
  this.iamUserArn,
  this.name,
  this.sshPublicKey,
  this.sshUsername,
});