Struct aws_sdk_codepipeline::model::ExecutorConfiguration
source · #[non_exhaustive]pub struct ExecutorConfiguration { /* private fields */ }
Expand description
The action engine, or executor, related to the supported integration model used to create and update the action type. The available executor types are Lambda
and JobWorker
.
Implementations§
source§impl ExecutorConfiguration
impl ExecutorConfiguration
sourcepub fn lambda_executor_configuration(
&self
) -> Option<&LambdaExecutorConfiguration>
pub fn lambda_executor_configuration(
&self
) -> Option<&LambdaExecutorConfiguration>
Details about the Lambda
executor of the action type.
sourcepub fn job_worker_executor_configuration(
&self
) -> Option<&JobWorkerExecutorConfiguration>
pub fn job_worker_executor_configuration(
&self
) -> Option<&JobWorkerExecutorConfiguration>
Details about the JobWorker
executor of the action type.
source§impl ExecutorConfiguration
impl ExecutorConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExecutorConfiguration
.
Trait Implementations§
source§impl Clone for ExecutorConfiguration
impl Clone for ExecutorConfiguration
source§fn clone(&self) -> ExecutorConfiguration
fn clone(&self) -> ExecutorConfiguration
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more