Enum HttpIntegrationSubtype
java.lang.Object
java.lang.Enum<HttpIntegrationSubtype>
software.amazon.awscdk.services.apigatewayv2.HttpIntegrationSubtype
- All Implemented Interfaces:
Serializable
,Comparable<HttpIntegrationSubtype>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:43.258Z")
@Stability(Experimental)
public enum HttpIntegrationSubtype
extends Enum<HttpIntegrationSubtype>
(experimental) Supported integration subtypes.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription(experimental) AppConfig GetConfiguration integration.(experimental) EventBridge PutEvents integration.(experimental) Kinesis PutRecord integration.(experimental) SQS DeleteMessage integration,.(experimental) SQS PurgeQueue integration.(experimental) SQS ReceiveMessage integration,.(experimental) SQS SendMessage integration.(experimental) Step Functions StartExecution integration.(experimental) Step Functions StartSyncExecution integration.(experimental) Step Functions StopExecution integration. -
Method Summary
Modifier and TypeMethodDescriptionstatic HttpIntegrationSubtype
Returns the enum constant of this type with the specified name.static HttpIntegrationSubtype[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EVENTBRIDGE_PUT_EVENTS
(experimental) EventBridge PutEvents integration. -
SQS_SEND_MESSAGE
(experimental) SQS SendMessage integration. -
SQS_RECEIVE_MESSAGE
(experimental) SQS ReceiveMessage integration,. -
SQS_DELETE_MESSAGE
(experimental) SQS DeleteMessage integration,. -
SQS_PURGE_QUEUE
(experimental) SQS PurgeQueue integration. -
APPCONFIG_GET_CONFIGURATION
(experimental) AppConfig GetConfiguration integration. -
KINESIS_PUT_RECORD
(experimental) Kinesis PutRecord integration. -
STEPFUNCTIONS_START_EXECUTION
(experimental) Step Functions StartExecution integration. -
STEPFUNCTIONS_START_SYNC_EXECUTION
@Stability(Experimental) public static final HttpIntegrationSubtype STEPFUNCTIONS_START_SYNC_EXECUTION(experimental) Step Functions StartSyncExecution integration. -
STEPFUNCTIONS_STOP_EXECUTION
(experimental) Step Functions StopExecution integration.
-
-
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
-