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 PutRecordResult
clone()
boolean
equals(Object obj)
String
getRecordId()
The ID of the record.int
hashCode()
void
setRecordId(String recordId)
The ID of the record.String
toString()
Returns a string representation of this object; useful for testing and debugging.PutRecordResult
withRecordId(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public PutRecordResult clone()
-
-