pub struct ClusterFirewallCreateSecurityGroupRequest {
pub comment: Option<String>,
pub digest: Option<String>,
pub group: String,
pub rename: Option<String>,
}Fields§
§comment: Option<String>§digest: Option<String>Prevent changes if current configuration file has a different digest. This can be used to prevent concurrent modifications.
group: StringSecurity Group name.
rename: Option<String>Rename/update an existing security group. You can set ‘rename’ to the same value as ‘name’ to update the ‘comment’ of an existing group.
Implementations§
Trait Implementations§
Source§impl Clone for ClusterFirewallCreateSecurityGroupRequest
impl Clone for ClusterFirewallCreateSecurityGroupRequest
Source§fn clone(&self) -> ClusterFirewallCreateSecurityGroupRequest
fn clone(&self) -> ClusterFirewallCreateSecurityGroupRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for ClusterFirewallCreateSecurityGroupRequest
impl Default for ClusterFirewallCreateSecurityGroupRequest
Source§fn default() -> ClusterFirewallCreateSecurityGroupRequest
fn default() -> ClusterFirewallCreateSecurityGroupRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClusterFirewallCreateSecurityGroupRequest
impl<'de> Deserialize<'de> for ClusterFirewallCreateSecurityGroupRequest
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 ClusterFirewallCreateSecurityGroupRequest
impl PartialEq for ClusterFirewallCreateSecurityGroupRequest
Source§fn eq(&self, other: &ClusterFirewallCreateSecurityGroupRequest) -> bool
fn eq(&self, other: &ClusterFirewallCreateSecurityGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClusterFirewallCreateSecurityGroupRequest
Auto Trait Implementations§
impl Freeze for ClusterFirewallCreateSecurityGroupRequest
impl RefUnwindSafe for ClusterFirewallCreateSecurityGroupRequest
impl Send for ClusterFirewallCreateSecurityGroupRequest
impl Sync for ClusterFirewallCreateSecurityGroupRequest
impl Unpin for ClusterFirewallCreateSecurityGroupRequest
impl UnsafeUnpin for ClusterFirewallCreateSecurityGroupRequest
impl UnwindSafe for ClusterFirewallCreateSecurityGroupRequest
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