pub struct SetVisibleToAllUsersInput {
pub job_flow_ids: Vec<String>,
pub visible_to_all_users: bool,
}
Expand description
The input to the SetVisibleToAllUsers action.
Fields§
§job_flow_ids: Vec<String>
The unique identifier of the job flow (cluster).
visible_to_all_users: bool
A value of true
indicates that all IAM users in the AWS account can perform cluster actions if they have the proper IAM policy permissions. This is the default. A value of false
indicates that only the IAM user who created the cluster can perform actions.
Trait Implementations§
Source§impl Clone for SetVisibleToAllUsersInput
impl Clone for SetVisibleToAllUsersInput
Source§fn clone(&self) -> SetVisibleToAllUsersInput
fn clone(&self) -> SetVisibleToAllUsersInput
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 SetVisibleToAllUsersInput
impl Debug for SetVisibleToAllUsersInput
Source§impl Default for SetVisibleToAllUsersInput
impl Default for SetVisibleToAllUsersInput
Source§fn default() -> SetVisibleToAllUsersInput
fn default() -> SetVisibleToAllUsersInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for SetVisibleToAllUsersInput
Auto Trait Implementations§
impl Freeze for SetVisibleToAllUsersInput
impl RefUnwindSafe for SetVisibleToAllUsersInput
impl Send for SetVisibleToAllUsersInput
impl Sync for SetVisibleToAllUsersInput
impl Unpin for SetVisibleToAllUsersInput
impl UnwindSafe for SetVisibleToAllUsersInput
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