AWSRekognitionDeleteUserRequest

Objective-C

@interface AWSRekognitionDeleteUserRequest

Swift

class AWSRekognitionDeleteUserRequest
  • Idempotent token used to identify the request to DeleteUser. If you use the same token with multiple DeleteUser requests, the same response is returned. Use ClientRequestToken to prevent the same request from being processed more than once.

    Declaration

    Objective-C

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

    Swift

    var clientRequestToken: String? { get set }
  • The ID of an existing collection from which the UserID needs to be deleted.

    Declaration

    Objective-C

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

    Swift

    var collectionId: String? { get set }
  • ID for the UserID to be deleted.

    Declaration

    Objective-C

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

    Swift

    var userId: String? { get set }