AWSConnectParticipantView

Objective-C

@interface AWSConnectParticipantView

Swift

class AWSConnectParticipantView

A view resource object. Contains metadata and content necessary to render the view.

  • arn

    The Amazon Resource Name (ARN) of the view.

    Declaration

    Objective-C

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

    Swift

    var arn: String? { get set }
  • View content containing all content necessary to render a view except for runtime input data.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectParticipantViewContent *_Nullable content;

    Swift

    var content: AWSConnectParticipantViewContent? { get set }
  • The identifier of the view.

    Declaration

    Objective-C

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

    Swift

    var identifier: String? { get set }
  • The name of the view.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • The current version of the view.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable version;

    Swift

    var version: NSNumber? { get set }