MemberDetails

sealed class MemberDetails

The details about a project member.

Inheritors

Types

Link copied to clipboard
data class Group(val value: GroupDetails) : MemberDetails

The group details of a project member.

Link copied to clipboard
Link copied to clipboard
data class User(val value: UserDetails) : MemberDetails

The user details of a project member.

Functions

Link copied to clipboard

Casts this MemberDetails as a Group and retrieves its aws.sdk.kotlin.services.datazone.model.GroupDetails value. Throws an exception if the MemberDetails is not a Group.

Link copied to clipboard

Casts this MemberDetails as a Group and retrieves its aws.sdk.kotlin.services.datazone.model.GroupDetails value. Returns null if the MemberDetails is not a Group.

Link copied to clipboard

Casts this MemberDetails as a User and retrieves its aws.sdk.kotlin.services.datazone.model.UserDetails value. Throws an exception if the MemberDetails is not a User.

Link copied to clipboard

Casts this MemberDetails as a User and retrieves its aws.sdk.kotlin.services.datazone.model.UserDetails value. Returns null if the MemberDetails is not a User.