Class CfnLoadBalancerPropsMixin
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.elasticloadbalancing.CfnLoadBalancerPropsMixin
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable,software.constructs.IMixin
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.151Z")
@Stability(Stable)
public class CfnLoadBalancerPropsMixin
extends Mixin
implements software.constructs.IMixin
Specifies a Classic Load Balancer.
If this resource has a public IP address and is also in a VPC that is defined in the same template, you must use the DependsOn attribute to declare a dependency on the VPC-gateway attachment.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.elasticloadbalancing.*;
import software.amazon.awscdk.*;
Object attributes;
IMergeStrategy mergeStrategy;
CfnLoadBalancerPropsMixin cfnLoadBalancerPropsMixin = CfnLoadBalancerPropsMixin.Builder.create(CfnLoadBalancerMixinProps.builder()
.accessLoggingPolicy(AccessLoggingPolicyProperty.builder()
.emitInterval(123)
.enabled(false)
.s3BucketName("s3BucketName")
.s3BucketPrefix("s3BucketPrefix")
.build())
.appCookieStickinessPolicy(List.of(AppCookieStickinessPolicyProperty.builder()
.cookieName("cookieName")
.policyName("policyName")
.build()))
.availabilityZones(List.of("availabilityZones"))
.connectionDrainingPolicy(ConnectionDrainingPolicyProperty.builder()
.enabled(false)
.timeout(123)
.build())
.connectionSettings(ConnectionSettingsProperty.builder()
.idleTimeout(123)
.build())
.crossZone(false)
.healthCheck(HealthCheckProperty.builder()
.healthyThreshold("healthyThreshold")
.interval("interval")
.target("target")
.timeout("timeout")
.unhealthyThreshold("unhealthyThreshold")
.build())
.instances(List.of("instances"))
.lbCookieStickinessPolicy(List.of(LBCookieStickinessPolicyProperty.builder()
.cookieExpirationPeriod("cookieExpirationPeriod")
.policyName("policyName")
.build()))
.listeners(List.of(ListenersProperty.builder()
.instancePort("instancePort")
.instanceProtocol("instanceProtocol")
.loadBalancerPort("loadBalancerPort")
.policyNames(List.of("policyNames"))
.protocol("protocol")
.sslCertificateId("sslCertificateId")
.build()))
.loadBalancerName("loadBalancerName")
.policies(List.of(PoliciesProperty.builder()
.attributes(List.of(attributes))
.instancePorts(List.of("instancePorts"))
.loadBalancerPorts(List.of("loadBalancerPorts"))
.policyName("policyName")
.policyType("policyType")
.build()))
.scheme("scheme")
.securityGroups(List.of("securityGroups"))
.subnets(List.of("subnets"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.strategy(mergeStrategy)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceSpecifies where and how access logs are stored for your Classic Load Balancer.static interfaceSpecifies a policy for application-controlled session stickiness for your Classic Load Balancer.static final classA fluent builder forCfnLoadBalancerPropsMixin.static interfaceSpecifies the connection draining settings for your Classic Load Balancer.static interfaceSpecifies the idle timeout value for your Classic Load Balancer.static interfaceSpecifies health check settings for your Classic Load Balancer.static interfaceSpecifies a policy for duration-based session stickiness for your Classic Load Balancer.static interfaceSpecifies a listener for your Classic Load Balancer.static interfaceSpecifies policies for your Classic Load Balancer.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.constructs.IMixin
software.constructs.IMixin.Jsii$Default, software.constructs.IMixin.Jsii$Proxy -
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreate a mixin to apply properties toAWS::ElasticLoadBalancing::LoadBalancer.Create a mixin to apply properties toAWS::ElasticLoadBalancing::LoadBalancer.protectedCfnLoadBalancerPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedCfnLoadBalancerPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionvoidapplyTo(software.constructs.IConstruct construct) Apply the mixin properties to the construct.protected CfnLoadBalancerMixinPropsgetProps()protected IMergeStrategysupports(software.constructs.IConstruct construct) Check if this mixin supports the given construct.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_PROPERTY_KEYS
-
-
Constructor Details
-
CfnLoadBalancerPropsMixin
protected CfnLoadBalancerPropsMixin(software.amazon.jsii.JsiiObjectRef objRef) -
CfnLoadBalancerPropsMixin
protected CfnLoadBalancerPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnLoadBalancerPropsMixin
@Stability(Stable) public CfnLoadBalancerPropsMixin(@NotNull CfnLoadBalancerMixinProps props, @Nullable CfnPropertyMixinOptions options) Create a mixin to apply properties toAWS::ElasticLoadBalancing::LoadBalancer.- Parameters:
props- L1 properties to apply. This parameter is required.options- Mixin options.
-
CfnLoadBalancerPropsMixin
Create a mixin to apply properties toAWS::ElasticLoadBalancing::LoadBalancer.- Parameters:
props- L1 properties to apply. This parameter is required.
-
-
Method Details
-
applyTo
@Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct) Apply the mixin properties to the construct. -
supports
@Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct) Check if this mixin supports the given construct. -
getProps
-
getStrategy
-