Method: Fog::AWS::IAM::Real#remove_role_from_instance_profile
- Defined in:
- lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb
#remove_role_from_instance_profile(role_name, instance_profile_name) ⇒ Object
removes a role from an instance profile
Make sure you do not have any Amazon EC2 instances running with the role you are about to remove from the instance profile.
Parameters
-
instance_profile_name<~String>: Name of the instance profile to update.
-
role_name<~String>:Name of the role to remove.
Returns
-
response<~Excon::Response>:
-
body<~Hash>:
-
‘RequestId’<~String> - Id of the request
-
-
See Also
docs.amazonwebservices.com/IAM/latest/APIReference/API_RemoveRoleFromInstanceProfile.html
23 24 25 26 27 28 29 30 |
# File 'lib/fog/aws/requests/iam/remove_role_from_instance_profile.rb', line 23 def remove_role_from_instance_profile(role_name, instance_profile_name) request( 'Action' => 'RemoveRoleFromInstanceProfile', 'InstanceProfileName' => instance_profile_name, 'RoleName' => role_name, :parser => Fog::Parsers::AWS::IAM::Basic.new ) end |