pub struct DataCaptureConfig {
pub capture_content_type_header: Option<CaptureContentTypeHeader>,
pub capture_options: Vec<CaptureOption>,
pub destination_s3_uri: String,
pub enable_capture: Option<bool>,
pub initial_sampling_percentage: i64,
pub kms_key_id: Option<String>,
}
Expand description
Fields§
§capture_content_type_header: Option<CaptureContentTypeHeader>
§
capture_options: Vec<CaptureOption>
§
destination_s3_uri: String
§
enable_capture: Option<bool>
§
initial_sampling_percentage: i64
§
kms_key_id: Option<String>
Trait Implementations§
Source§impl Clone for DataCaptureConfig
impl Clone for DataCaptureConfig
Source§fn clone(&self) -> DataCaptureConfig
fn clone(&self) -> DataCaptureConfig
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 DataCaptureConfig
impl Debug for DataCaptureConfig
Source§impl Default for DataCaptureConfig
impl Default for DataCaptureConfig
Source§fn default() -> DataCaptureConfig
fn default() -> DataCaptureConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataCaptureConfig
impl<'de> Deserialize<'de> for DataCaptureConfig
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
Source§impl PartialEq for DataCaptureConfig
impl PartialEq for DataCaptureConfig
Source§impl Serialize for DataCaptureConfig
impl Serialize for DataCaptureConfig
impl StructuralPartialEq for DataCaptureConfig
Auto Trait Implementations§
impl Freeze for DataCaptureConfig
impl RefUnwindSafe for DataCaptureConfig
impl Send for DataCaptureConfig
impl Sync for DataCaptureConfig
impl Unpin for DataCaptureConfig
impl UnwindSafe for DataCaptureConfig
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