Package org.jclouds.ec2.domain
Class PasswordData
- java.lang.Object
- 
- org.jclouds.ec2.domain.PasswordData
 
- 
 public class PasswordData extends Object The encrypted administrator password for an instance running Windows.NoteThe Windows password is only generated the first time an AMI is launched. It is not generated for rebundled AMIs or after the password is changed on an instance. The password is encrypted using the key pair that you provided.- See Also:
- doc
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classPasswordData.Builder
 - 
Field SummaryFields Modifier and Type Field Description protected StringinstanceIdprotected StringpasswordDataprotected Datetimestamp
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedPasswordData(String instanceId, Date timestamp, String passwordData)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PasswordData.Builderbuilder()booleanequals(Object obj)StringgetInstanceId()The ID of the instance.StringgetPasswordData()The password of the instance.DategetTimestamp()The time the data was last updated.inthashCode()PasswordData.BuildertoBuilder()StringtoString()
 
- 
- 
- 
Method Detail- 
builderpublic static PasswordData.Builder builder() 
 - 
toBuilderpublic PasswordData.Builder toBuilder() 
 - 
getInstanceIdpublic String getInstanceId() The ID of the instance.
 - 
getTimestamppublic Date getTimestamp() The time the data was last updated.
 - 
getPasswordDatapublic String getPasswordData() The password of the instance.
 
- 
 
-