Module Values.ConfigurationTemplateSource

A structure containing information about the deafult settings and available settings that you can use to configure a delivery or a delivery destination.

Sourcetype nonrec t = {
  1. service : Service.t option;
    (*

    A string specifying which service this configuration template applies to. For more information about supported services see Enable logging from Amazon Web Services services..

    *)
  2. logType : LogType.t option;
    (*

    A string specifying which log type this configuration template applies to.

    *)
  3. resourceType : ResourceType.t option;
    (*

    A string specifying which resource type this configuration template applies to.

    *)
  4. deliveryDestinationType : DeliveryDestinationType.t option;
    (*

    A string specifying which destination type this configuration template applies to.

    *)
  5. defaultDeliveryConfigValues : ConfigurationTemplateDeliveryConfigValues.t option;
    (*

    A mapping that displays the default value of each property within a delivery's configuration, if it is not specified in the request.

    *)
  6. allowedFields : AllowedFields.t option;
    (*

    The allowed fields that a caller can use in the recordFields parameter of a CreateDelivery or UpdateDeliveryConfiguration operation.

    *)
  7. allowedOutputFormats : OutputFormats.t option;
    (*

    The list of delivery destination output formats that are supported by this log source.

    *)
  8. allowedActionForAllowVendedLogsDeliveryForResource : AllowedActionForAllowVendedLogsDeliveryForResource.t option;
    (*

    The action permissions that a caller needs to have to be able to successfully create a delivery source on the desired resource type when calling PutDeliverySource.

    *)
  9. allowedFieldDelimiters : AllowedFieldDelimiters.t option;
    (*

    The valid values that a caller can use as field delimiters when calling CreateDelivery or UpdateDeliveryConfiguration on a delivery that delivers in Plain, W3C, or Raw format.

    *)
  10. allowedSuffixPathFields : RecordFields.t option;
    (*

    The list of variable fields that can be used in the suffix path of a delivery that delivers to an S3 bucket.

    *)
  11. deliverySourceConfiguration : DeliverySourceConfigurationSchemas.t option;
    (*

    The schema of the delivery source configuration that is available for this log type. Each element describes a configuration that can be set when calling PutDeliverySource, including the configuration name, type, and default value.

    *)
  12. s3TablesIntegration : S3TablesIntegration.t option;
    (*

    The S3 Tables integration configuration for this configuration template, including the datasource name and type.

    *)
}
Sourceval make : ?service:??? -> ?logType:??? -> ?resourceType:??? -> ?deliveryDestinationType:??? -> ?defaultDeliveryConfigValues:??? -> ?allowedFields:??? -> ?allowedOutputFormats:??? -> ?allowedActionForAllowVendedLogsDeliveryForResource:??? -> ?allowedFieldDelimiters:??? -> ?allowedSuffixPathFields:??? -> ?deliverySourceConfiguration:??? -> ?s3TablesIntegration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of FieldDelimiter.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of DeliverySourceConfigurationNumericValue.t | `Enum of string | `List of [> `String of DeliverySourceConfigurationSchemaField.t ] list | `String of FieldHeader.t ]) list ] list | `String of Service.t | `Structure of (string * [> `List of [> `String of FieldHeader.t ] list | `String of FieldDelimiter.t | `Structure of (string * [> `Boolean of Boolean.t | `String of DeliverySuffixPath.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t