Container for the parameters to the DescribeEvents operation.

Returns events related to DB Instances, DB Security Groups, DB Snapshots and DB Parameter Groups for the past 14 days. Events specific to a particular DB Instance, DB Security Group, database snapshot or DB Parameter Group can be obtained by providing the name as a parameter. By default, the past hour of events are returned.

Namespace: Amazon.RDS.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class DescribeEventsRequest : AmazonWebServiceRequest
Public Class DescribeEventsRequest _
	Inherits AmazonWebServiceRequest
public ref class DescribeEventsRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DescribeEventsRequest()()()()
Initializes a new instance of the DescribeEventsRequest class
Duration
The number of minutes to retrieve events for. Default: 60
EndTime
The end of the time interval for which to retrieve events, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page. Example: 2009-07-08T18:00Z
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
Marker
An optional marker provided in the previous DescribeEvents request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
MaxRecords
The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results may be retrieved. Default: 100 Constraints: minimum 20, maximum 100
SourceIdentifier
The identifier of the event source for which events will be returned. If not specified, then all sources are included in the response. Constraints:
  • If SourceIdentifier is supplied, SourceType must also be provided.
  • If the source type is DBInstance, then a DBInstanceIdentifier must be supplied.
  • If the source type is DBSecurityGroup, a DBSecurityGroupName must be supplied.
  • If the source type is DBParameterGroup, a DBParameterGroupName must be supplied.
  • If the source type is DBSnapshot, a DBSnapshotIdentifier must be supplied.
  • Cannot end with a hyphen or contain two consecutive hyphens.
SourceType
The event source to retrieve events for. If no value is specified, all events are returned.

Constraints:

Allowed Values
db-instance, db-parameter-group, db-security-group, db-snapshot

StartTime
The beginning of the time interval to retrieve events for, specified in ISO 8601 format. For more information about ISO 8601, go to the ISO8601 Wikipedia page. Example: 2009-07-08T18:00Z
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithDuration(Int32)
Sets the Duration property
WithEndTime(DateTime)
Sets the EndTime property
WithMarker(String)
Sets the Marker property
WithMaxRecords(Int32)
Sets the MaxRecords property
WithSourceIdentifier(String)
Sets the SourceIdentifier property
WithSourceType(String)
Sets the SourceType property
WithStartTime(DateTime)
Sets the StartTime property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.RDS.Model..::..DescribeEventsRequest

See Also