Enum IncludeDetail
- All Implemented Interfaces:
Serializable
,Comparable<IncludeDetail>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-22T11:33:06.759Z")
@Stability(Stable)
public enum IncludeDetail
extends Enum<IncludeDetail>
Whether EventBridge include detailed event information in the records it generates.
Detailed data can be useful for troubleshooting and debugging. This information includes details of the event itself, as well as target details.
Example:
import software.amazon.awscdk.services.events.EventBus; import software.amazon.awscdk.services.events.IncludeDetail; import software.amazon.awscdk.services.events.Level; EventBus bus = EventBus.Builder.create(this, "Bus") .logConfig(LogConfig.builder() .includeDetail(IncludeDetail.FULL) .level(Level.TRACE) .build()) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic IncludeDetail
Returns the enum constant of this type with the specified name.static IncludeDetail[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FULL
FULL: Include all details related to event itself and the request EventBridge sends to the target.Detailed data can be useful for troubleshooting and debugging.
-
NONE
NONE: Does not include any details.
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-