Interface LookupEventsRequest.Builder

    • Method Detail

      • lookupAttributes

        LookupEventsRequest.Builder lookupAttributes​(Collection<LookupAttribute> lookupAttributes)

        Contains a list of lookup attributes. Currently the list can contain only one item.

        Parameters:
        lookupAttributes - Contains a list of lookup attributes. Currently the list can contain only one item.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • lookupAttributes

        LookupEventsRequest.Builder lookupAttributes​(LookupAttribute... lookupAttributes)

        Contains a list of lookup attributes. Currently the list can contain only one item.

        Parameters:
        lookupAttributes - Contains a list of lookup attributes. Currently the list can contain only one item.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • startTime

        LookupEventsRequest.Builder startTime​(Instant startTime)

        Specifies that only events that occur after or at the specified time are returned. If the specified start time is after the specified end time, an error is returned.

        Parameters:
        startTime - Specifies that only events that occur after or at the specified time are returned. If the specified start time is after the specified end time, an error is returned.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • endTime

        LookupEventsRequest.Builder endTime​(Instant endTime)

        Specifies that only events that occur before or at the specified time are returned. If the specified end time is before the specified start time, an error is returned.

        Parameters:
        endTime - Specifies that only events that occur before or at the specified time are returned. If the specified end time is before the specified start time, an error is returned.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • eventCategory

        LookupEventsRequest.Builder eventCategory​(String eventCategory)

        Specifies the event category. If you do not specify an event category, events of the category are not returned in the response. For example, if you do not specify insight as the value of EventCategory, no Insights events are returned.

        Parameters:
        eventCategory - Specifies the event category. If you do not specify an event category, events of the category are not returned in the response. For example, if you do not specify insight as the value of EventCategory, no Insights events are returned.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        EventCategory, EventCategory
      • eventCategory

        LookupEventsRequest.Builder eventCategory​(EventCategory eventCategory)

        Specifies the event category. If you do not specify an event category, events of the category are not returned in the response. For example, if you do not specify insight as the value of EventCategory, no Insights events are returned.

        Parameters:
        eventCategory - Specifies the event category. If you do not specify an event category, events of the category are not returned in the response. For example, if you do not specify insight as the value of EventCategory, no Insights events are returned.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        EventCategory, EventCategory
      • maxResults

        LookupEventsRequest.Builder maxResults​(Integer maxResults)

        The number of events to return. Possible values are 1 through 50. The default is 50.

        Parameters:
        maxResults - The number of events to return. Possible values are 1 through 50. The default is 50.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • nextToken

        LookupEventsRequest.Builder nextToken​(String nextToken)

        The token to use to get the next page of results after a previous API call. This token must be passed in with the same parameters that were specified in the original call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.

        Parameters:
        nextToken - The token to use to get the next page of results after a previous API call. This token must be passed in with the same parameters that were specified in the original call. For example, if the original call specified an AttributeKey of 'Username' with a value of 'root', the call with NextToken should include those same parameters.
        Returns:
        Returns a reference to this object so that method calls can be chained together.