AWSConnectPropertyValidationExceptionProperty

Objective-C

@interface AWSConnectPropertyValidationExceptionProperty

Swift

class AWSConnectPropertyValidationExceptionProperty

Contains information about why a property is not valid.

Required parameters: [PropertyPath, Reason, Message]

  • A message describing why the property is not valid.

    Declaration

    Objective-C

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

    Swift

    var message: String? { get set }
  • The full property path.

    Declaration

    Objective-C

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

    Swift

    var propertyPath: String? { get set }
  • Why the property is not valid.

    Declaration

    Objective-C

    @property (nonatomic) AWSConnectPropertyValidationExceptionReason reason;

    Swift

    var reason: AWSConnectPropertyValidationExceptionReason { get set }