public static interface LambdaTarget.Builder extends SdkPojo, CopyableBuilder<LambdaTarget.Builder,LambdaTarget>
Modifier and Type | Method and Description |
---|---|
LambdaTarget.Builder |
deploymentId(String deploymentId)
The unique ID of a deployment.
|
LambdaTarget.Builder |
lastUpdatedAt(Instant lastUpdatedAt)
The date and time when the target Lambda function was updated by a deployment.
|
LambdaTarget.Builder |
lifecycleEvents(Collection<LifecycleEvent> lifecycleEvents)
The lifecycle events of the deployment to this target Lambda function.
|
LambdaTarget.Builder |
lifecycleEvents(Consumer<LifecycleEvent.Builder>... lifecycleEvents)
The lifecycle events of the deployment to this target Lambda function.
|
LambdaTarget.Builder |
lifecycleEvents(LifecycleEvent... lifecycleEvents)
The lifecycle events of the deployment to this target Lambda function.
|
LambdaTarget.Builder |
status(String status)
The status an AWS Lambda deployment's target Lambda function.
|
LambdaTarget.Builder |
status(TargetStatus status)
The status an AWS Lambda deployment's target Lambda function.
|
LambdaTarget.Builder |
targetArn(String targetArn)
The ARN of the target.
|
LambdaTarget.Builder |
targetId(String targetId)
The unique ID of a deployment target that has a type of
lambdaTarget . |
copy
applyMutation, build
LambdaTarget.Builder deploymentId(String deploymentId)
The unique ID of a deployment.
deploymentId
- The unique ID of a deployment.LambdaTarget.Builder targetId(String targetId)
The unique ID of a deployment target that has a type of lambdaTarget
.
targetId
- The unique ID of a deployment target that has a type of lambdaTarget
.LambdaTarget.Builder targetArn(String targetArn)
The ARN of the target.
targetArn
- The ARN of the target.LambdaTarget.Builder status(String status)
The status an AWS Lambda deployment's target Lambda function.
status
- The status an AWS Lambda deployment's target Lambda function.TargetStatus
,
TargetStatus
LambdaTarget.Builder status(TargetStatus status)
The status an AWS Lambda deployment's target Lambda function.
status
- The status an AWS Lambda deployment's target Lambda function.TargetStatus
,
TargetStatus
LambdaTarget.Builder lastUpdatedAt(Instant lastUpdatedAt)
The date and time when the target Lambda function was updated by a deployment.
lastUpdatedAt
- The date and time when the target Lambda function was updated by a deployment.LambdaTarget.Builder lifecycleEvents(Collection<LifecycleEvent> lifecycleEvents)
The lifecycle events of the deployment to this target Lambda function.
lifecycleEvents
- The lifecycle events of the deployment to this target Lambda function.LambdaTarget.Builder lifecycleEvents(LifecycleEvent... lifecycleEvents)
The lifecycle events of the deployment to this target Lambda function.
lifecycleEvents
- The lifecycle events of the deployment to this target Lambda function.LambdaTarget.Builder lifecycleEvents(Consumer<LifecycleEvent.Builder>... lifecycleEvents)
The lifecycle events of the deployment to this target Lambda function.
This is a convenience that creates an instance of theList.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #lifecycleEvents(List)
.lifecycleEvents
- a consumer that will call methods on List.Builder
#lifecycleEvents(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.