public class User extends Object
Modifier and Type | Class and Description |
---|---|
static class |
User.Builder<T extends User.Builder<T>> |
Modifier | Constructor and Description |
---|---|
protected |
User(com.google.common.base.Optional<String> path,
com.google.common.base.Optional<String> name,
String id,
String arn,
Date createDate) |
Modifier and Type | Method and Description |
---|---|
static User.Builder<?> |
builder() |
boolean |
equals(Object obj) |
String |
getArn()
Although most resources have a friendly name (for example, a user named Bob or a group named
Developers), the access policy language requires you to specify the resource or resources
using the following Amazon Resource Name (ARN) format.
|
Date |
getCreateDate()
Date the user was created
|
String |
getId()
We assign each user, group, and server certificate a globally unique identifier (GUID), which
we return to you when you use the API or CLI to create it.
|
com.google.common.base.Optional<String> |
getName()
When you create a user, a role, or a group, or when you upload a server certificate, you give
it a friendly name, such as Bob, TestApp1, Developers, or ProdServerCert.
|
com.google.common.base.Optional<String> |
getPath()
you can also optionally give the entity a path that you define.
|
int |
hashCode() |
User.Builder<?> |
toBuilder() |
String |
toString() |
public static User.Builder<?> builder()
public User.Builder<?> toBuilder()
public com.google.common.base.Optional<String> getPath()
public com.google.common.base.Optional<String> getName()
public String getId()
public String getArn()
arn:aws:<service>:<region>:<namespace>:<relative-id>
public Date getCreateDate()
Copyright © 2009-2013 jclouds. All Rights Reserved.