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