Class: Aws::EC2::Types::ModifyInstanceEventStartTimeRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass ModifyInstanceEventStartTimeRequest data as a hash:

{
  dry_run: false,
  instance_id: "String", # required
  instance_event_id: "String", # required
  not_before: Time.now, # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation.`

Returns:

  • (Boolean)


25914
25915
25916
25917
25918
25919
25920
# File 'lib/aws-sdk-ec2/types.rb', line 25914

class ModifyInstanceEventStartTimeRequest < Struct.new(
  :dry_run,
  :instance_id,
  :instance_event_id,
  :not_before)
  include Aws::Structure
end

#instance_event_idString

The ID of the event whose date and time you are modifying.

Returns:

  • (String)


25914
25915
25916
25917
25918
25919
25920
# File 'lib/aws-sdk-ec2/types.rb', line 25914

class ModifyInstanceEventStartTimeRequest < Struct.new(
  :dry_run,
  :instance_id,
  :instance_event_id,
  :not_before)
  include Aws::Structure
end

#instance_idString

The ID of the instance with the scheduled event.

Returns:

  • (String)


25914
25915
25916
25917
25918
25919
25920
# File 'lib/aws-sdk-ec2/types.rb', line 25914

class ModifyInstanceEventStartTimeRequest < Struct.new(
  :dry_run,
  :instance_id,
  :instance_event_id,
  :not_before)
  include Aws::Structure
end

#not_beforeTime

The new date and time when the event will take place.

Returns:

  • (Time)


25914
25915
25916
25917
25918
25919
25920
# File 'lib/aws-sdk-ec2/types.rb', line 25914

class ModifyInstanceEventStartTimeRequest < Struct.new(
  :dry_run,
  :instance_id,
  :instance_event_id,
  :not_before)
  include Aws::Structure
end