Class: Aws::AppIntegrationsService::Types::ListEventIntegrationAssociationsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppIntegrationsService::Types::ListEventIntegrationAssociationsRequest
- Defined in:
- gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb
Overview
Note:
When making an API call, you may pass ListEventIntegrationAssociationsRequest data as a hash:
{
event_integration_name: "Name", # required
next_token: "NextToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#event_integration_name ⇒ String
The name of the event integration.
-
#max_results ⇒ Integer
The maximum number of results to return per page.
-
#next_token ⇒ String
The token for the next set of results.
Instance Attribute Details
#event_integration_name ⇒ String
The name of the event integration.
695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 695 class ListEventIntegrationAssociationsRequest < Struct.new( :event_integration_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return per page.
695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 695 class ListEventIntegrationAssociationsRequest < Struct.new( :event_integration_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
695 696 697 698 699 700 701 |
# File 'gems/aws-sdk-appintegrationsservice/lib/aws-sdk-appintegrationsservice/types.rb', line 695 class ListEventIntegrationAssociationsRequest < Struct.new( :event_integration_name, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |