Class: Aws::LambdaPreview::Types::ListEventSourcesRequest

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

Overview

Note:

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

{
  event_source_arn: "String",
  function_name: "FunctionName",
  marker: "String",
  max_items: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#event_source_arnString

The Amazon Resource Name (ARN) of the Amazon Kinesis stream.

Returns:

  • (String)


389
390
391
392
393
394
395
# File 'lib/aws-sdk-lambdapreview/types.rb', line 389

class ListEventSourcesRequest < Struct.new(
  :event_source_arn,
  :function_name,
  :marker,
  :max_items)
  include Aws::Structure
end

#function_nameString

The name of the AWS Lambda function.

Returns:

  • (String)


389
390
391
392
393
394
395
# File 'lib/aws-sdk-lambdapreview/types.rb', line 389

class ListEventSourcesRequest < Struct.new(
  :event_source_arn,
  :function_name,
  :marker,
  :max_items)
  include Aws::Structure
end

#markerString

Optional string. An opaque pagination token returned from a previous ‘ListEventSources` operation. If present, specifies to continue the list from where the returning call left off.

Returns:

  • (String)


389
390
391
392
393
394
395
# File 'lib/aws-sdk-lambdapreview/types.rb', line 389

class ListEventSourcesRequest < Struct.new(
  :event_source_arn,
  :function_name,
  :marker,
  :max_items)
  include Aws::Structure
end

#max_itemsInteger

Optional integer. Specifies the maximum number of event sources to return in response. This value must be greater than 0.

Returns:

  • (Integer)


389
390
391
392
393
394
395
# File 'lib/aws-sdk-lambdapreview/types.rb', line 389

class ListEventSourcesRequest < Struct.new(
  :event_source_arn,
  :function_name,
  :marker,
  :max_items)
  include Aws::Structure
end