Interface GetIntegrationRulesRequestBuilder
public interface GetIntegrationRulesRequestBuilder
Provides methods to build a
GetIntegrationRulesRequest
; built from
IntegrationRuleService.newGetIntegrationRulesRequestBuilder()
.-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Create aGetIntegrationRulesRequest
based on the set parameters.withConnectionId
(String connectionId) Required: Sets the connection ID.withIntegrationPointAPIName
(String integrationPointAPIName) Optional: Sets the integration point API Name.
-
Method Details
-
withConnectionId
Required: Sets the connection ID. Must be set before callingbuild()
.- Parameters:
connectionId
- the connection ID. Cannot be null.- Returns:
- GetIntegrationRulesRequestBuilder contract object
-
withIntegrationPointAPIName
Optional: Sets the integration point API Name.If set, this request object will be specific for integration rules tied to the connection ID and the integration point API Name. Otherwise, if omitted, the request object will be for integration rules that are tied to the connection ID only.
- Parameters:
integrationPointAPIName
- Integration Point API Name. Cannot be null.- Returns:
GetIntegrationRulesRequestBuilder
contract object
-
build
GetIntegrationRulesRequest build()Create aGetIntegrationRulesRequest
based on the set parameters.If any required parameters are not set, this will throw an exception.
- Returns:
- a
GetIntegrationRulesRequest
contract object
-