[][src]Struct rusoto_codedeploy::CreateDeploymentGroupInput

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 ecs_services: Option<Vec<ECSService>>,
    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

alarm_configuration: Option<AlarmConfiguration>

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

application_name: String

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

auto_rollback_configuration: Option<AutoRollbackConfiguration>

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

auto_scaling_groups: Option<Vec<String>>

A list of associated Amazon EC2 Auto Scaling groups.

blue_green_deployment_configuration: Option<BlueGreenDeploymentConfiguration>

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

deployment_config_name: Option<String>

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 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.

deployment_group_name: String

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

deployment_style: Option<DeploymentStyle>

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.

ec_2_tag_filters: Option<Vec<EC2TagFilter>>

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

ec_2_tag_set: Option<EC2TagSet>

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

ecs_services: Option<Vec<ECSService>>

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>.

load_balancer_info: Option<LoadBalancerInfo>

Information about the load balancer used in a deployment.

on_premises_instance_tag_filters: Option<Vec<TagFilter>>

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

on_premises_tag_set: Option<OnPremisesTagSet>

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

service_role_arn: String

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

trigger_configurations: Option<Vec<TriggerConfig>>

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 PartialEq<CreateDeploymentGroupInput> for CreateDeploymentGroupInput[src]

impl Default for CreateDeploymentGroupInput[src]

impl Clone for CreateDeploymentGroupInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateDeploymentGroupInput[src]

impl Serialize for CreateDeploymentGroupInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self