#[non_exhaustive]pub enum Profile {
ThreatPreventionProfile(Box<ThreatPreventionProfile>),
CustomMirroringProfile(Box<CustomMirroringProfile>),
CustomInterceptProfile(Box<CustomInterceptProfile>),
UrlFilteringProfile(Box<UrlFilteringProfile>),
}Expand description
The behavior for the ProfileType that the SecurityProfile resource is meant to configure. This field must correspond to the ProfileType of the SecurityProfile.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ThreatPreventionProfile(Box<ThreatPreventionProfile>)
The threat prevention configuration for the SecurityProfile.
CustomMirroringProfile(Box<CustomMirroringProfile>)
The custom Packet Mirroring v2 configuration for the SecurityProfile.
CustomInterceptProfile(Box<CustomInterceptProfile>)
The custom TPPI configuration for the SecurityProfile.
UrlFilteringProfile(Box<UrlFilteringProfile>)
The URL filtering configuration for the SecurityProfile.
Trait Implementations§
impl StructuralPartialEq for Profile
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnsafeUnpin for Profile
impl UnwindSafe for Profile
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