[][src]Struct rusoto_efs::PutFileSystemPolicyRequest

pub struct PutFileSystemPolicyRequest {
    pub bypass_policy_lockout_safety_check: Option<bool>,
    pub file_system_id: String,
    pub policy: String,
}

Fields

bypass_policy_lockout_safety_check: Option<bool>

(Optional) A flag to indicate whether to bypass the FileSystemPolicy lockout safety check. The policy lockout safety check determines whether the policy in the request will prevent the principal making the request will be locked out from making future PutFileSystemPolicy requests on the file system. Set BypassPolicyLockoutSafetyCheck to True only when you intend to prevent the principal that is making the request from making a subsequent PutFileSystemPolicy request on the file system. The default value is False.

file_system_id: String

The ID of the EFS file system that you want to create or update the FileSystemPolicy for.

policy: String

The FileSystemPolicy that you're creating. Accepts a JSON formatted policy definition. To find out more about the elements that make up a file system policy, see EFS Resource-based Policies.

Trait Implementations

impl Clone for PutFileSystemPolicyRequest[src]

impl Debug for PutFileSystemPolicyRequest[src]

impl Default for PutFileSystemPolicyRequest[src]

impl PartialEq<PutFileSystemPolicyRequest> for PutFileSystemPolicyRequest[src]

impl Serialize for PutFileSystemPolicyRequest[src]

impl StructuralPartialEq for PutFileSystemPolicyRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.