Skip to content

Update Ingestion Destination

appfabric_update_ingestion_destination R Documentation

Updates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web Services AppFabric and where it's delivered

Description

Updates an ingestion destination, which specifies how an application's ingested data is processed by Amazon Web Services AppFabric and where it's delivered.

Usage

appfabric_update_ingestion_destination(appBundleIdentifier,
  ingestionIdentifier, ingestionDestinationIdentifier,
  destinationConfiguration)

Arguments

appBundleIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.

ingestionIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion to use for the request.

ingestionDestinationIdentifier

[required] The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the ingestion destination to use for the request.

destinationConfiguration

[required] Contains information about the destination of ingested data.

Value

A list with the following syntax:

list(
  ingestionDestination = list(
    arn = "string",
    ingestionArn = "string",
    processingConfiguration = list(
      auditLog = list(
        schema = "ocsf"|"raw",
        format = "json"|"parquet"
      )
    ),
    destinationConfiguration = list(
      auditLog = list(
        destination = list(
          s3Bucket = list(
            bucketName = "string",
            prefix = "string"
          ),
          firehoseStream = list(
            streamName = "string"
          )
        )
      )
    ),
    status = "Active"|"Failed",
    statusReason = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$update_ingestion_destination(
  appBundleIdentifier = "string",
  ingestionIdentifier = "string",
  ingestionDestinationIdentifier = "string",
  destinationConfiguration = list(
    auditLog = list(
      destination = list(
        s3Bucket = list(
          bucketName = "string",
          prefix = "string"
        ),
        firehoseStream = list(
          streamName = "string"
        )
      )
    )
  )
)