Class: Aws::Lightsail::Types::GetRelationalDatabaseEventsRequest

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

Overview

Note:

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

{
  relational_database_name: "ResourceName", # required
  duration_in_minutes: 1,
  page_token: "string",
}

Instance Attribute Summary collapse

Instance Attribute Details

#duration_in_minutesInteger

The number of minutes in the past from which to retrieve events. For example, to get all events from the past 2 hours, enter 120.

Default: ‘60`

The minimum is 1 and the maximum is 14 days (20160 minutes).

Returns:

  • (Integer)


4203
4204
4205
4206
4207
4208
# File 'lib/aws-sdk-lightsail/types.rb', line 4203

class GetRelationalDatabaseEventsRequest < Struct.new(
  :relational_database_name,
  :duration_in_minutes,
  :page_token)
  include Aws::Structure
end

#page_tokenString

A token used for advancing to a specific page of results from for get relational database events request.

Returns:

  • (String)


4203
4204
4205
4206
4207
4208
# File 'lib/aws-sdk-lightsail/types.rb', line 4203

class GetRelationalDatabaseEventsRequest < Struct.new(
  :relational_database_name,
  :duration_in_minutes,
  :page_token)
  include Aws::Structure
end

#relational_database_nameString

The name of the database from which to get events.

Returns:

  • (String)


4203
4204
4205
4206
4207
4208
# File 'lib/aws-sdk-lightsail/types.rb', line 4203

class GetRelationalDatabaseEventsRequest < Struct.new(
  :relational_database_name,
  :duration_in_minutes,
  :page_token)
  include Aws::Structure
end