Struct aws_sdk_greengrass::types::FunctionRunAsConfig
source · #[non_exhaustive]pub struct FunctionRunAsConfig {
pub gid: Option<i32>,
pub uid: Option<i32>,
}
Expand description
Specifies the user and group whose permissions are used when running the Lambda function. You can specify one or both values to override the default values. We recommend that you avoid running as root unless absolutely necessary to minimize the risk of unintended changes or malicious attacks. To run as root, you must set ’‘IsolationMode’’ to ’‘NoContainer’’ and update config.json in ’‘greengrass-root/config’’ to set ’‘allowFunctionsToRunAsRoot’’ to ’‘yes’’.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.gid: Option<i32>
The group ID whose permissions are used to run a Lambda function.
uid: Option<i32>
The user ID whose permissions are used to run a Lambda function.
Implementations§
source§impl FunctionRunAsConfig
impl FunctionRunAsConfig
sourcepub fn builder() -> FunctionRunAsConfigBuilder
pub fn builder() -> FunctionRunAsConfigBuilder
Creates a new builder-style object to manufacture FunctionRunAsConfig
.
Trait Implementations§
source§impl Clone for FunctionRunAsConfig
impl Clone for FunctionRunAsConfig
source§fn clone(&self) -> FunctionRunAsConfig
fn clone(&self) -> FunctionRunAsConfig
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 FunctionRunAsConfig
impl Debug for FunctionRunAsConfig
source§impl PartialEq for FunctionRunAsConfig
impl PartialEq for FunctionRunAsConfig
source§fn eq(&self, other: &FunctionRunAsConfig) -> bool
fn eq(&self, other: &FunctionRunAsConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FunctionRunAsConfig
Auto Trait Implementations§
impl RefUnwindSafe for FunctionRunAsConfig
impl Send for FunctionRunAsConfig
impl Sync for FunctionRunAsConfig
impl Unpin for FunctionRunAsConfig
impl UnwindSafe for FunctionRunAsConfig
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.