Interface GetDeploymentResponse.Builder
-
- All Superinterfaces:
ApiGatewayV2Response.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetDeploymentResponse.Builder,GetDeploymentResponse>,SdkBuilder<GetDeploymentResponse.Builder,GetDeploymentResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetDeploymentResponse
public static interface GetDeploymentResponse.Builder extends ApiGatewayV2Response.Builder, SdkPojo, CopyableBuilder<GetDeploymentResponse.Builder,GetDeploymentResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetDeploymentResponse.BuilderautoDeployed(Boolean autoDeployed)Specifies whether a deployment was automatically released.GetDeploymentResponse.BuildercreatedDate(Instant createdDate)The date and time when the Deployment resource was created.GetDeploymentResponse.BuilderdeploymentId(String deploymentId)The identifier for the deployment.GetDeploymentResponse.BuilderdeploymentStatus(String deploymentStatus)The status of the deployment: PENDING, FAILED, or SUCCEEDED.GetDeploymentResponse.BuilderdeploymentStatus(DeploymentStatus deploymentStatus)The status of the deployment: PENDING, FAILED, or SUCCEEDED.GetDeploymentResponse.BuilderdeploymentStatusMessage(String deploymentStatusMessage)May contain additional feedback on the status of an API deployment.GetDeploymentResponse.Builderdescription(String description)The description for the deployment.-
Methods inherited from interface software.amazon.awssdk.services.apigatewayv2.model.ApiGatewayV2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
autoDeployed
GetDeploymentResponse.Builder autoDeployed(Boolean autoDeployed)
Specifies whether a deployment was automatically released.
- Parameters:
autoDeployed- Specifies whether a deployment was automatically released.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
createdDate
GetDeploymentResponse.Builder createdDate(Instant createdDate)
The date and time when the Deployment resource was created.
- Parameters:
createdDate- The date and time when the Deployment resource was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deploymentId
GetDeploymentResponse.Builder deploymentId(String deploymentId)
The identifier for the deployment.
- Parameters:
deploymentId- The identifier for the deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deploymentStatus
GetDeploymentResponse.Builder deploymentStatus(String deploymentStatus)
The status of the deployment: PENDING, FAILED, or SUCCEEDED.
- Parameters:
deploymentStatus- The status of the deployment: PENDING, FAILED, or SUCCEEDED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
deploymentStatus
GetDeploymentResponse.Builder deploymentStatus(DeploymentStatus deploymentStatus)
The status of the deployment: PENDING, FAILED, or SUCCEEDED.
- Parameters:
deploymentStatus- The status of the deployment: PENDING, FAILED, or SUCCEEDED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DeploymentStatus,DeploymentStatus
-
deploymentStatusMessage
GetDeploymentResponse.Builder deploymentStatusMessage(String deploymentStatusMessage)
May contain additional feedback on the status of an API deployment.
- Parameters:
deploymentStatusMessage- May contain additional feedback on the status of an API deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetDeploymentResponse.Builder description(String description)
The description for the deployment.
- Parameters:
description- The description for the deployment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-