How is an amazon resource name made up in aws?



  • Link to AWS Documentation on IAM: https://docs.aws.amazon.com/IAM/latest/UserGuide/introduction.html

    Simple names like user name Bob point to an Amazon Resource Name or (ARN). The format is as follows:

    arn:partition:service:region:account:resource

    The delimiter is colon.

    e.g: arn:aws:iam::123456789012:user/Bob

    The partitions is normally aws or aws-cn for China.

    The service is for identity management is iam.

    The regions is normally left blank.

    The AWS account number, without hyphens, 123456789012

    The resource user/Bob

    You can find different example in the AWS documentation.


Log in to reply
 

© Lightnetics 2024