Class: Aws::EMR::Types::SetVisibleToAllUsersInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::SetVisibleToAllUsersInput
- Includes:
- Structure
- Defined in:
- 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.
Instance Attribute Summary collapse
-
#job_flow_ids ⇒ Array<String>
Identifiers of the job flows to receive the new visibility setting.
-
#visible_to_all_users ⇒ Boolean
Whether the specified clusters are visible to all IAM users of the AWS account associated with the cluster.
Instance Attribute Details
#job_flow_ids ⇒ Array<String>
Identifiers of the job flows to receive the new visibility setting.
4711 4712 4713 4714 4715 |
# File 'lib/aws-sdk-emr/types.rb', line 4711 class SetVisibleToAllUsersInput < Struct.new( :job_flow_ids, :visible_to_all_users) include Aws::Structure end |
#visible_to_all_users ⇒ Boolean
Whether the specified clusters are visible to all IAM users of the AWS account associated with the cluster. If this value is set to True, all IAM users of that AWS account can view and, if they have the proper IAM policy permissions set, manage the clusters. If it is set to False, only the IAM user that created a cluster can view and manage it.
4711 4712 4713 4714 4715 |
# File 'lib/aws-sdk-emr/types.rb', line 4711 class SetVisibleToAllUsersInput < Struct.new( :job_flow_ids, :visible_to_all_users) include Aws::Structure end |