pub struct AutoMLOutputDataConfig {
pub kms_key_id: Option<String>,
pub s3_output_path: String,
}
Expand description
The output data configuration.
Fields§
§kms_key_id: Option<String>
The AWS KMS encryption key ID.
s3_output_path: String
The Amazon S3 output path. Must be 128 characters or less.
Trait Implementations§
Source§impl Clone for AutoMLOutputDataConfig
impl Clone for AutoMLOutputDataConfig
Source§fn clone(&self) -> AutoMLOutputDataConfig
fn clone(&self) -> AutoMLOutputDataConfig
Returns a copy 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 AutoMLOutputDataConfig
impl Debug for AutoMLOutputDataConfig
Source§impl Default for AutoMLOutputDataConfig
impl Default for AutoMLOutputDataConfig
Source§fn default() -> AutoMLOutputDataConfig
fn default() -> AutoMLOutputDataConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLOutputDataConfig
impl<'de> Deserialize<'de> for AutoMLOutputDataConfig
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 AutoMLOutputDataConfig
impl PartialEq for AutoMLOutputDataConfig
Source§impl Serialize for AutoMLOutputDataConfig
impl Serialize for AutoMLOutputDataConfig
impl StructuralPartialEq for AutoMLOutputDataConfig
Auto Trait Implementations§
impl Freeze for AutoMLOutputDataConfig
impl RefUnwindSafe for AutoMLOutputDataConfig
impl Send for AutoMLOutputDataConfig
impl Sync for AutoMLOutputDataConfig
impl Unpin for AutoMLOutputDataConfig
impl UnwindSafe for AutoMLOutputDataConfig
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