AWSCognitoIdentityUnlinkIdentityInput

Objective-C

@interface AWSCognitoIdentityUnlinkIdentityInput : AWSRequest

Swift

class AWSCognitoIdentityUnlinkIdentityInput : AWSRequest

Input to the UnlinkIdentity action.

Required parameters: [IdentityId, Logins, LoginsToRemove]

  • A unique identifier in the format REGION:GUID.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable identityId;

    Swift

    var identityId: String? { get set }
  • A set of optional name-value pairs that map provider names to provider tokens.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable logins;

    Swift

    var logins: [String : String]? { get set }
  • Provider names to unlink from this identity.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable loginsToRemove;

    Swift

    var loginsToRemove: [String]? { get set }