AWSCognitoIdentityUnlinkDeveloperIdentityInput

Objective-C

@interface AWSCognitoIdentityUnlinkDeveloperIdentityInput : AWSRequest

Swift

class AWSCognitoIdentityUnlinkDeveloperIdentityInput : AWSRequest

Input to the UnlinkDeveloperIdentity action.

Required parameters: [IdentityId, IdentityPoolId, DeveloperProviderName, DeveloperUserIdentifier]

  • The “domain” by which Cognito will refer to your users.

    Declaration

    Objective-C

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

    Swift

    var developerProviderName: String? { get set }
  • A unique ID used by your backend authentication process to identify a user.

    Declaration

    Objective-C

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

    Swift

    var developerUserIdentifier: String? { get set }
  • A unique identifier in the format REGION:GUID.

    Declaration

    Objective-C

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

    Swift

    var identityId: String? { get set }
  • An identity pool ID in the format REGION:GUID.

    Declaration

    Objective-C

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

    Swift

    var identityPoolId: String? { get set }