public class CreateFlowLogsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the output of CreateFlowLogs.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
clientToken
Unique, case-sensitive identifier you provide to ensure the idempotency
of the request.
|
private SdkInternalList<java.lang.String> |
flowLogIds
The IDs of the flow logs.
|
private SdkInternalList<UnsuccessfulItem> |
unsuccessful
Information about the flow logs that could not be created successfully.
|
Constructor and Description |
---|
CreateFlowLogsResult() |
Modifier and Type | Method and Description |
---|---|
CreateFlowLogsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getClientToken()
Unique, case-sensitive identifier you provide to ensure the idempotency
of the request.
|
java.util.List<java.lang.String> |
getFlowLogIds()
The IDs of the flow logs.
|
java.util.List<UnsuccessfulItem> |
getUnsuccessful()
Information about the flow logs that could not be created successfully.
|
int |
hashCode() |
void |
setClientToken(java.lang.String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency
of the request.
|
void |
setFlowLogIds(java.util.Collection<java.lang.String> flowLogIds)
The IDs of the flow logs.
|
void |
setUnsuccessful(java.util.Collection<UnsuccessfulItem> unsuccessful)
Information about the flow logs that could not be created successfully.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateFlowLogsResult |
withClientToken(java.lang.String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency
of the request.
|
CreateFlowLogsResult |
withFlowLogIds(java.util.Collection<java.lang.String> flowLogIds)
The IDs of the flow logs.
|
CreateFlowLogsResult |
withFlowLogIds(java.lang.String... flowLogIds)
The IDs of the flow logs.
|
CreateFlowLogsResult |
withUnsuccessful(java.util.Collection<UnsuccessfulItem> unsuccessful)
Information about the flow logs that could not be created successfully.
|
CreateFlowLogsResult |
withUnsuccessful(UnsuccessfulItem... unsuccessful)
Information about the flow logs that could not be created successfully.
|
private SdkInternalList<java.lang.String> flowLogIds
The IDs of the flow logs.
private java.lang.String clientToken
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
private SdkInternalList<UnsuccessfulItem> unsuccessful
Information about the flow logs that could not be created successfully.
public java.util.List<java.lang.String> getFlowLogIds()
The IDs of the flow logs.
public void setFlowLogIds(java.util.Collection<java.lang.String> flowLogIds)
The IDs of the flow logs.
flowLogIds
- The IDs of the flow logs.public CreateFlowLogsResult withFlowLogIds(java.lang.String... flowLogIds)
The IDs of the flow logs.
NOTE: This method appends the values to the existing list (if
any). Use setFlowLogIds(java.util.Collection)
or
withFlowLogIds(java.util.Collection)
if you want to override the
existing values.
flowLogIds
- The IDs of the flow logs.public CreateFlowLogsResult withFlowLogIds(java.util.Collection<java.lang.String> flowLogIds)
The IDs of the flow logs.
flowLogIds
- The IDs of the flow logs.public void setClientToken(java.lang.String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
clientToken
- Unique, case-sensitive identifier you provide to ensure the
idempotency of the request.public java.lang.String getClientToken()
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
public CreateFlowLogsResult withClientToken(java.lang.String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
clientToken
- Unique, case-sensitive identifier you provide to ensure the
idempotency of the request.public java.util.List<UnsuccessfulItem> getUnsuccessful()
Information about the flow logs that could not be created successfully.
public void setUnsuccessful(java.util.Collection<UnsuccessfulItem> unsuccessful)
Information about the flow logs that could not be created successfully.
unsuccessful
- Information about the flow logs that could not be created
successfully.public CreateFlowLogsResult withUnsuccessful(UnsuccessfulItem... unsuccessful)
Information about the flow logs that could not be created successfully.
NOTE: This method appends the values to the existing list (if
any). Use setUnsuccessful(java.util.Collection)
or
withUnsuccessful(java.util.Collection)
if you want to override
the existing values.
unsuccessful
- Information about the flow logs that could not be created
successfully.public CreateFlowLogsResult withUnsuccessful(java.util.Collection<UnsuccessfulItem> unsuccessful)
Information about the flow logs that could not be created successfully.
unsuccessful
- Information about the flow logs that could not be created
successfully.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public CreateFlowLogsResult clone()
clone
in class java.lang.Object