| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.ApiGatewayV2.Types.Deployment
Description
Synopsis
- data Deployment = Deployment' {}
- newDeployment :: Deployment
- deployment_autoDeployed :: Lens' Deployment (Maybe Bool)
- deployment_createdDate :: Lens' Deployment (Maybe UTCTime)
- deployment_deploymentId :: Lens' Deployment (Maybe Text)
- deployment_deploymentStatus :: Lens' Deployment (Maybe DeploymentStatus)
- deployment_deploymentStatusMessage :: Lens' Deployment (Maybe Text)
- deployment_description :: Lens' Deployment (Maybe Text)
Documentation
data Deployment Source #
An immutable representation of an API that can be called by users. A Deployment must be associated with a Stage for it to be callable over the internet.
See: newDeployment smart constructor.
Constructors
| Deployment' | |
Fields
| |
Instances
newDeployment :: Deployment Source #
Create a value of Deployment with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:autoDeployed:Deployment', deployment_autoDeployed - Specifies whether a deployment was automatically released.
$sel:createdDate:Deployment', deployment_createdDate - The date and time when the Deployment resource was created.
$sel:deploymentId:Deployment', deployment_deploymentId - The identifier for the deployment.
$sel:deploymentStatus:Deployment', deployment_deploymentStatus - The status of the deployment: PENDING, FAILED, or SUCCEEDED.
$sel:deploymentStatusMessage:Deployment', deployment_deploymentStatusMessage - May contain additional feedback on the status of an API deployment.
$sel:description:Deployment', deployment_description - The description for the deployment.
deployment_autoDeployed :: Lens' Deployment (Maybe Bool) Source #
Specifies whether a deployment was automatically released.
deployment_createdDate :: Lens' Deployment (Maybe UTCTime) Source #
The date and time when the Deployment resource was created.
deployment_deploymentId :: Lens' Deployment (Maybe Text) Source #
The identifier for the deployment.
deployment_deploymentStatus :: Lens' Deployment (Maybe DeploymentStatus) Source #
The status of the deployment: PENDING, FAILED, or SUCCEEDED.
deployment_deploymentStatusMessage :: Lens' Deployment (Maybe Text) Source #
May contain additional feedback on the status of an API deployment.
deployment_description :: Lens' Deployment (Maybe Text) Source #
The description for the deployment.