Learn R Programming

paws.compute (version 0.1.12)

lambda_delete_event_source_mapping: Deletes an event source mapping

Description

Deletes an event source mapping. You can get the identifier of a mapping from the output of list_event_source_mappings.

When you delete an event source mapping, it enters a Deleting state and might not be completely deleted for several seconds.

Usage

lambda_delete_event_source_mapping(UUID)

Value

A list with the following syntax:

list(
  UUID = "string",
  StartingPosition = "TRIM_HORIZON"|"LATEST"|"AT_TIMESTAMP",
  StartingPositionTimestamp = as.POSIXct(
    "2015-01-01"
  ),
  BatchSize = 123,
  MaximumBatchingWindowInSeconds = 123,
  ParallelizationFactor = 123,
  EventSourceArn = "string",
  FunctionArn = "string",
  LastModified = as.POSIXct(
    "2015-01-01"
  ),
  LastProcessingResult = "string",
  State = "string",
  StateTransitionReason = "string",
  DestinationConfig = list(
    OnSuccess = list(
      Destination = "string"
    ),
    OnFailure = list(
      Destination = "string"
    )
  ),
  Topics = list(
    "string"
  ),
  Queues = list(
    "string"
  ),
  SourceAccessConfigurations = list(
    list(
      Type = "BASIC_AUTH"|"VPC_SUBNET"|"VPC_SECURITY_GROUP"|"SASL_SCRAM_512_AUTH"|"SASL_SCRAM_256_AUTH",
      URI = "string"
    )
  ),
  SelfManagedEventSource = list(
    Endpoints = list(
      list(
        "string"
      )
    )
  ),
  MaximumRecordAgeInSeconds = 123,
  BisectBatchOnFunctionError = TRUE|FALSE,
  MaximumRetryAttempts = 123,
  TumblingWindowInSeconds = 123,
  FunctionResponseTypes = list(
    "ReportBatchItemFailures"
  )
)

Arguments

UUID

[required] The identifier of the event source mapping.

Request syntax

svc$delete_event_source_mapping(
  UUID = "string"
)

Examples

Run this code
if (FALSE) {
# The following example deletes an event source mapping. To get a
# mapping's UUID, use ListEventSourceMappings.
svc$delete_event_source_mapping(
  UUID = "14e0db71-xmpl-4eb5-b481-8945cf9d10c2"
)
}

Run the code above in your browser using DataLab