pub struct TestResult {
pub compute_utilization: Option<String>,
pub function_error_message: Option<String>,
pub function_execution_logs: Option<Vec<String>>,
pub function_output: Option<String>,
pub function_summary: Option<FunctionSummary>,
}
Expand description
Contains the result of testing a CloudFront function with TestFunction
.
Fields§
§compute_utilization: Option<String>
The amount of time that the function took to run as a percentage of the maximum allowed time. For example, a compute utilization of 35 means that the function completed in 35% of the maximum allowed time.
function_error_message: Option<String>
If the result of testing the function was an error, this field contains the error message.
function_execution_logs: Option<Vec<String>>
Contains the log lines that the function wrote (if any) when running the test.
function_output: Option<String>
The event object returned by the function. For more information about the structure of the event object, see Event object structure in the Amazon CloudFront Developer Guide.
function_summary: Option<FunctionSummary>
Contains configuration information and metadata about the CloudFront function that was tested.
Trait Implementations§
Source§impl Clone for TestResult
impl Clone for TestResult
Source§fn clone(&self) -> TestResult
fn clone(&self) -> TestResult
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 TestResult
impl Debug for TestResult
Source§impl Default for TestResult
impl Default for TestResult
Source§fn default() -> TestResult
fn default() -> TestResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for TestResult
impl PartialEq for TestResult
impl StructuralPartialEq for TestResult
Auto Trait Implementations§
impl Freeze for TestResult
impl RefUnwindSafe for TestResult
impl Send for TestResult
impl Sync for TestResult
impl Unpin for TestResult
impl UnwindSafe for TestResult
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