All Downloads are FREE. Search and download functionalities are using the official Maven repository.

awscala.iam.UserPolicy.scala Maven / Gradle / Ivy

There is a newer version: 0.8.3
Show newest version
package awscala.iam

import com.amazonaws.services.{ identitymanagement => aws }

object UserPolicy {
  def apply(user: User, r: aws.model.GetUserPolicyResult): UserPolicy = UserPolicy(
    user = user,
    name = r.getPolicyName,
    document = r.getPolicyDocument
  )
}

case class UserPolicy(user: User, name: String, document: String) {

  def destroy()(implicit iam: IAM) = iam.delete(this)
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy