Class CreateHsmResult
- java.lang.Object
-
- com.amazonaws.services.cloudhsm.model.CreateHsmResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateHsmResult extends Object implements Serializable, Cloneable
Contains the output of the CreateHsm operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateHsmResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateHsmResult
clone()
boolean
equals(Object obj)
String
getHsmArn()
The ARN of the HSM.int
hashCode()
void
setHsmArn(String hsmArn)
The ARN of the HSM.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateHsmResult
withHsmArn(String hsmArn)
The ARN of the HSM.
-
-
-
Method Detail
-
setHsmArn
public void setHsmArn(String hsmArn)
The ARN of the HSM.
- Parameters:
hsmArn
- The ARN of the HSM.
-
getHsmArn
public String getHsmArn()
The ARN of the HSM.
- Returns:
- The ARN of the HSM.
-
withHsmArn
public CreateHsmResult withHsmArn(String hsmArn)
The ARN of the HSM.
- Parameters:
hsmArn
- The ARN of the HSM.- 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 CreateHsmResult clone()
-
-