public static interface AppValidationOutput.Builder extends SdkPojo, CopyableBuilder<AppValidationOutput.Builder,AppValidationOutput>
Modifier and Type | Method and Description |
---|---|
default AppValidationOutput.Builder |
ssmOutput(Consumer<SSMOutput.Builder> ssmOutput)
Output from using SSM to validate the application.
|
AppValidationOutput.Builder |
ssmOutput(SSMOutput ssmOutput)
Output from using SSM to validate the application.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
AppValidationOutput.Builder ssmOutput(SSMOutput ssmOutput)
Output from using SSM to validate the application.
ssmOutput
- Output from using SSM to validate the application.default AppValidationOutput.Builder ssmOutput(Consumer<SSMOutput.Builder> ssmOutput)
Output from using SSM to validate the application.
This is a convenience that creates an instance of theSSMOutput.Builder
avoiding the need to create
one manually via SSMOutput.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to ssmOutput(SSMOutput)
.ssmOutput
- a consumer that will call methods on SSMOutput.Builder
ssmOutput(SSMOutput)