AWSEC2InstanceStatusEvent

Objective-C

@interface AWSEC2InstanceStatusEvent

Swift

class AWSEC2InstanceStatusEvent

Describes a scheduled event for an instance.

  • The event code.

    Declaration

    Objective-C

    @property (nonatomic) AWSEC2EventCode code;

    Swift

    var code: AWSEC2EventCode { get set }
  • A description of the event.

    After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].

    Declaration

    Objective-C

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

    Swift

    var detail: String? { get set }
  • The ID of the event.

    Declaration

    Objective-C

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

    Swift

    var instanceEventId: String? { get set }
  • The latest scheduled end time for the event.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable notAfter;

    Swift

    var notAfter: Date? { get set }
  • The earliest scheduled start time for the event.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable notBefore;

    Swift

    var notBefore: Date? { get set }
  • The deadline for starting the event.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable notBeforeDeadline;

    Swift

    var notBeforeDeadline: Date? { get set }