Class: Aws::EMR::Types::SetVisibleToAllUsersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::SetVisibleToAllUsersInput
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Note:
When making an API call, you may pass SetVisibleToAllUsersInput data as a hash:
{
job_flow_ids: ["XmlString"], # required
visible_to_all_users: false, # required
}
The input to the SetVisibleToAllUsers action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_flow_ids ⇒ Array<String>
The unique identifier of the job flow (cluster).
-
#visible_to_all_users ⇒ Boolean
A value of
true
indicates that an IAM principal in the Amazon Web Services account can perform EMR actions on the cluster that the IAM policies attached to the principal allow.
Instance Attribute Details
#job_flow_ids ⇒ Array<String>
The unique identifier of the job flow (cluster).
7124 7125 7126 7127 7128 7129 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7124 class SetVisibleToAllUsersInput < Struct.new( :job_flow_ids, :visible_to_all_users) SENSITIVE = [] include Aws::Structure end |
#visible_to_all_users ⇒ Boolean
A value of true
indicates that an IAM principal in the Amazon Web
Services account can perform 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 EMR actions on the
cluster.
7124 7125 7126 7127 7128 7129 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 7124 class SetVisibleToAllUsersInput < Struct.new( :job_flow_ids, :visible_to_all_users) SENSITIVE = [] include Aws::Structure end |