[−][src]Struct rusoto_codedeploy::DeploymentGroupInfo
Information about a deployment group.
Fields
alarm_configuration: Option<AlarmConfiguration>
A list of alarms associated with the deployment group.
application_name: Option<String>
The application name.
auto_rollback_configuration: Option<AutoRollbackConfiguration>
Information about the automatic rollback configuration associated with the deployment group.
auto_scaling_groups: Option<Vec<AutoScalingGroup>>
A list of associated Auto Scaling groups.
blue_green_deployment_configuration: Option<BlueGreenDeploymentConfiguration>
Information about blue/green deployment options for a deployment group.
compute_platform: Option<String>
The destination platform type for the deployment (Lambda
, Server
, or ECS
).
deployment_config_name: Option<String>
The deployment configuration name.
deployment_group_id: Option<String>
The deployment group ID.
deployment_group_name: Option<String>
The deployment group name.
deployment_style: Option<DeploymentStyle>
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.
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.
ec_2_tag_set: Option<EC2TagSet>
Information about groups of tags applied to an EC2 instance. The deployment group includes only EC2 instances identified by all of 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>
.
last_attempted_deployment: Option<LastDeploymentInfo>
Information about the most recent attempted deployment to the deployment group.
last_successful_deployment: Option<LastDeploymentInfo>
Information about the most recent successful deployment to the deployment group.
load_balancer_info: Option<LoadBalancerInfo>
Information about the load balancer to use 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.
on_premises_tag_set: Option<OnPremisesTagSet>
Information about groups of tags applied to an on-premises instance. The deployment group includes only on-premises instances identified by all the tag groups. Cannot be used in the same call as onPremisesInstanceTagFilters.
service_role_arn: Option<String>
A service role Amazon Resource Name (ARN) that grants CodeDeploy permission to make calls to AWS services on your behalf. For more information, see Create a Service Role for AWS CodeDeploy in the AWS CodeDeploy User Guide.
target_revision: Option<RevisionLocation>
Information about the deployment group's target revision, including type and location.
trigger_configurations: Option<Vec<TriggerConfig>>
Information about triggers associated with the deployment group.
Trait Implementations
impl PartialEq<DeploymentGroupInfo> for DeploymentGroupInfo
[src]
fn eq(&self, other: &DeploymentGroupInfo) -> bool
[src]
fn ne(&self, other: &DeploymentGroupInfo) -> bool
[src]
impl Default for DeploymentGroupInfo
[src]
fn default() -> DeploymentGroupInfo
[src]
impl Clone for DeploymentGroupInfo
[src]
fn clone(&self) -> DeploymentGroupInfo
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for DeploymentGroupInfo
[src]
impl<'de> Deserialize<'de> for DeploymentGroupInfo
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for DeploymentGroupInfo
impl Sync for DeploymentGroupInfo
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> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self