Package com.amazonaws.services.iot.model
Class RegisterCertificateResult
- java.lang.Object
-
- com.amazonaws.services.iot.model.RegisterCertificateResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class RegisterCertificateResult extends Object implements Serializable, Cloneable
The output from the RegisterCertificate operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegisterCertificateResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegisterCertificateResult
clone()
boolean
equals(Object obj)
String
getCertificateArn()
The certificate ARN.String
getCertificateId()
The certificate identifier.int
hashCode()
void
setCertificateArn(String certificateArn)
The certificate ARN.void
setCertificateId(String certificateId)
The certificate identifier.String
toString()
Returns a string representation of this object; useful for testing and debugging.RegisterCertificateResult
withCertificateArn(String certificateArn)
The certificate ARN.RegisterCertificateResult
withCertificateId(String certificateId)
The certificate identifier.
-
-
-
Method Detail
-
setCertificateArn
public void setCertificateArn(String certificateArn)
The certificate ARN.
- Parameters:
certificateArn
- The certificate ARN.
-
getCertificateArn
public String getCertificateArn()
The certificate ARN.
- Returns:
- The certificate ARN.
-
withCertificateArn
public RegisterCertificateResult withCertificateArn(String certificateArn)
The certificate ARN.
- Parameters:
certificateArn
- The certificate ARN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCertificateId
public void setCertificateId(String certificateId)
The certificate identifier.
- Parameters:
certificateId
- The certificate identifier.
-
getCertificateId
public String getCertificateId()
The certificate identifier.
- Returns:
- The certificate identifier.
-
withCertificateId
public RegisterCertificateResult withCertificateId(String certificateId)
The certificate identifier.
- Parameters:
certificateId
- The certificate identifier.- 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 RegisterCertificateResult clone()
-
-