#[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 ==
.