AWSConnectParticipantUploadMetadata

Objective-C

@interface AWSConnectParticipantUploadMetadata

Swift

class AWSConnectParticipantUploadMetadata

Fields to be used while uploading the attachment.

  • The headers to be provided while uploading the file to the URL.

    Declaration

    Objective-C

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

    Swift

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

    This is the pre-signed URL that can be used for uploading the file to Amazon S3 when used in response to StartAttachmentUpload.

    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 }