Class ApiDestination.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<ApiDestination>
- Enclosing class:
ApiDestination
ApiDestination
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
static ApiDestination.Builder
create
(IApiDestination apiDestination) deadLetterQueue
(IQueue deadLetterQueue) The SQS queue to be used as deadLetterQueue.event
(RuleTargetInput event) The event to send.The role to assume before invoking the target.headerParameters
(Map<String, String> headerParameters) Additional headers sent to the API Destination.maxEventAge
(Duration maxEventAge) The maximum age of a request that Lambda sends to a function for processing.pathParameterValues
(List<String> pathParameterValues) Path parameters to insert in place of path wildcards (*
).queryStringParameters
(Map<String, String> queryStringParameters) Additional query string parameters sent to the API Destination.retryAttempts
(Number retryAttempts) The maximum number of times to retry when the function returns an error.
-
Method Details
-
create
- Parameters:
apiDestination
- This parameter is required.- Returns:
- a new instance of
ApiDestination.Builder
.
-
deadLetterQueue
The SQS queue to be used as deadLetterQueue. Check out the considerations for using a dead-letter queue.The events not successfully delivered are automatically retried for a specified period of time, depending on the retry policy of the target. If an event is not delivered before all retry attempts are exhausted, it will be sent to the dead letter queue.
Default: - no dead-letter queue
- Parameters:
deadLetterQueue
- The SQS queue to be used as deadLetterQueue. Check out the considerations for using a dead-letter queue. This parameter is required.- Returns:
this
-
maxEventAge
The maximum age of a request that Lambda sends to a function for processing.Minimum value of 60. Maximum value of 86400.
Default: Duration.hours(24)
- Parameters:
maxEventAge
- The maximum age of a request that Lambda sends to a function for processing. This parameter is required.- Returns:
this
-
retryAttempts
The maximum number of times to retry when the function returns an error.Minimum value of 0. Maximum value of 185.
Default: 185
- Parameters:
retryAttempts
- The maximum number of times to retry when the function returns an error. This parameter is required.- Returns:
this
-
event
The event to send.Default: - the entire EventBridge event
- Parameters:
event
- The event to send. This parameter is required.- Returns:
this
-
eventRole
The role to assume before invoking the target.Default: - a new role will be created
- Parameters:
eventRole
- The role to assume before invoking the target. This parameter is required.- Returns:
this
-
headerParameters
@Stability(Stable) public ApiDestination.Builder headerParameters(Map<String, String> headerParameters) Additional headers sent to the API Destination.These are merged with headers specified on the Connection, with the headers on the Connection taking precedence.
You can only specify secret values on the Connection.
Default: - none
- Parameters:
headerParameters
- Additional headers sent to the API Destination. This parameter is required.- Returns:
this
-
pathParameterValues
@Stability(Stable) public ApiDestination.Builder pathParameterValues(List<String> pathParameterValues) Path parameters to insert in place of path wildcards (*
).If the API destination has a wilcard in the path, these path parts will be inserted in that place.
Default: - none
- Parameters:
pathParameterValues
- Path parameters to insert in place of path wildcards (*
). This parameter is required.- Returns:
this
-
queryStringParameters
@Stability(Stable) public ApiDestination.Builder queryStringParameters(Map<String, String> queryStringParameters) Additional query string parameters sent to the API Destination.These are merged with headers specified on the Connection, with the headers on the Connection taking precedence.
You can only specify secret values on the Connection.
Default: - none
- Parameters:
queryStringParameters
- Additional query string parameters sent to the API Destination. This parameter is required.- Returns:
this
-
build
- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<ApiDestination>
- Returns:
- a newly built instance of
ApiDestination
.
-