~ubuntu-branches/ubuntu/trusty/awscli/trusty-proposed

« back to all changes in this revision

Viewing changes to awscli/examples/iam/remove-role-from-instance-profile.rst

  • Committer: Package Import Robot
  • Author(s): TANIGUCHI Takaki
  • Date: 2014-01-05 23:04:16 UTC
  • Revision ID: package-import@ubuntu.com-20140105230416-ic7sa0dzthe7f7vs
Tags: upstream-1.2.9
ImportĀ upstreamĀ versionĀ 1.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
**To remove a role from an instance profile**
 
2
 
 
3
The following ``remove-role-from-instance-profile`` command removes the role named ``Test-Role`` from the instance
 
4
profile named ``ExampleInstanceProfile``::
 
5
 
 
6
  aws iam remove-role-from-instance-profile --instance-profile-name ExampleInstanceProfile --role-name Test-Role
 
7
 
 
8
For more information, see `Instance Profiles`_ in the *Using IAM* guide.
 
9
 
 
10
.. _`Instance Profiles`: http://docs.aws.amazon.com/IAM/latest/UserGuide/instance-profiles.html
 
11