PutLifecycleEventHookExecutionStatusInput

public struct PutLifecycleEventHookExecutionStatusInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique ID of a deployment. Pass this ID to a Lambda function that validates a deployment lifecycle event.

    Declaration

    Swift

    public let deploymentId: String?
  • The execution ID of a deployment’s lifecycle hook. A deployment lifecycle hook is specified in the hooks section of the AppSpec file.

    Declaration

    Swift

    public let lifecycleEventHookExecutionId: String?
  • The result of a Lambda function that validates a deployment lifecycle event (Succeeded or Failed).

    Declaration

    Swift

    public let status: LifecycleEventStatus?
  • Undocumented

    Declaration

    Swift

    public init(deploymentId: String? = nil, lifecycleEventHookExecutionId: String? = nil, status: LifecycleEventStatus? = nil)