Enum PipeVariable
- All Implemented Interfaces:
Serializable
,Comparable<PipeVariable>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:41.772Z")
@Stability(Experimental)
public enum PipeVariable
extends Enum<PipeVariable>
(experimental) Reserved pipe variables.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(experimental) The Amazon Resource Name (ARN) of the pipe.(experimental) The ARN of the enrichment of the pipe.(experimental) The event as received by the input transformer.(experimental) The time at which the event was received by the input transformer.(experimental) The same as aws.pipes.event, but the variable only has a value if the original payload, either from the source or returned by the enrichment, is JSON.(experimental) The name of the pipe.(experimental) The ARN of the event source of the pipe.(experimental) The ARN of the target of the pipe. -
Method Summary
Modifier and TypeMethodDescriptionstatic PipeVariable
Returns the enum constant of this type with the specified name.static PipeVariable[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ARN
(experimental) The Amazon Resource Name (ARN) of the pipe. -
NAME
(experimental) The name of the pipe. -
SOURCE_ARN
(experimental) The ARN of the event source of the pipe. -
ENRICHMENT_ARN
(experimental) The ARN of the enrichment of the pipe. -
TARGET_ARN
(experimental) The ARN of the target of the pipe. -
EVENT_INGESTION_TIME
(experimental) The time at which the event was received by the input transformer.This is an ISO 8601 timestamp. This time is different for the enrichment input transformer and the target input transformer, depending on when the enrichment completed processing the event.
-
EVENT
(experimental) The event as received by the input transformer. -
EVENT_JSON
(experimental) The same as aws.pipes.event, but the variable only has a value if the original payload, either from the source or returned by the enrichment, is JSON. If the pipe has an encoded field, such as the Amazon SQS body field or the Kinesis data, those fields are decoded and turned into valid JSON. Because it isn't escaped, the variable can only be used as a value for a JSON field. For more information, see Implicit body data parsing.
-
-
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
-