Class PutRecordResult
- java.lang.Object
-
- com.amazonaws.services.kinesisfirehose.model.PutRecordResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class PutRecordResult extends Object implements Serializable, Cloneable
Contains the output of PutRecord.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PutRecordResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutRecordResultclone()booleanequals(Object obj)StringgetRecordId()The ID of the record.inthashCode()voidsetRecordId(String recordId)The ID of the record.StringtoString()Returns a string representation of this object; useful for testing and debugging.PutRecordResultwithRecordId(String recordId)The ID of the record.
-
-
-
Method Detail
-
setRecordId
public void setRecordId(String recordId)
The ID of the record.
- Parameters:
recordId- The ID of the record.
-
getRecordId
public String getRecordId()
The ID of the record.
- Returns:
- The ID of the record.
-
withRecordId
public PutRecordResult withRecordId(String recordId)
The ID of the record.
- Parameters:
recordId- The ID of the record.- 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 PutRecordResult clone()
-
-