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:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> 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 to AWS::ElasticLoadBalancing::LoadBalancer.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnLoadBalancerPropsMixin

      @Stability(Stable) public CfnLoadBalancerPropsMixin(@NotNull CfnLoadBalancerMixinProps props)
      Create a mixin to apply properties to AWS::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.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnLoadBalancerMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()