UpdateDeploymentGroupInput
public struct UpdateDeploymentGroupInput : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Information to add or change about Amazon CloudWatch alarms when the deployment group is updated.
Declaration
Swift
public let alarmConfiguration: AlarmConfiguration?
-
The application name that corresponds to the deployment group to update.
Declaration
Swift
public let applicationName: String
-
Information for an automatic rollback configuration that is added or changed when a deployment group is updated.
Declaration
Swift
public let autoRollbackConfiguration: AutoRollbackConfiguration?
-
The replacement list of Auto Scaling groups to be included in the deployment group, if you want to change them. To keep the Auto Scaling groups, enter their names. To remove Auto Scaling groups, do not enter any Auto Scaling group names.
Declaration
Swift
public let autoScalingGroups: [String]?
-
Information about blue/green deployment options for a deployment group.
Declaration
Swift
public let blueGreenDeploymentConfiguration: BlueGreenDeploymentConfiguration?
-
The current name of the deployment group.
Declaration
Swift
public let currentDeploymentGroupName: String
-
The replacement deployment configuration name to use, if you want to change it.
Declaration
Swift
public let deploymentConfigName: String?
-
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.
Declaration
Swift
public let deploymentStyle: DeploymentStyle?
-
The replacement set of Amazon EC2 tags on which to filter, if you want to change them. To keep the existing tags, enter their names. To remove tags, do not enter any tag names.
Declaration
Swift
public let ec2TagFilters: [EC2TagFilter]?
-
Information about groups of tags applied to on-premises instances. The deployment group includes only EC2 instances identified by all the tag groups.
Declaration
Swift
public let ec2TagSet: EC2TagSet?
-
The target Amazon ECS services in the deployment group. This applies only to deployment groups that use the Amazon ECS compute platform. A target Amazon ECS service is specified as an Amazon ECS cluster and service name pair using the format <clustername>:<servicename>.
Declaration
Swift
public let ecsServices: [ECSService]?
-
Information about the load balancer used in a deployment.
Declaration
Swift
public let loadBalancerInfo: LoadBalancerInfo?
-
The new name of the deployment group, if you want to change it.
Declaration
Swift
public let newDeploymentGroupName: String?
-
The replacement set of on-premises instance tags on which to filter, if you want to change them. To keep the existing tags, enter their names. To remove tags, do not enter any tag names.
Declaration
Swift
public let onPremisesInstanceTagFilters: [TagFilter]?
-
Information about an on-premises instance tag set. The deployment group includes only on-premises instances identified by all the tag groups.
Declaration
Swift
public let onPremisesTagSet: OnPremisesTagSet?
-
A replacement ARN for the service role, if you want to change it.
Declaration
Swift
public let serviceRoleArn: String?
-
Information about triggers to change when the deployment group is updated. For examples, see Edit a Trigger in a CodeDeploy Deployment Group in the AWS CodeDeploy User Guide.
Declaration
Swift
public let triggerConfigurations: [TriggerConfig]?
-
init(alarmConfiguration:applicationName:autoRollbackConfiguration:autoScalingGroups:blueGreenDeploymentConfiguration:currentDeploymentGroupName:deploymentConfigName:deploymentStyle:ec2TagFilters:ec2TagSet:ecsServices:loadBalancerInfo:newDeploymentGroupName:onPremisesInstanceTagFilters:onPremisesTagSet:serviceRoleArn:triggerConfigurations:)
Undocumented
Declaration
Swift
public init(alarmConfiguration: AlarmConfiguration? = nil, applicationName: String, autoRollbackConfiguration: AutoRollbackConfiguration? = nil, autoScalingGroups: [String]? = nil, blueGreenDeploymentConfiguration: BlueGreenDeploymentConfiguration? = nil, currentDeploymentGroupName: String, deploymentConfigName: String? = nil, deploymentStyle: DeploymentStyle? = nil, ec2TagFilters: [EC2TagFilter]? = nil, ec2TagSet: EC2TagSet? = nil, ecsServices: [ECSService]? = nil, loadBalancerInfo: LoadBalancerInfo? = nil, newDeploymentGroupName: String? = nil, onPremisesInstanceTagFilters: [TagFilter]? = nil, onPremisesTagSet: OnPremisesTagSet? = nil, serviceRoleArn: String? = nil, triggerConfigurations: [TriggerConfig]? = nil)
-
Declaration
Swift
public func validate(name: String) throws