Enum StartingPosition
- All Implemented Interfaces:
- Serializable,- Comparable<StartingPosition>,- java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:40.848Z")
@Stability(Stable)
public enum StartingPosition
extends Enum<StartingPosition>
The position in the DynamoDB, Kinesis or MSK stream where AWS Lambda should start reading.
 
Example:
 import software.amazon.awscdk.services.secretsmanager.Secret;
 import software.amazon.awscdk.services.lambda.eventsources.SelfManagedKafkaEventSource;
 // The secret that allows access to your self hosted Kafka cluster
 Secret secret;
 Function myFunction;
 // The list of Kafka brokers
 String[] bootstrapServers = List.of("kafka-broker:9092");
 // The Kafka topic you want to subscribe to
 String topic = "some-cool-topic";
 myFunction.addEventSource(SelfManagedKafkaEventSource.Builder.create()
         .bootstrapServers(bootstrapServers)
         .topic(topic)
         .secret(secret)
         .batchSize(100) // default
         .startingPosition(StartingPosition.TRIM_HORIZON)
         .build());
 - 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionStart reading just after the most recent record in the shard, so that you always read the most recent data in the shard.Start reading at the last untrimmed record in the shard in the system, which is the oldest data record in the shard.
- 
Method SummaryModifier and TypeMethodDescriptionstatic StartingPositionReturns the enum constant of this type with the specified name.static StartingPosition[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
TRIM_HORIZONStart reading at the last untrimmed record in the shard in the system, which is the oldest data record in the shard.
- 
LATESTStart reading just after the most recent record in the shard, so that you always read the most recent data in the shard.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-