
com.pulumi.aws.elb.AppCookieStickinessPolicyArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.elb;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class AppCookieStickinessPolicyArgs extends com.pulumi.resources.ResourceArgs {
public static final AppCookieStickinessPolicyArgs Empty = new AppCookieStickinessPolicyArgs();
/**
* Application cookie whose lifetime the ELB's cookie should follow.
*
*/
@Import(name="cookieName", required=true)
private Output cookieName;
/**
* @return Application cookie whose lifetime the ELB's cookie should follow.
*
*/
public Output cookieName() {
return this.cookieName;
}
/**
* Load balancer port to which the policy
* should be applied. This must be an active listener on the load
* balancer.
*
*/
@Import(name="lbPort", required=true)
private Output lbPort;
/**
* @return Load balancer port to which the policy
* should be applied. This must be an active listener on the load
* balancer.
*
*/
public Output lbPort() {
return this.lbPort;
}
/**
* Name of load balancer to which the policy
* should be attached.
*
*/
@Import(name="loadBalancer", required=true)
private Output loadBalancer;
/**
* @return Name of load balancer to which the policy
* should be attached.
*
*/
public Output loadBalancer() {
return this.loadBalancer;
}
/**
* Name of the stickiness policy.
*
*/
@Import(name="name")
private @Nullable Output name;
/**
* @return Name of the stickiness policy.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy