Class GenerateCredentialReportResult
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.GenerateCredentialReportResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GenerateCredentialReportResult extends Object implements Serializable, Cloneable
Contains the response to a successful GenerateCredentialReport request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GenerateCredentialReportResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GenerateCredentialReportResultclone()booleanequals(Object obj)StringgetDescription()Information about the credential report.StringgetState()Information about the state of the credential report.inthashCode()voidsetDescription(String description)Information about the credential report.voidsetState(ReportStateType state)Information about the state of the credential report.voidsetState(String state)Information about the state of the credential report.StringtoString()Returns a string representation of this object; useful for testing and debugging.GenerateCredentialReportResultwithDescription(String description)Information about the credential report.GenerateCredentialReportResultwithState(ReportStateType state)Information about the state of the credential report.GenerateCredentialReportResultwithState(String state)Information about the state of the credential report.
-
-
-
Method Detail
-
setState
public void setState(String state)
Information about the state of the credential report.
- Parameters:
state- Information about the state of the credential report.- See Also:
ReportStateType
-
getState
public String getState()
Information about the state of the credential report.
- Returns:
- Information about the state of the credential report.
- See Also:
ReportStateType
-
withState
public GenerateCredentialReportResult withState(String state)
Information about the state of the credential report.
- Parameters:
state- Information about the state of the credential report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportStateType
-
setState
public void setState(ReportStateType state)
Information about the state of the credential report.
- Parameters:
state- Information about the state of the credential report.- See Also:
ReportStateType
-
withState
public GenerateCredentialReportResult withState(ReportStateType state)
Information about the state of the credential report.
- Parameters:
state- Information about the state of the credential report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportStateType
-
setDescription
public void setDescription(String description)
Information about the credential report.
- Parameters:
description- Information about the credential report.
-
getDescription
public String getDescription()
Information about the credential report.
- Returns:
- Information about the credential report.
-
withDescription
public GenerateCredentialReportResult withDescription(String description)
Information about the credential report.
- Parameters:
description- Information about the credential report.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GenerateCredentialReportResult clone()
-
-