Package com.amazonaws.services.iot.model
Class RegisterCACertificateRequest
- java.lang.Object
-
- com.amazonaws.AmazonWebServiceRequest
-
- com.amazonaws.services.iot.model.RegisterCACertificateRequest
-
- All Implemented Interfaces:
ReadLimitInfo,Serializable,Cloneable
public class RegisterCACertificateRequest extends AmazonWebServiceRequest implements Serializable, Cloneable
The input to the RegisterCACertificate operation.
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.amazonaws.AmazonWebServiceRequest
NOOP
-
-
Constructor Summary
Constructors Constructor Description RegisterCACertificateRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegisterCACertificateRequestclone()Creates a shallow clone of this request.booleanequals(Object obj)StringgetCaCertificate()The CA certificate.BooleangetSetAsActive()A boolean value that specifies if the CA certificate is set to active.StringgetVerificationCertificate()The private key verification certificate.inthashCode()BooleanisSetAsActive()A boolean value that specifies if the CA certificate is set to active.voidsetCaCertificate(String caCertificate)The CA certificate.voidsetSetAsActive(Boolean setAsActive)A boolean value that specifies if the CA certificate is set to active.voidsetVerificationCertificate(String verificationCertificate)The private key verification certificate.StringtoString()Returns a string representation of this object; useful for testing and debugging.RegisterCACertificateRequestwithCaCertificate(String caCertificate)The CA certificate.RegisterCACertificateRequestwithSetAsActive(Boolean setAsActive)A boolean value that specifies if the CA certificate is set to active.RegisterCACertificateRequestwithVerificationCertificate(String verificationCertificate)The private key verification certificate.-
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyBaseTo, getCloneRoot, getCloneSource, getCustomQueryParameters, getCustomRequestHeaders, getGeneralProgressListener, getReadLimit, getRequestClientOptions, getRequestCredentials, getRequestCredentialsProvider, getRequestMetricCollector, getSdkClientExecutionTimeout, getSdkRequestTimeout, putCustomQueryParameter, putCustomRequestHeader, setGeneralProgressListener, setRequestCredentials, setRequestCredentialsProvider, setRequestMetricCollector, setSdkClientExecutionTimeout, setSdkRequestTimeout, withGeneralProgressListener, withRequestMetricCollector, withSdkClientExecutionTimeout, withSdkRequestTimeout
-
-
-
-
Method Detail
-
setCaCertificate
public void setCaCertificate(String caCertificate)
The CA certificate.
- Parameters:
caCertificate- The CA certificate.
-
getCaCertificate
public String getCaCertificate()
The CA certificate.
- Returns:
- The CA certificate.
-
withCaCertificate
public RegisterCACertificateRequest withCaCertificate(String caCertificate)
The CA certificate.
- Parameters:
caCertificate- The CA certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setVerificationCertificate
public void setVerificationCertificate(String verificationCertificate)
The private key verification certificate.
- Parameters:
verificationCertificate- The private key verification certificate.
-
getVerificationCertificate
public String getVerificationCertificate()
The private key verification certificate.
- Returns:
- The private key verification certificate.
-
withVerificationCertificate
public RegisterCACertificateRequest withVerificationCertificate(String verificationCertificate)
The private key verification certificate.
- Parameters:
verificationCertificate- The private key verification certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setSetAsActive
public void setSetAsActive(Boolean setAsActive)
A boolean value that specifies if the CA certificate is set to active.
- Parameters:
setAsActive- A boolean value that specifies if the CA certificate is set to active.
-
getSetAsActive
public Boolean getSetAsActive()
A boolean value that specifies if the CA certificate is set to active.
- Returns:
- A boolean value that specifies if the CA certificate is set to active.
-
withSetAsActive
public RegisterCACertificateRequest withSetAsActive(Boolean setAsActive)
A boolean value that specifies if the CA certificate is set to active.
- Parameters:
setAsActive- A boolean value that specifies if the CA certificate is set to active.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isSetAsActive
public Boolean isSetAsActive()
A boolean value that specifies if the CA certificate is set to active.
- Returns:
- A boolean value that specifies if the CA certificate is set to active.
-
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 RegisterCACertificateRequest clone()
Description copied from class:AmazonWebServiceRequestCreates a shallow clone of this request. Explicitly does not clone the deep structure of the request object.- Overrides:
clonein classAmazonWebServiceRequest- See Also:
Object.clone()
-
-