Class: Aws::LambdaPreview::Types::AddEventSourceRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#batch_sizeInteger

The largest number of records that AWS Lambda will give to your function in a single event. The default is 100 records.

Returns:

  • (Integer)


50
51
52
53
54
55
56
57
58
# File 'gems/aws-sdk-lambdapreview/lib/aws-sdk-lambdapreview/types.rb', line 50

class AddEventSourceRequest < Struct.new(
  :event_source,
  :function_name,
  :role,
  :batch_size,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#event_sourceString

The Amazon Resource Name (ARN) of the Amazon Kinesis stream that is the event source. Any record added to this stream causes AWS Lambda to invoke your Lambda function. AWS Lambda POSTs the Amazon Kinesis event, containing records, to your Lambda function as JSON.

Returns:

  • (String)


50
51
52
53
54
55
56
57
58
# File 'gems/aws-sdk-lambdapreview/lib/aws-sdk-lambdapreview/types.rb', line 50

class AddEventSourceRequest < Struct.new(
  :event_source,
  :function_name,
  :role,
  :batch_size,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#function_nameString

The Lambda function to invoke when AWS Lambda detects an event on the stream.

Returns:

  • (String)


50
51
52
53
54
55
56
57
58
# File 'gems/aws-sdk-lambdapreview/lib/aws-sdk-lambdapreview/types.rb', line 50

class AddEventSourceRequest < Struct.new(
  :event_source,
  :function_name,
  :role,
  :batch_size,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#parametersHash<String,String>

A map (key-value pairs) defining the configuration for AWS Lambda to use when reading the event source. Currently, AWS Lambda supports only the InitialPositionInStream key. The valid values are: "TRIM_HORIZON" and "LATEST". The default value is "TRIM_HORIZON". For more information, go to ShardIteratorType in the Amazon Kinesis Service API Reference.

Returns:

  • (Hash<String,String>)


50
51
52
53
54
55
56
57
58
# File 'gems/aws-sdk-lambdapreview/lib/aws-sdk-lambdapreview/types.rb', line 50

class AddEventSourceRequest < Struct.new(
  :event_source,
  :function_name,
  :role,
  :batch_size,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end

#roleString

The ARN of the IAM role (invocation role) that AWS Lambda can assume to read from the stream and invoke the function.

Returns:

  • (String)


50
51
52
53
54
55
56
57
58
# File 'gems/aws-sdk-lambdapreview/lib/aws-sdk-lambdapreview/types.rb', line 50

class AddEventSourceRequest < Struct.new(
  :event_source,
  :function_name,
  :role,
  :batch_size,
  :parameters)
  SENSITIVE = []
  include Aws::Structure
end