MonitoringAppSpecification

public struct MonitoringAppSpecification : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An array of arguments for the container used to run the monitoring job.

    Declaration

    Swift

    public let containerArguments: [String]?
  • Specifies the entrypoint for a container used to run the monitoring job.

    Declaration

    Swift

    public let containerEntrypoint: [String]?
  • The container image to be run by the monitoring job.

    Declaration

    Swift

    public let imageUri: String
  • An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.

    Declaration

    Swift

    public let postAnalyticsProcessorSourceUri: String?
  • An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flatted json so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.

    Declaration

    Swift

    public let recordPreprocessorSourceUri: String?
  • Undocumented

    Declaration

    Swift

    public init(containerArguments: [String]? = nil, containerEntrypoint: [String]? = nil, imageUri: String, postAnalyticsProcessorSourceUri: String? = nil, recordPreprocessorSourceUri: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws