AWSEC2InstanceEventWindowAssociationRequest

Objective-C

@interface AWSEC2InstanceEventWindowAssociationRequest

Swift

class AWSEC2InstanceEventWindowAssociationRequest

One or more targets associated with the specified event window. Only one type of target (instance ID, instance tag, or Dedicated Host ID) can be associated with an event window.

  • The IDs of the Dedicated Hosts to associate with the event window.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable dedicatedHostIds;

    Swift

    var dedicatedHostIds: [String]? { get set }
  • The IDs of the instances to associate with the event window. If the instance is on a Dedicated Host, you can’t specify the Instance ID parameter; you must use the Dedicated Host ID parameter.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable instanceIds;

    Swift

    var instanceIds: [String]? { get set }
  • The instance tags to associate with the event window. Any instances associated with the tags will be associated with the event window.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSEC2Tag *> *_Nullable instanceTags;

    Swift

    var instanceTags: [AWSEC2Tag]? { get set }