Interface ProvisioningHook.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ProvisioningHook.Builder,ProvisioningHook>
,SdkBuilder<ProvisioningHook.Builder,ProvisioningHook>
,SdkPojo
- Enclosing class:
- ProvisioningHook
public static interface ProvisioningHook.Builder extends SdkPojo, CopyableBuilder<ProvisioningHook.Builder,ProvisioningHook>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProvisioningHook.Builder
payloadVersion(String payloadVersion)
The payload that was sent to the target function.ProvisioningHook.Builder
targetArn(String targetArn)
The ARN of the target function.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
payloadVersion
ProvisioningHook.Builder payloadVersion(String payloadVersion)
The payload that was sent to the target function.
Note: Only Lambda functions are currently supported.
- Parameters:
payloadVersion
- The payload that was sent to the target function.Note: Only Lambda functions are currently supported.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetArn
ProvisioningHook.Builder targetArn(String targetArn)
The ARN of the target function.
Note: Only Lambda functions are currently supported.
- Parameters:
targetArn
- The ARN of the target function.Note: Only Lambda functions are currently supported.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-