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 GenerateCredentialReportResult
clone()
boolean
equals(Object obj)
String
getDescription()
Information about the credential report.String
getState()
Information about the state of the credential report.int
hashCode()
void
setDescription(String description)
Information about the credential report.void
setState(ReportStateType state)
Information about the state of the credential report.void
setState(String state)
Information about the state of the credential report.String
toString()
Returns a string representation of this object; useful for testing and debugging.GenerateCredentialReportResult
withDescription(String description)
Information about the credential report.GenerateCredentialReportResult
withState(ReportStateType state)
Information about the state of the credential report.GenerateCredentialReportResult
withState(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GenerateCredentialReportResult clone()
-
-