AWSConnectUploadUrlMetadata

Objective-C

@interface AWSConnectUploadUrlMetadata

Swift

class AWSConnectUploadUrlMetadata

Fields required when uploading an attached file.

  • A map of headers that should be provided when uploading the attached file.

    Declaration

    Objective-C

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

    Swift

    var headersToInclude: [String : String]? { get set }
  • url

    A pre-signed S3 URL that should be used for uploading the attached file.

    Declaration

    Objective-C

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

    Swift

    var url: String? { get set }
  • The expiration time of the URL in ISO timestamp. It’s specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

    Declaration

    Objective-C

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

    Swift

    var urlExpiry: String? { get set }