EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader constructor

const EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader({
  1. Input<List<String>?>? csvContentTypes,
  2. Input<List<String>?>? jsonContentTypes,
})

Creates a new EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader. csvContentTypes CSV content type headers to capture. One of csvContentTypes or jsonContentTypes is required. jsonContentTypes The JSON content type headers to capture. One of jsonContentTypes or csvContentTypes is required.

Implementation

const EndpointConfigurationDataCaptureConfigCaptureContentTypeHeader({
  this.csvContentTypes,
  this.jsonContentTypes,
});