Struct aws_sdk_codedeploy::model::deployment_info::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeploymentInfo
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn application_name(self, input: impl Into<String>) -> Self
pub fn application_name(self, input: impl Into<String>) -> Self
The application name.
sourcepub fn set_application_name(self, input: Option<String>) -> Self
pub fn set_application_name(self, input: Option<String>) -> Self
The application name.
sourcepub fn deployment_group_name(self, input: impl Into<String>) -> Self
pub fn deployment_group_name(self, input: impl Into<String>) -> Self
The deployment group name.
sourcepub fn set_deployment_group_name(self, input: Option<String>) -> Self
pub fn set_deployment_group_name(self, input: Option<String>) -> Self
The deployment group name.
sourcepub fn deployment_config_name(self, input: impl Into<String>) -> Self
pub fn deployment_config_name(self, input: impl Into<String>) -> Self
The deployment configuration name.
sourcepub fn set_deployment_config_name(self, input: Option<String>) -> Self
pub fn set_deployment_config_name(self, input: Option<String>) -> Self
The deployment configuration name.
sourcepub fn deployment_id(self, input: impl Into<String>) -> Self
pub fn deployment_id(self, input: impl Into<String>) -> Self
The unique ID of a deployment.
sourcepub fn set_deployment_id(self, input: Option<String>) -> Self
pub fn set_deployment_id(self, input: Option<String>) -> Self
The unique ID of a deployment.
sourcepub fn previous_revision(self, input: RevisionLocation) -> Self
pub fn previous_revision(self, input: RevisionLocation) -> Self
Information about the application revision that was deployed to the deployment group before the most recent successful deployment.
sourcepub fn set_previous_revision(self, input: Option<RevisionLocation>) -> Self
pub fn set_previous_revision(self, input: Option<RevisionLocation>) -> Self
Information about the application revision that was deployed to the deployment group before the most recent successful deployment.
sourcepub fn revision(self, input: RevisionLocation) -> Self
pub fn revision(self, input: RevisionLocation) -> Self
Information about the location of stored application artifacts and the service from which to retrieve them.
sourcepub fn set_revision(self, input: Option<RevisionLocation>) -> Self
pub fn set_revision(self, input: Option<RevisionLocation>) -> Self
Information about the location of stored application artifacts and the service from which to retrieve them.
sourcepub fn status(self, input: DeploymentStatus) -> Self
pub fn status(self, input: DeploymentStatus) -> Self
The current state of the deployment as a whole.
sourcepub fn set_status(self, input: Option<DeploymentStatus>) -> Self
pub fn set_status(self, input: Option<DeploymentStatus>) -> Self
The current state of the deployment as a whole.
sourcepub fn error_information(self, input: ErrorInformation) -> Self
pub fn error_information(self, input: ErrorInformation) -> Self
Information about any error associated with this deployment.
sourcepub fn set_error_information(self, input: Option<ErrorInformation>) -> Self
pub fn set_error_information(self, input: Option<ErrorInformation>) -> Self
Information about any error associated with this deployment.
sourcepub fn create_time(self, input: DateTime) -> Self
pub fn create_time(self, input: DateTime) -> Self
A timestamp that indicates when the deployment was created.
sourcepub fn set_create_time(self, input: Option<DateTime>) -> Self
pub fn set_create_time(self, input: Option<DateTime>) -> Self
A timestamp that indicates when the deployment was created.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
A timestamp that indicates when the deployment was deployed to the deployment group.
In some cases, the reported value of the start time might be later than the complete time. This is due to differences in the clock settings of backend servers that participate in the deployment process.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
A timestamp that indicates when the deployment was deployed to the deployment group.
In some cases, the reported value of the start time might be later than the complete time. This is due to differences in the clock settings of backend servers that participate in the deployment process.
sourcepub fn complete_time(self, input: DateTime) -> Self
pub fn complete_time(self, input: DateTime) -> Self
A timestamp that indicates when the deployment was complete.
sourcepub fn set_complete_time(self, input: Option<DateTime>) -> Self
pub fn set_complete_time(self, input: Option<DateTime>) -> Self
A timestamp that indicates when the deployment was complete.
sourcepub fn deployment_overview(self, input: DeploymentOverview) -> Self
pub fn deployment_overview(self, input: DeploymentOverview) -> Self
A summary of the deployment status of the instances in the deployment.
sourcepub fn set_deployment_overview(self, input: Option<DeploymentOverview>) -> Self
pub fn set_deployment_overview(self, input: Option<DeploymentOverview>) -> Self
A summary of the deployment status of the instances in the deployment.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A comment about the deployment.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A comment about the deployment.
sourcepub fn creator(self, input: DeploymentCreator) -> Self
pub fn creator(self, input: DeploymentCreator) -> Self
The means by which the deployment was created:
-
user
: A user created the deployment. -
autoscaling
: Amazon EC2 Auto Scaling created the deployment. -
codeDeployRollback
: A rollback process created the deployment. -
CodeDeployAutoUpdate
: An auto-update process created the deployment when it detected outdated Amazon EC2 instances.
sourcepub fn set_creator(self, input: Option<DeploymentCreator>) -> Self
pub fn set_creator(self, input: Option<DeploymentCreator>) -> Self
The means by which the deployment was created:
-
user
: A user created the deployment. -
autoscaling
: Amazon EC2 Auto Scaling created the deployment. -
codeDeployRollback
: A rollback process created the deployment. -
CodeDeployAutoUpdate
: An auto-update process created the deployment when it detected outdated Amazon EC2 instances.
sourcepub fn ignore_application_stop_failures(self, input: bool) -> Self
pub fn ignore_application_stop_failures(self, input: bool) -> Self
If true, then if an ApplicationStop
, BeforeBlockTraffic
, or AfterBlockTraffic
deployment lifecycle event to an instance fails, then the deployment continues to the next deployment lifecycle event. For example, if ApplicationStop
fails, the deployment continues with DownloadBundle. If BeforeBlockTraffic
fails, the deployment continues with BlockTraffic
. If AfterBlockTraffic
fails, the deployment continues with ApplicationStop
.
If false or not specified, then if a lifecycle event fails during a deployment to an instance, that deployment fails. If deployment to that instance is part of an overall deployment and the number of healthy hosts is not less than the minimum number of healthy hosts, then a deployment to the next instance is attempted.
During a deployment, the CodeDeploy agent runs the scripts specified for ApplicationStop
, BeforeBlockTraffic
, and AfterBlockTraffic
in the AppSpec file from the previous successful deployment. (All other scripts are run from the AppSpec file in the current deployment.) If one of these scripts contains an error and does not run successfully, the deployment can fail.
If the cause of the failure is a script from the last successful deployment that will never run successfully, create a new deployment and use ignoreApplicationStopFailures
to specify that the ApplicationStop
, BeforeBlockTraffic
, and AfterBlockTraffic
failures should be ignored.
sourcepub fn set_ignore_application_stop_failures(self, input: Option<bool>) -> Self
pub fn set_ignore_application_stop_failures(self, input: Option<bool>) -> Self
If true, then if an ApplicationStop
, BeforeBlockTraffic
, or AfterBlockTraffic
deployment lifecycle event to an instance fails, then the deployment continues to the next deployment lifecycle event. For example, if ApplicationStop
fails, the deployment continues with DownloadBundle. If BeforeBlockTraffic
fails, the deployment continues with BlockTraffic
. If AfterBlockTraffic
fails, the deployment continues with ApplicationStop
.
If false or not specified, then if a lifecycle event fails during a deployment to an instance, that deployment fails. If deployment to that instance is part of an overall deployment and the number of healthy hosts is not less than the minimum number of healthy hosts, then a deployment to the next instance is attempted.
During a deployment, the CodeDeploy agent runs the scripts specified for ApplicationStop
, BeforeBlockTraffic
, and AfterBlockTraffic
in the AppSpec file from the previous successful deployment. (All other scripts are run from the AppSpec file in the current deployment.) If one of these scripts contains an error and does not run successfully, the deployment can fail.
If the cause of the failure is a script from the last successful deployment that will never run successfully, create a new deployment and use ignoreApplicationStopFailures
to specify that the ApplicationStop
, BeforeBlockTraffic
, and AfterBlockTraffic
failures should be ignored.
sourcepub fn auto_rollback_configuration(
self,
input: AutoRollbackConfiguration
) -> Self
pub fn auto_rollback_configuration(
self,
input: AutoRollbackConfiguration
) -> Self
Information about the automatic rollback configuration associated with the deployment.
sourcepub fn set_auto_rollback_configuration(
self,
input: Option<AutoRollbackConfiguration>
) -> Self
pub fn set_auto_rollback_configuration(
self,
input: Option<AutoRollbackConfiguration>
) -> Self
Information about the automatic rollback configuration associated with the deployment.
sourcepub fn update_outdated_instances_only(self, input: bool) -> Self
pub fn update_outdated_instances_only(self, input: bool) -> Self
Indicates whether only instances that are not running the latest application revision are to be deployed to.
sourcepub fn set_update_outdated_instances_only(self, input: Option<bool>) -> Self
pub fn set_update_outdated_instances_only(self, input: Option<bool>) -> Self
Indicates whether only instances that are not running the latest application revision are to be deployed to.
sourcepub fn rollback_info(self, input: RollbackInfo) -> Self
pub fn rollback_info(self, input: RollbackInfo) -> Self
Information about a deployment rollback.
sourcepub fn set_rollback_info(self, input: Option<RollbackInfo>) -> Self
pub fn set_rollback_info(self, input: Option<RollbackInfo>) -> Self
Information about a deployment rollback.
sourcepub fn deployment_style(self, input: DeploymentStyle) -> Self
pub fn deployment_style(self, input: DeploymentStyle) -> Self
Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.
sourcepub fn set_deployment_style(self, input: Option<DeploymentStyle>) -> Self
pub fn set_deployment_style(self, input: Option<DeploymentStyle>) -> Self
Information about the type of deployment, either in-place or blue/green, you want to run and whether to route deployment traffic behind a load balancer.
sourcepub fn target_instances(self, input: TargetInstances) -> Self
pub fn target_instances(self, input: TargetInstances) -> Self
Information about the instances that belong to the replacement environment in a blue/green deployment.
sourcepub fn set_target_instances(self, input: Option<TargetInstances>) -> Self
pub fn set_target_instances(self, input: Option<TargetInstances>) -> Self
Information about the instances that belong to the replacement environment in a blue/green deployment.
sourcepub fn instance_termination_wait_time_started(self, input: bool) -> Self
pub fn instance_termination_wait_time_started(self, input: bool) -> Self
Indicates whether the wait period set for the termination of instances in the original environment has started. Status is 'false' if the KEEP_ALIVE option is specified. Otherwise, 'true' as soon as the termination wait period starts.
sourcepub fn set_instance_termination_wait_time_started(
self,
input: Option<bool>
) -> Self
pub fn set_instance_termination_wait_time_started(
self,
input: Option<bool>
) -> Self
Indicates whether the wait period set for the termination of instances in the original environment has started. Status is 'false' if the KEEP_ALIVE option is specified. Otherwise, 'true' as soon as the termination wait period starts.
sourcepub fn blue_green_deployment_configuration(
self,
input: BlueGreenDeploymentConfiguration
) -> Self
pub fn blue_green_deployment_configuration(
self,
input: BlueGreenDeploymentConfiguration
) -> Self
Information about blue/green deployment options for this deployment.
sourcepub fn set_blue_green_deployment_configuration(
self,
input: Option<BlueGreenDeploymentConfiguration>
) -> Self
pub fn set_blue_green_deployment_configuration(
self,
input: Option<BlueGreenDeploymentConfiguration>
) -> Self
Information about blue/green deployment options for this deployment.
sourcepub fn load_balancer_info(self, input: LoadBalancerInfo) -> Self
pub fn load_balancer_info(self, input: LoadBalancerInfo) -> Self
Information about the load balancer used in the deployment.
sourcepub fn set_load_balancer_info(self, input: Option<LoadBalancerInfo>) -> Self
pub fn set_load_balancer_info(self, input: Option<LoadBalancerInfo>) -> Self
Information about the load balancer used in the deployment.
sourcepub fn additional_deployment_status_info(self, input: impl Into<String>) -> Self
pub fn additional_deployment_status_info(self, input: impl Into<String>) -> Self
Provides information about the results of a deployment, such as whether instances in the original environment in a blue/green deployment were not terminated.
sourcepub fn set_additional_deployment_status_info(self, input: Option<String>) -> Self
pub fn set_additional_deployment_status_info(self, input: Option<String>) -> Self
Provides information about the results of a deployment, such as whether instances in the original environment in a blue/green deployment were not terminated.
sourcepub fn file_exists_behavior(self, input: FileExistsBehavior) -> Self
pub fn file_exists_behavior(self, input: FileExistsBehavior) -> Self
Information about how CodeDeploy handles files that already exist in a deployment target location but weren't part of the previous successful deployment.
-
DISALLOW
: The deployment fails. This is also the default behavior if no option is specified. -
OVERWRITE
: The version of the file from the application revision currently being deployed replaces the version already on the instance. -
RETAIN
: The version of the file already on the instance is kept and used as part of the new deployment.
sourcepub fn set_file_exists_behavior(self, input: Option<FileExistsBehavior>) -> Self
pub fn set_file_exists_behavior(self, input: Option<FileExistsBehavior>) -> Self
Information about how CodeDeploy handles files that already exist in a deployment target location but weren't part of the previous successful deployment.
-
DISALLOW
: The deployment fails. This is also the default behavior if no option is specified. -
OVERWRITE
: The version of the file from the application revision currently being deployed replaces the version already on the instance. -
RETAIN
: The version of the file already on the instance is kept and used as part of the new deployment.
sourcepub fn deployment_status_messages(self, input: impl Into<String>) -> Self
pub fn deployment_status_messages(self, input: impl Into<String>) -> Self
Appends an item to deployment_status_messages
.
To override the contents of this collection use set_deployment_status_messages
.
Messages that contain information about the status of a deployment.
sourcepub fn set_deployment_status_messages(self, input: Option<Vec<String>>) -> Self
pub fn set_deployment_status_messages(self, input: Option<Vec<String>>) -> Self
Messages that contain information about the status of a deployment.
sourcepub fn compute_platform(self, input: ComputePlatform) -> Self
pub fn compute_platform(self, input: ComputePlatform) -> Self
The destination platform type for the deployment (Lambda
, Server
, or ECS
).
sourcepub fn set_compute_platform(self, input: Option<ComputePlatform>) -> Self
pub fn set_compute_platform(self, input: Option<ComputePlatform>) -> Self
The destination platform type for the deployment (Lambda
, Server
, or ECS
).
sourcepub fn external_id(self, input: impl Into<String>) -> Self
pub fn external_id(self, input: impl Into<String>) -> Self
The unique ID for an external resource (for example, a CloudFormation stack ID) that is linked to this deployment.
sourcepub fn set_external_id(self, input: Option<String>) -> Self
pub fn set_external_id(self, input: Option<String>) -> Self
The unique ID for an external resource (for example, a CloudFormation stack ID) that is linked to this deployment.
Information about deployments related to the specified deployment.
Information about deployments related to the specified deployment.
sourcepub fn override_alarm_configuration(self, input: AlarmConfiguration) -> Self
pub fn override_alarm_configuration(self, input: AlarmConfiguration) -> Self
Information about alarms associated with a deployment or deployment group.
sourcepub fn set_override_alarm_configuration(
self,
input: Option<AlarmConfiguration>
) -> Self
pub fn set_override_alarm_configuration(
self,
input: Option<AlarmConfiguration>
) -> Self
Information about alarms associated with a deployment or deployment group.
sourcepub fn build(self) -> DeploymentInfo
pub fn build(self) -> DeploymentInfo
Consumes the builder and constructs a DeploymentInfo
.