@Generated(value="software.amazon.awssdk:codegen") public final class GetEventSourceMappingResponse extends LambdaResponse implements ToCopyableBuilder<GetEventSourceMappingResponse.Builder,GetEventSourceMappingResponse>
Describes mapping between an Amazon Kinesis or DynamoDB stream or an Amazon SQS queue and a Lambda function.
Modifier and Type | Class and Description |
---|---|
static interface |
GetEventSourceMappingResponse.Builder |
Modifier and Type | Method and Description |
---|---|
Integer |
batchSize()
The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your
function.
|
static GetEventSourceMappingResponse.Builder |
builder() |
boolean |
equals(Object obj) |
String |
eventSourceArn()
The Amazon Resource Name (ARN) of the Amazon Kinesis or DynamoDB stream or the SQS queue that is the source of
events.
|
String |
functionArn()
The Lambda function to invoke when AWS Lambda detects an event on the poll-based source.
|
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
Instant |
lastModified()
The UTC time string indicating the last time the event mapping was updated.
|
String |
lastProcessingResult()
The result of the last AWS Lambda invocation of your Lambda function.
|
static Class<? extends GetEventSourceMappingResponse.Builder> |
serializableBuilderClass() |
String |
state()
The state of the event source mapping.
|
String |
stateTransitionReason()
The reason the event source mapping is in its current state.
|
GetEventSourceMappingResponse.Builder |
toBuilder() |
String |
toString() |
String |
uuid()
The AWS Lambda assigned opaque identifier for the mapping.
|
sdkHttpResponse
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
copy
public String uuid()
The AWS Lambda assigned opaque identifier for the mapping.
public Integer batchSize()
The largest number of records that AWS Lambda will retrieve from your event source at the time of invoking your function. Your function receives an event with all the retrieved records.
public String eventSourceArn()
The Amazon Resource Name (ARN) of the Amazon Kinesis or DynamoDB stream or the SQS queue that is the source of events.
public String functionArn()
The Lambda function to invoke when AWS Lambda detects an event on the poll-based source.
public Instant lastModified()
The UTC time string indicating the last time the event mapping was updated.
public String lastProcessingResult()
The result of the last AWS Lambda invocation of your Lambda function.
public String state()
The state of the event source mapping. It can be Creating
, Enabled
,
Disabled
, Enabling
, Disabling
, Updating
, or
Deleting
.
Creating
, Enabled
,
Disabled
, Enabling
, Disabling
, Updating
, or
Deleting
.public String stateTransitionReason()
The reason the event source mapping is in its current state. It is either user-requested or an AWS Lambda-initiated state transition.
public GetEventSourceMappingResponse.Builder toBuilder()
toBuilder
in interface ToCopyableBuilder<GetEventSourceMappingResponse.Builder,GetEventSourceMappingResponse>
toBuilder
in class AwsResponse
public static GetEventSourceMappingResponse.Builder builder()
public static Class<? extends GetEventSourceMappingResponse.Builder> serializableBuilderClass()
public <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
getValueForField
in class SdkResponse
Copyright © 2018. All rights reserved.