DescribedUser constructor

DescribedUser({
  1. required String arn,
  2. String? homeDirectory,
  3. List<HomeDirectoryMapEntry>? homeDirectoryMappings,
  4. HomeDirectoryType? homeDirectoryType,
  5. String? policy,
  6. String? role,
  7. List<SshPublicKey>? sshPublicKeys,
  8. List<Tag>? tags,
  9. String? userName,
})

Implementation

DescribedUser({
  required this.arn,
  this.homeDirectory,
  this.homeDirectoryMappings,
  this.homeDirectoryType,
  this.policy,
  this.role,
  this.sshPublicKeys,
  this.tags,
  this.userName,
});