pub struct AutoMLSecurityConfig {
pub enable_inter_container_traffic_encryption: Option<bool>,
pub volume_kms_key_id: Option<String>,
pub vpc_config: Option<VpcConfig>,
}
Expand description
Security options.
Fields§
§enable_inter_container_traffic_encryption: Option<bool>
Whether to use traffic encryption between the container layers.
volume_kms_key_id: Option<String>
The key used to encrypt stored data.
vpc_config: Option<VpcConfig>
VPC configuration.
Trait Implementations§
Source§impl Clone for AutoMLSecurityConfig
impl Clone for AutoMLSecurityConfig
Source§fn clone(&self) -> AutoMLSecurityConfig
fn clone(&self) -> AutoMLSecurityConfig
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 AutoMLSecurityConfig
impl Debug for AutoMLSecurityConfig
Source§impl Default for AutoMLSecurityConfig
impl Default for AutoMLSecurityConfig
Source§fn default() -> AutoMLSecurityConfig
fn default() -> AutoMLSecurityConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoMLSecurityConfig
impl<'de> Deserialize<'de> for AutoMLSecurityConfig
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 AutoMLSecurityConfig
impl PartialEq for AutoMLSecurityConfig
Source§impl Serialize for AutoMLSecurityConfig
impl Serialize for AutoMLSecurityConfig
impl StructuralPartialEq for AutoMLSecurityConfig
Auto Trait Implementations§
impl Freeze for AutoMLSecurityConfig
impl RefUnwindSafe for AutoMLSecurityConfig
impl Send for AutoMLSecurityConfig
impl Sync for AutoMLSecurityConfig
impl Unpin for AutoMLSecurityConfig
impl UnwindSafe for AutoMLSecurityConfig
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