AWSConnectUpdateViewContentRequest
Objective-C
@interface AWSConnectUpdateViewContentRequest
Swift
class AWSConnectUpdateViewContentRequest
-
View content containing all content necessary to render a view except for runtime input data and the runtime input schema, which is auto-generated by this operation.
The total uncompressed content has a maximum file size of 400kB.
Declaration
Objective-C
@property (nonatomic, strong) AWSConnectViewInputContent *_Nullable content;
Swift
var content: AWSConnectViewInputContent? { get set }
-
The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable instanceId;
Swift
var instanceId: String? { get set }
-
Indicates the view status as either
SAVED
orPUBLISHED
. ThePUBLISHED
status will initiate validation on the content.Declaration
Objective-C
@property (nonatomic) AWSConnectViewStatus status;
Swift
var status: AWSConnectViewStatus { get set }
-
The identifier of the view. Both
ViewArn
andViewId
can be used.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable viewId;
Swift
var viewId: String? { get set }