ResourceIdentifier of an AssociateRole. Either id or key is required. If both are set, an InvalidJsonInput error is returned.

interface AssociateRoleResourceIdentifier {
    id?: string;
    key?: string;
    typeId: "associate-role";
}

Properties

Properties

id?: string

Unique identifier of the referenced AssociateRole. Required if key is absent.

key?: string

Unique key of the referenced AssociateRole. Required if id is absent.

typeId: "associate-role"