#[non_exhaustive]pub struct SetVisibleToAllUsersInput {
pub job_flow_ids: Option<Vec<String>>,
pub visible_to_all_users: Option<bool>,
}Expand description
The input to the SetVisibleToAllUsers action.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job_flow_ids: Option<Vec<String>>The unique identifier of the job flow (cluster).
visible_to_all_users: Option<bool>A value of true indicates that an IAM principal in the Amazon Web Services account can perform Amazon EMR actions on the cluster that the IAM policies attached to the principal allow. A value of false indicates that only the IAM principal that created the cluster and the Amazon Web Services root user can perform Amazon EMR actions on the cluster.
Implementations§
source§impl SetVisibleToAllUsersInput
impl SetVisibleToAllUsersInput
sourcepub fn job_flow_ids(&self) -> &[String]
pub fn job_flow_ids(&self) -> &[String]
The unique identifier of the job flow (cluster).
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .job_flow_ids.is_none().
sourcepub fn visible_to_all_users(&self) -> Option<bool>
pub fn visible_to_all_users(&self) -> Option<bool>
A value of true indicates that an IAM principal in the Amazon Web Services account can perform Amazon EMR actions on the cluster that the IAM policies attached to the principal allow. A value of false indicates that only the IAM principal that created the cluster and the Amazon Web Services root user can perform Amazon EMR actions on the cluster.
source§impl SetVisibleToAllUsersInput
impl SetVisibleToAllUsersInput
sourcepub fn builder() -> SetVisibleToAllUsersInputBuilder
pub fn builder() -> SetVisibleToAllUsersInputBuilder
Creates a new builder-style object to manufacture SetVisibleToAllUsersInput.
Trait Implementations§
source§impl Clone for SetVisibleToAllUsersInput
impl Clone for SetVisibleToAllUsersInput
source§fn clone(&self) -> SetVisibleToAllUsersInput
fn clone(&self) -> SetVisibleToAllUsersInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SetVisibleToAllUsersInput
impl Debug for SetVisibleToAllUsersInput
source§impl PartialEq for SetVisibleToAllUsersInput
impl PartialEq for SetVisibleToAllUsersInput
source§fn eq(&self, other: &SetVisibleToAllUsersInput) -> bool
fn eq(&self, other: &SetVisibleToAllUsersInput) -> bool
self and other values to be equal, and is used
by ==.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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more