Struct aws_sdk_codedeploy::input::PutLifecycleEventHookExecutionStatusInput [−][src]
#[non_exhaustive]pub struct PutLifecycleEventHookExecutionStatusInput {
pub deployment_id: Option<String>,
pub lifecycle_event_hook_execution_id: Option<String>,
pub status: Option<LifecycleEventStatus>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.deployment_id: Option<String>
The unique ID of a deployment. Pass this ID to a Lambda function that validates a deployment lifecycle event.
lifecycle_event_hook_execution_id: Option<String>
The execution ID of a deployment's lifecycle hook. A deployment lifecycle hook is
specified in the hooks
section of the AppSpec file.
status: Option<LifecycleEventStatus>
The result of a Lambda function that validates a deployment lifecycle event.
Succeeded
and Failed
are the only valid values for
status
.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutLifecycleEventHookExecutionStatus, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutLifecycleEventHookExecutionStatus, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutLifecycleEventHookExecutionStatus
>
Creates a new builder-style object to manufacture PutLifecycleEventHookExecutionStatusInput
The unique ID of a deployment. Pass this ID to a Lambda function that validates a deployment lifecycle event.
The execution ID of a deployment's lifecycle hook. A deployment lifecycle hook is
specified in the hooks
section of the AppSpec file.
The result of a Lambda function that validates a deployment lifecycle event.
Succeeded
and Failed
are the only valid values for
status
.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more