Struct rusoto_codedeploy::CreateDeploymentGroupInput [] [src]

pub struct CreateDeploymentGroupInput {
    pub alarm_configuration: Option<AlarmConfiguration>,
    pub application_name: String,
    pub auto_rollback_configuration: Option<AutoRollbackConfiguration>,
    pub auto_scaling_groups: Option<Vec<String>>,
    pub blue_green_deployment_configuration: Option<BlueGreenDeploymentConfiguration>,
    pub deployment_config_name: Option<String>,
    pub deployment_group_name: String,
    pub deployment_style: Option<DeploymentStyle>,
    pub ec_2_tag_filters: Option<Vec<EC2TagFilter>>,
    pub ec_2_tag_set: Option<EC2TagSet>,
    pub load_balancer_info: Option<LoadBalancerInfo>,
    pub on_premises_instance_tag_filters: Option<Vec<TagFilter>>,
    pub on_premises_tag_set: Option<OnPremisesTagSet>,
    pub service_role_arn: String,
    pub trigger_configurations: Option<Vec<TriggerConfig>>,
}

Represents the input of a CreateDeploymentGroup operation.

Fields

Information to add about Amazon CloudWatch alarms when the deployment group is created.

The name of an AWS CodeDeploy application associated with the applicable IAM user or AWS account.

Configuration information for an automatic rollback that is added when a deployment group is created.

A list of associated Auto Scaling groups.

Information about blue/green deployment options for a deployment group.

If specified, the deployment configuration name can be either one of the predefined configurations provided with AWS CodeDeploy or a custom deployment configuration that you create by calling the create deployment configuration operation.

CodeDeployDefault.OneAtATime is the default deployment configuration. It is used if a configuration isn't specified for the deployment or the deployment group.

For more information about the predefined deployment configurations in AWS CodeDeploy, see Working with Deployment Groups in AWS CodeDeploy in the AWS CodeDeploy User Guide.

The name of a new deployment group for the specified application.

Information about the type of deployment, in-place or blue/green, that you want to run and whether to route deployment traffic behind a load balancer.

The Amazon EC2 tags on which to filter. The deployment group will include EC2 instances with any of the specified tags. Cannot be used in the same call as ec2TagSet.

Information about groups of tags applied to EC2 instances. The deployment group will include only EC2 instances identified by all the tag groups. Cannot be used in the same call as ec2TagFilters.

Information about the load balancer used in a deployment.

The on-premises instance tags on which to filter. The deployment group will include on-premises instances with any of the specified tags. Cannot be used in the same call as OnPremisesTagSet.

Information about groups of tags applied to on-premises instances. The deployment group will include only on-premises instances identified by all the tag groups. Cannot be used in the same call as onPremisesInstanceTagFilters.

A service role ARN that allows AWS CodeDeploy to act on the user's behalf when interacting with AWS services.

Information about triggers to create when the deployment group is created. For examples, see Create a Trigger for an AWS CodeDeploy Event in the AWS CodeDeploy User Guide.

Trait Implementations

impl Default for CreateDeploymentGroupInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CreateDeploymentGroupInput
[src]

[src]

Formats the value using the given formatter.

impl Clone for CreateDeploymentGroupInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more