Method: Fog::AWS::IAM::Real#delete_instance_profile

Defined in:
lib/fog/aws/requests/iam/delete_instance_profile.rb

#delete_instance_profile(instance_profile_name) ⇒ Object

Delete a instance_profile

Parameters

  • instance_profile_name<~String>: name of the instance_profile to delete

Returns

  • response<~Excon::Response>:

    • body<~Hash>:

      • ‘RequestId’<~String> - Id of the request

See Also

docs.amazonwebservices.com/IAM/latest/APIReference/API_DeleteInstanceProfile.html

[View source]

21
22
23
24
25
26
27
# File 'lib/fog/aws/requests/iam/delete_instance_profile.rb', line 21

def delete_instance_profile(instance_profile_name)
  request(
    'Action'    => 'DeleteInstanceProfile',
    'InstanceProfileName'  => instance_profile_name,
    :parser     => Fog::Parsers::AWS::IAM::Basic.new
  )
end