pub struct MonitoringAppSpecification {
pub container_arguments: Option<Vec<String>>,
pub container_entrypoint: Option<Vec<String>>,
pub image_uri: String,
pub post_analytics_processor_source_uri: Option<String>,
pub record_preprocessor_source_uri: Option<String>,
}
Expand description
Container image configuration object for the monitoring job.
Fields§
§container_arguments: Option<Vec<String>>
An array of arguments for the container used to run the monitoring job.
container_entrypoint: Option<Vec<String>>
Specifies the entrypoint for a container used to run the monitoring job.
image_uri: String
The container image to be run by the monitoring job.
post_analytics_processor_source_uri: Option<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.
record_preprocessor_source_uri: Option<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.
Trait Implementations§
Source§impl Clone for MonitoringAppSpecification
impl Clone for MonitoringAppSpecification
Source§fn clone(&self) -> MonitoringAppSpecification
fn clone(&self) -> MonitoringAppSpecification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MonitoringAppSpecification
impl Debug for MonitoringAppSpecification
Source§impl Default for MonitoringAppSpecification
impl Default for MonitoringAppSpecification
Source§fn default() -> MonitoringAppSpecification
fn default() -> MonitoringAppSpecification
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MonitoringAppSpecification
impl<'de> Deserialize<'de> for MonitoringAppSpecification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for MonitoringAppSpecification
Auto Trait Implementations§
impl Freeze for MonitoringAppSpecification
impl RefUnwindSafe for MonitoringAppSpecification
impl Send for MonitoringAppSpecification
impl Sync for MonitoringAppSpecification
impl Unpin for MonitoringAppSpecification
impl UnwindSafe for MonitoringAppSpecification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more