[−][src]Struct rusoto_codedeploy::CreateDeploymentGroupInput
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.
The metadata that you apply to CodeDeploy deployment groups to help you organize and categorize them. Each tag consists of a key and an optional value, both of which you define.
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]
fn eq(&self, other: &CreateDeploymentGroupInput) -> bool
[src]
fn ne(&self, other: &CreateDeploymentGroupInput) -> bool
[src]
impl Default for CreateDeploymentGroupInput
[src]
impl Clone for CreateDeploymentGroupInput
[src]
fn clone(&self) -> 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
impl Send for CreateDeploymentGroupInput
impl Sync for CreateDeploymentGroupInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self