Class: Aws::Lambda::Types::FunctionEventInvokeConfig

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_configTypes::DestinationConfig

A destination for events after they have been sent to a function for processing.

Destinations

  • Function - The Amazon Resource Name (ARN) of a Lambda function.

  • Queue - The ARN of a standard SQS queue.

  • Topic - The ARN of a standard SNS topic.

  • Event Bus - The ARN of an Amazon EventBridge event bus.



2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2428

class FunctionEventInvokeConfig < Struct.new(
  :last_modified,
  :function_arn,
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds,
  :destination_config)
  SENSITIVE = []
  include Aws::Structure
end

#function_arnString

The Amazon Resource Name (ARN) of the function.

Returns:

  • (String)


2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2428

class FunctionEventInvokeConfig < Struct.new(
  :last_modified,
  :function_arn,
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds,
  :destination_config)
  SENSITIVE = []
  include Aws::Structure
end

#last_modifiedTime

The date and time that the configuration was last updated.

Returns:

  • (Time)


2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2428

class FunctionEventInvokeConfig < Struct.new(
  :last_modified,
  :function_arn,
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds,
  :destination_config)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_event_age_in_secondsInteger

The maximum age of a request that Lambda sends to a function for processing.

Returns:

  • (Integer)


2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2428

class FunctionEventInvokeConfig < Struct.new(
  :last_modified,
  :function_arn,
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds,
  :destination_config)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_retry_attemptsInteger

The maximum number of times to retry when the function returns an error.

Returns:

  • (Integer)


2428
2429
2430
2431
2432
2433
2434
2435
2436
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 2428

class FunctionEventInvokeConfig < Struct.new(
  :last_modified,
  :function_arn,
  :maximum_retry_attempts,
  :maximum_event_age_in_seconds,
  :destination_config)
  SENSITIVE = []
  include Aws::Structure
end