iam/src/main/java/org/jclouds/iam/domain/InstanceProfile.java [53:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   public String getArn() {
      return arn;
   }

   /**
    * a globally unique identifier (GUID), returned from the api.
    */
   public String getId() {
      return id;
   }

   /**
    * friendly name ex. {@code Developers}
    */
   public String getName() {
      return name;
   }

   /**
    * path ex {@code  /division_abc/subdivision_xyz/product_1234/engineering/}
    */
   public String getPath() {
      return path;
   }

   /**
    * Date the instance profile was created
    */
   public Date getCreateDate() {
      return createDate;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



iam/src/main/java/org/jclouds/iam/domain/Role.java [53:82]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   public String getArn() {
      return arn;
   }

   /**
    * a globally unique identifier (GUID), returned from the api.
    */
   public String getId() {
      return id;
   }

   /**
    * friendly name ex. {@code Developers}
    */
   public String getName() {
      return name;
   }

   /**
    * path ex {@code  /division_abc/subdivision_xyz/product_1234/engineering/}
    */
   public String getPath() {
      return path;
   }

   /**
    * Date the role was created
    */
   public Date getCreateDate() {
      return createDate;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



