Difference between revisions of "Aws iam create-policy"

From wikieduonline
Jump to navigation Jump to search
 
(4 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
  [[aws iam]] create-policy
 
  [[aws iam]] create-policy
  
Official example:
+
== Official example ==
 
  aws iam create-policy --policy-name my-policy --policy-document file://policy
 
  aws iam create-policy --policy-name my-policy --policy-document file://policy
  
Line 22: Line 22:
 
  }
 
  }
  
 +
== Related ==
 +
* <code>[[aws iam attach-role-policy]]</code>
 +
* <code>[[aws_iam_policy]]</code>
  
 
== See also ==
 
== See also ==
 
* {{aws iam policies}}
 
* {{aws iam policies}}
 +
* {{AWS managed policies}}
  
 
[[Category:AWS]]
 
[[Category:AWS]]

Latest revision as of 15:31, 24 October 2023

https://awscli.amazonaws.com/v2/documentation/api/latest/reference/iam/create-policy.html

aws iam create-policy

Official example[edit]

aws iam create-policy --policy-name my-policy --policy-document file://policy
Output:
{
   "Policy": {
       "PolicyName": "my-policy",
       "PolicyId": "ANPAYAQ3JJAXITP2KM77X",
       "Arn": "arn:aws:iam::123456789:policy/my-policy",
       "Path": "/",
       "DefaultVersionId": "v1",
       "AttachmentCount": 0,
       "PermissionsBoundaryUsageCount": 0,
       "IsAttachable": true,
       "CreateDate": "2022-04-11T12:08:56+00:00",
       "UpdateDate": "2022-04-11T12:08:56+00:00"
   }
}

Related[edit]

See also[edit]

Advertising: