Class: Aws::Lambda::Types::UpdateEventSourceMappingRequest

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

Overview

Note:

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

{
  uuid: "String", # required
  function_name: "FunctionName",
  enabled: false,
  batch_size: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#batch_sizeInteger

The maximum number of items to retrieve in a single batch.

  • **Amazon Kinesis** - Default 100. Max 10,000.

  • **Amazon DynamoDB Streams** - Default 100. Max 1,000.

  • **Amazon Simple Queue Service** - Default 10. Max 10.

Returns:

  • (Integer)


2703
2704
2705
2706
2707
2708
2709
# File 'lib/aws-sdk-lambda/types.rb', line 2703

class UpdateEventSourceMappingRequest < Struct.new(
  :uuid,
  :function_name,
  :enabled,
  :batch_size)
  include Aws::Structure
end

#enabledBoolean

Disables the event source mapping to pause polling and invocation.

Returns:

  • (Boolean)


2703
2704
2705
2706
2707
2708
2709
# File 'lib/aws-sdk-lambda/types.rb', line 2703

class UpdateEventSourceMappingRequest < Struct.new(
  :uuid,
  :function_name,
  :enabled,
  :batch_size)
  include Aws::Structure
end

#function_nameString

The name of the Lambda function.

**Name formats**

  • **Function name** - ‘MyFunction`.

  • **Function ARN** - ‘arn:aws:lambda:us-west-2:123456789012:function:MyFunction`.

  • **Version or Alias ARN** - ‘arn:aws:lambda:us-west-2:123456789012:function:MyFunction:PROD`.

  • **Partial ARN** - ‘123456789012:function:MyFunction`.

The length constraint applies only to the full ARN. If you specify only the function name, it’s limited to 64 characters in length.

Returns:

  • (String)


2703
2704
2705
2706
2707
2708
2709
# File 'lib/aws-sdk-lambda/types.rb', line 2703

class UpdateEventSourceMappingRequest < Struct.new(
  :uuid,
  :function_name,
  :enabled,
  :batch_size)
  include Aws::Structure
end

#uuidString

The identifier of the event source mapping.

Returns:

  • (String)


2703
2704
2705
2706
2707
2708
2709
# File 'lib/aws-sdk-lambda/types.rb', line 2703

class UpdateEventSourceMappingRequest < Struct.new(
  :uuid,
  :function_name,
  :enabled,
  :batch_size)
  include Aws::Structure
end