
com.pulumi.aws.codedeploy.inputs.DeploymentGroupLoadBalancerInfoTargetGroupPairInfoArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.codedeploy.inputs;
import com.pulumi.aws.codedeploy.inputs.DeploymentGroupLoadBalancerInfoTargetGroupPairInfoProdTrafficRouteArgs;
import com.pulumi.aws.codedeploy.inputs.DeploymentGroupLoadBalancerInfoTargetGroupPairInfoTargetGroupArgs;
import com.pulumi.aws.codedeploy.inputs.DeploymentGroupLoadBalancerInfoTargetGroupPairInfoTestTrafficRouteArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class DeploymentGroupLoadBalancerInfoTargetGroupPairInfoArgs extends com.pulumi.resources.ResourceArgs {
public static final DeploymentGroupLoadBalancerInfoTargetGroupPairInfoArgs Empty = new DeploymentGroupLoadBalancerInfoTargetGroupPairInfoArgs();
/**
* Configuration block for the production traffic route (documented below).
*
*/
@Import(name="prodTrafficRoute", required=true)
private Output prodTrafficRoute;
/**
* @return Configuration block for the production traffic route (documented below).
*
*/
public Output prodTrafficRoute() {
return this.prodTrafficRoute;
}
/**
* Configuration blocks for a target group within a target group pair (documented below).
*
*/
@Import(name="targetGroups", required=true)
private Output> targetGroups;
/**
* @return Configuration blocks for a target group within a target group pair (documented below).
*
*/
public Output> targetGroups() {
return this.targetGroups;
}
/**
* Configuration block for the test traffic route (documented below).
*
*/
@Import(name="testTrafficRoute")
private @Nullable Output testTrafficRoute;
/**
* @return Configuration block for the test traffic route (documented below).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy