public static interface ActionTypeExecutor.Builder extends SdkPojo, CopyableBuilder<ActionTypeExecutor.Builder,ActionTypeExecutor>
| Modifier and Type | Method and Description |
|---|---|
default ActionTypeExecutor.Builder |
configuration(Consumer<ExecutorConfiguration.Builder> configuration)
The action configuration properties for the action type.
|
ActionTypeExecutor.Builder |
configuration(ExecutorConfiguration configuration)
The action configuration properties for the action type.
|
ActionTypeExecutor.Builder |
jobTimeout(Integer jobTimeout)
The timeout in seconds for the job.
|
ActionTypeExecutor.Builder |
policyStatementsTemplate(String policyStatementsTemplate)
The policy statement that specifies the permissions in the CodePipeline customer account that are needed to
successfully run an action.
|
ActionTypeExecutor.Builder |
type(ExecutorType type)
The integration model used to create and update the action type,
Lambda or
JobWorker. |
ActionTypeExecutor.Builder |
type(String type)
The integration model used to create and update the action type,
Lambda or
JobWorker. |
equalsBySdkFields, sdkFieldscopyapplyMutation, buildActionTypeExecutor.Builder configuration(ExecutorConfiguration configuration)
The action configuration properties for the action type. These properties are specified in the action definition when the action type is created.
configuration - The action configuration properties for the action type. These properties are specified in the action
definition when the action type is created.default ActionTypeExecutor.Builder configuration(Consumer<ExecutorConfiguration.Builder> configuration)
The action configuration properties for the action type. These properties are specified in the action definition when the action type is created.
This is a convenience method that creates an instance of theExecutorConfiguration.Builder avoiding
the need to create one manually via ExecutorConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and
its result is passed to configuration(ExecutorConfiguration).
configuration - a consumer that will call methods on ExecutorConfiguration.Builderconfiguration(ExecutorConfiguration)ActionTypeExecutor.Builder type(String type)
The integration model used to create and update the action type, Lambda or
JobWorker.
type - The integration model used to create and update the action type, Lambda or
JobWorker.ExecutorType,
ExecutorTypeActionTypeExecutor.Builder type(ExecutorType type)
The integration model used to create and update the action type, Lambda or
JobWorker.
type - The integration model used to create and update the action type, Lambda or
JobWorker.ExecutorType,
ExecutorTypeActionTypeExecutor.Builder policyStatementsTemplate(String policyStatementsTemplate)
The policy statement that specifies the permissions in the CodePipeline customer account that are needed to successfully run an action.
To grant permission to another account, specify the account ID as the Principal, a domain-style identifier
defined by the service, for example codepipeline.amazonaws.com.
The size of the passed JSON policy document cannot exceed 2048 characters.
policyStatementsTemplate - The policy statement that specifies the permissions in the CodePipeline customer account that are
needed to successfully run an action.
To grant permission to another account, specify the account ID as the Principal, a domain-style
identifier defined by the service, for example codepipeline.amazonaws.com.
The size of the passed JSON policy document cannot exceed 2048 characters.
ActionTypeExecutor.Builder jobTimeout(Integer jobTimeout)
The timeout in seconds for the job. An action execution can have multiple jobs. This is the timeout for a single job, not the entire action execution.
jobTimeout - The timeout in seconds for the job. An action execution can have multiple jobs. This is the timeout
for a single job, not the entire action execution.Copyright © 2023. All rights reserved.