aws-cdk-lib 2.159.1__py3-none-any.whl → 2.161.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

Files changed (58) hide show
  1. aws_cdk/__init__.py +281 -33
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.159.1.jsii.tgz → aws-cdk-lib@2.161.0.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +13 -14
  5. aws_cdk/aws_autoscaling/__init__.py +2 -2
  6. aws_cdk/aws_b2bi/__init__.py +2283 -672
  7. aws_cdk/aws_batch/__init__.py +9 -5
  8. aws_cdk/aws_bedrock/__init__.py +52 -20
  9. aws_cdk/aws_cloudformation/__init__.py +9 -9
  10. aws_cdk/aws_cloudtrail/__init__.py +97 -183
  11. aws_cdk/aws_cloudwatch/__init__.py +38 -42
  12. aws_cdk/aws_codepipeline_actions/__init__.py +4 -4
  13. aws_cdk/aws_cognito/__init__.py +18 -0
  14. aws_cdk/aws_datasync/__init__.py +1 -1
  15. aws_cdk/aws_dynamodb/__init__.py +4 -4
  16. aws_cdk/aws_ec2/__init__.py +138 -12
  17. aws_cdk/aws_ecs/__init__.py +517 -6
  18. aws_cdk/aws_eks/__init__.py +118 -2
  19. aws_cdk/aws_elasticloadbalancingv2/__init__.py +5 -3
  20. aws_cdk/aws_glue/__init__.py +386 -0
  21. aws_cdk/aws_iotfleetwise/__init__.py +49 -49
  22. aws_cdk/aws_iottwinmaker/__init__.py +4 -4
  23. aws_cdk/aws_iotwireless/__init__.py +2 -1
  24. aws_cdk/aws_kinesisfirehose/__init__.py +52 -76
  25. aws_cdk/aws_kms/__init__.py +4 -4
  26. aws_cdk/aws_lambda/__init__.py +385 -244
  27. aws_cdk/aws_logs/__init__.py +455 -24
  28. aws_cdk/aws_mediaconnect/__init__.py +6 -4
  29. aws_cdk/aws_medialive/__init__.py +36 -0
  30. aws_cdk/aws_organizations/__init__.py +4 -3
  31. aws_cdk/aws_pipes/__init__.py +2 -2
  32. aws_cdk/aws_quicksight/__init__.py +1086 -6
  33. aws_cdk/aws_rds/__init__.py +182 -3
  34. aws_cdk/aws_route53resolver/__init__.py +3 -17
  35. aws_cdk/aws_s3/__init__.py +24 -15
  36. aws_cdk/aws_s3_deployment/__init__.py +45 -0
  37. aws_cdk/aws_s3express/__init__.py +314 -4
  38. aws_cdk/aws_sagemaker/__init__.py +44 -4
  39. aws_cdk/aws_secretsmanager/__init__.py +14 -7
  40. aws_cdk/aws_securityhub/__init__.py +16 -14
  41. aws_cdk/aws_ses/__init__.py +52 -18
  42. aws_cdk/aws_sqs/__init__.py +16 -14
  43. aws_cdk/aws_ssm/__init__.py +6 -2
  44. aws_cdk/aws_stepfunctions/__init__.py +412 -32
  45. aws_cdk/aws_synthetics/__init__.py +46 -0
  46. aws_cdk/aws_waf/__init__.py +33 -22
  47. aws_cdk/aws_wafregional/__init__.py +36 -24
  48. aws_cdk/aws_workspacesweb/__init__.py +54 -3
  49. aws_cdk/cloud_assembly_schema/__init__.py +1304 -417
  50. aws_cdk/cloudformation_include/__init__.py +28 -0
  51. aws_cdk/cx_api/__init__.py +129 -0
  52. aws_cdk/pipelines/__init__.py +4 -4
  53. {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/METADATA +4 -4
  54. {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/RECORD +58 -58
  55. {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/LICENSE +0 -0
  56. {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/NOTICE +0 -0
  57. {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/WHEEL +0 -0
  58. {aws_cdk_lib-2.159.1.dist-info → aws_cdk_lib-2.161.0.dist-info}/top_level.txt +0 -0
@@ -5822,7 +5822,10 @@ class CfnCluster(
5822
5822
  upgrade_policy=eks.CfnCluster.UpgradePolicyProperty(
5823
5823
  support_type="supportType"
5824
5824
  ),
5825
- version="version"
5825
+ version="version",
5826
+ zonal_shift_config=eks.CfnCluster.ZonalShiftConfigProperty(
5827
+ enabled=False
5828
+ )
5826
5829
  )
5827
5830
  '''
5828
5831
 
@@ -5843,6 +5846,7 @@ class CfnCluster(
5843
5846
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
5844
5847
  upgrade_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.UpgradePolicyProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5845
5848
  version: typing.Optional[builtins.str] = None,
5849
+ zonal_shift_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.ZonalShiftConfigProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
5846
5850
  ) -> None:
5847
5851
  '''
5848
5852
  :param scope: Scope in which this resource is defined.
@@ -5859,6 +5863,7 @@ class CfnCluster(
5859
5863
  :param tags: The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Cluster tags don't propagate to any other resources associated with the cluster. .. epigraph:: You must have the ``eks:TagResource`` and ``eks:UntagResource`` permissions for your `IAM principal <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html>`_ to manage the AWS CloudFormation stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.
5860
5864
  :param upgrade_policy: This value indicates if extended support is enabled or disabled for the cluster. `Learn more about EKS Extended Support in the EKS User Guide. <https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html>`_
5861
5865
  :param version: The desired Kubernetes version for your cluster. If you don't specify a value here, the default version available in Amazon EKS is used. .. epigraph:: The default version might not be the latest version available.
5866
+ :param zonal_shift_config: The current zonal shift configuration to use for the cluster.
5862
5867
  '''
5863
5868
  if __debug__:
5864
5869
  type_hints = typing.get_type_hints(_typecheckingstub__d3e62a858014f3867f3039d1328d57223fb0d16e3fb6d1e2d79279938756eb35)
@@ -5877,6 +5882,7 @@ class CfnCluster(
5877
5882
  tags=tags,
5878
5883
  upgrade_policy=upgrade_policy,
5879
5884
  version=version,
5885
+ zonal_shift_config=zonal_shift_config,
5880
5886
  )
5881
5887
 
5882
5888
  jsii.create(self.__class__, self, [scope, id, props])
@@ -6198,6 +6204,24 @@ class CfnCluster(
6198
6204
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6199
6205
  jsii.set(self, "version", value) # pyright: ignore[reportArgumentType]
6200
6206
 
6207
+ @builtins.property
6208
+ @jsii.member(jsii_name="zonalShiftConfig")
6209
+ def zonal_shift_config(
6210
+ self,
6211
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ZonalShiftConfigProperty"]]:
6212
+ '''The current zonal shift configuration to use for the cluster.'''
6213
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ZonalShiftConfigProperty"]], jsii.get(self, "zonalShiftConfig"))
6214
+
6215
+ @zonal_shift_config.setter
6216
+ def zonal_shift_config(
6217
+ self,
6218
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.ZonalShiftConfigProperty"]],
6219
+ ) -> None:
6220
+ if __debug__:
6221
+ type_hints = typing.get_type_hints(_typecheckingstub__42ffc6381adc5fa8c427a16d5fff74a44f4b6ebca1899d06adc2bd5949d0cfca)
6222
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
6223
+ jsii.set(self, "zonalShiftConfig", value) # pyright: ignore[reportArgumentType]
6224
+
6201
6225
  @jsii.data_type(
6202
6226
  jsii_type="aws-cdk-lib.aws_eks.CfnCluster.AccessConfigProperty",
6203
6227
  jsii_struct_bases=[],
@@ -7057,6 +7081,63 @@ class CfnCluster(
7057
7081
  k + "=" + repr(v) for k, v in self._values.items()
7058
7082
  )
7059
7083
 
7084
+ @jsii.data_type(
7085
+ jsii_type="aws-cdk-lib.aws_eks.CfnCluster.ZonalShiftConfigProperty",
7086
+ jsii_struct_bases=[],
7087
+ name_mapping={"enabled": "enabled"},
7088
+ )
7089
+ class ZonalShiftConfigProperty:
7090
+ def __init__(
7091
+ self,
7092
+ *,
7093
+ enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
7094
+ ) -> None:
7095
+ '''The current zonal shift configuration to use for the cluster.
7096
+
7097
+ :param enabled: Set this value to true to enable zonal shift for the cluster.
7098
+
7099
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-zonalshiftconfig.html
7100
+ :exampleMetadata: fixture=_generated
7101
+
7102
+ Example::
7103
+
7104
+ # The code below shows an example of how to instantiate this type.
7105
+ # The values are placeholders you should change.
7106
+ from aws_cdk import aws_eks as eks
7107
+
7108
+ zonal_shift_config_property = eks.CfnCluster.ZonalShiftConfigProperty(
7109
+ enabled=False
7110
+ )
7111
+ '''
7112
+ if __debug__:
7113
+ type_hints = typing.get_type_hints(_typecheckingstub__12178fb427a2491053da380c7def573901cbee28defad0982fa8c86d78adcec0)
7114
+ check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
7115
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
7116
+ if enabled is not None:
7117
+ self._values["enabled"] = enabled
7118
+
7119
+ @builtins.property
7120
+ def enabled(
7121
+ self,
7122
+ ) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
7123
+ '''Set this value to true to enable zonal shift for the cluster.
7124
+
7125
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-zonalshiftconfig.html#cfn-eks-cluster-zonalshiftconfig-enabled
7126
+ '''
7127
+ result = self._values.get("enabled")
7128
+ return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
7129
+
7130
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
7131
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
7132
+
7133
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
7134
+ return not (rhs == self)
7135
+
7136
+ def __repr__(self) -> str:
7137
+ return "ZonalShiftConfigProperty(%s)" % ", ".join(
7138
+ k + "=" + repr(v) for k, v in self._values.items()
7139
+ )
7140
+
7060
7141
 
7061
7142
  @jsii.data_type(
7062
7143
  jsii_type="aws-cdk-lib.aws_eks.CfnClusterProps",
@@ -7074,6 +7155,7 @@ class CfnCluster(
7074
7155
  "tags": "tags",
7075
7156
  "upgrade_policy": "upgradePolicy",
7076
7157
  "version": "version",
7158
+ "zonal_shift_config": "zonalShiftConfig",
7077
7159
  },
7078
7160
  )
7079
7161
  class CfnClusterProps:
@@ -7092,6 +7174,7 @@ class CfnClusterProps:
7092
7174
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
7093
7175
  upgrade_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.UpgradePolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7094
7176
  version: typing.Optional[builtins.str] = None,
7177
+ zonal_shift_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ZonalShiftConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
7095
7178
  ) -> None:
7096
7179
  '''Properties for defining a ``CfnCluster``.
7097
7180
 
@@ -7107,6 +7190,7 @@ class CfnClusterProps:
7107
7190
  :param tags: The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Cluster tags don't propagate to any other resources associated with the cluster. .. epigraph:: You must have the ``eks:TagResource`` and ``eks:UntagResource`` permissions for your `IAM principal <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html>`_ to manage the AWS CloudFormation stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.
7108
7191
  :param upgrade_policy: This value indicates if extended support is enabled or disabled for the cluster. `Learn more about EKS Extended Support in the EKS User Guide. <https://docs.aws.amazon.com/eks/latest/userguide/extended-support-control.html>`_
7109
7192
  :param version: The desired Kubernetes version for your cluster. If you don't specify a value here, the default version available in Amazon EKS is used. .. epigraph:: The default version might not be the latest version available.
7193
+ :param zonal_shift_config: The current zonal shift configuration to use for the cluster.
7110
7194
 
7111
7195
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html
7112
7196
  :exampleMetadata: fixture=_generated
@@ -7170,7 +7254,10 @@ class CfnClusterProps:
7170
7254
  upgrade_policy=eks.CfnCluster.UpgradePolicyProperty(
7171
7255
  support_type="supportType"
7172
7256
  ),
7173
- version="version"
7257
+ version="version",
7258
+ zonal_shift_config=eks.CfnCluster.ZonalShiftConfigProperty(
7259
+ enabled=False
7260
+ )
7174
7261
  )
7175
7262
  '''
7176
7263
  if __debug__:
@@ -7187,6 +7274,7 @@ class CfnClusterProps:
7187
7274
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
7188
7275
  check_type(argname="argument upgrade_policy", value=upgrade_policy, expected_type=type_hints["upgrade_policy"])
7189
7276
  check_type(argname="argument version", value=version, expected_type=type_hints["version"])
7277
+ check_type(argname="argument zonal_shift_config", value=zonal_shift_config, expected_type=type_hints["zonal_shift_config"])
7190
7278
  self._values: typing.Dict[builtins.str, typing.Any] = {
7191
7279
  "resources_vpc_config": resources_vpc_config,
7192
7280
  "role_arn": role_arn,
@@ -7211,6 +7299,8 @@ class CfnClusterProps:
7211
7299
  self._values["upgrade_policy"] = upgrade_policy
7212
7300
  if version is not None:
7213
7301
  self._values["version"] = version
7302
+ if zonal_shift_config is not None:
7303
+ self._values["zonal_shift_config"] = zonal_shift_config
7214
7304
 
7215
7305
  @builtins.property
7216
7306
  def resources_vpc_config(
@@ -7360,6 +7450,17 @@ class CfnClusterProps:
7360
7450
  result = self._values.get("version")
7361
7451
  return typing.cast(typing.Optional[builtins.str], result)
7362
7452
 
7453
+ @builtins.property
7454
+ def zonal_shift_config(
7455
+ self,
7456
+ ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.ZonalShiftConfigProperty]]:
7457
+ '''The current zonal shift configuration to use for the cluster.
7458
+
7459
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-zonalshiftconfig
7460
+ '''
7461
+ result = self._values.get("zonal_shift_config")
7462
+ return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.ZonalShiftConfigProperty]], result)
7463
+
7363
7464
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
7364
7465
  return isinstance(rhs, self.__class__) and rhs._values == self._values
7365
7466
 
@@ -20513,6 +20614,7 @@ def _typecheckingstub__d3e62a858014f3867f3039d1328d57223fb0d16e3fb6d1e2d79279938
20513
20614
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
20514
20615
  upgrade_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.UpgradePolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
20515
20616
  version: typing.Optional[builtins.str] = None,
20617
+ zonal_shift_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ZonalShiftConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
20516
20618
  ) -> None:
20517
20619
  """Type checking stubs"""
20518
20620
  pass
@@ -20601,6 +20703,12 @@ def _typecheckingstub__b02d8ac6f71535d635ac9b6a00c5e6c427f81f7fd71264c11d7353d21
20601
20703
  """Type checking stubs"""
20602
20704
  pass
20603
20705
 
20706
+ def _typecheckingstub__42ffc6381adc5fa8c427a16d5fff74a44f4b6ebca1899d06adc2bd5949d0cfca(
20707
+ value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.ZonalShiftConfigProperty]],
20708
+ ) -> None:
20709
+ """Type checking stubs"""
20710
+ pass
20711
+
20604
20712
  def _typecheckingstub__4bfbf6adbd6203efb1ecf28834fc96b1030344f6fe766203b105462b96d8301f(
20605
20713
  *,
20606
20714
  authentication_mode: typing.Optional[builtins.str] = None,
@@ -20688,6 +20796,13 @@ def _typecheckingstub__86073c3bbbda3151a59b8c04b7d831693a2bba55bb8a817197ab0618c
20688
20796
  """Type checking stubs"""
20689
20797
  pass
20690
20798
 
20799
+ def _typecheckingstub__12178fb427a2491053da380c7def573901cbee28defad0982fa8c86d78adcec0(
20800
+ *,
20801
+ enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
20802
+ ) -> None:
20803
+ """Type checking stubs"""
20804
+ pass
20805
+
20691
20806
  def _typecheckingstub__270f142a59c249328ab174c5b0484cfdae6e3110ab52578dbe783d6f8a898e92(
20692
20807
  *,
20693
20808
  resources_vpc_config: typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ResourcesVpcConfigProperty, typing.Dict[builtins.str, typing.Any]]],
@@ -20702,6 +20817,7 @@ def _typecheckingstub__270f142a59c249328ab174c5b0484cfdae6e3110ab52578dbe783d6f8
20702
20817
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
20703
20818
  upgrade_policy: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.UpgradePolicyProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
20704
20819
  version: typing.Optional[builtins.str] = None,
20820
+ zonal_shift_config: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.ZonalShiftConfigProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
20705
20821
  ) -> None:
20706
20822
  """Type checking stubs"""
20707
20823
  pass
@@ -3525,7 +3525,7 @@ class CfnListener(
3525
3525
  :param load_balancer_arn: The Amazon Resource Name (ARN) of the load balancer.
3526
3526
  :param alpn_policy: [TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN) policy.
3527
3527
  :param certificates: The default SSL server certificate for a secure listener. You must provide exactly one certificate if the listener protocol is HTTPS or TLS. To create a certificate list for a secure listener, use `AWS::ElasticLoadBalancingV2::ListenerCertificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html>`_ .
3528
- :param listener_attributes:
3528
+ :param listener_attributes: The listener attributes.
3529
3529
  :param mutual_authentication: The mutual authentication configuration information.
3530
3530
  :param port: The port on which the load balancer is listening. You cannot specify a port for a Gateway Load Balancer.
3531
3531
  :param protocol: The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.
@@ -3663,6 +3663,7 @@ class CfnListener(
3663
3663
  def listener_attributes(
3664
3664
  self,
3665
3665
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnListener.ListenerAttributeProperty"]]]]:
3666
+ '''The listener attributes.'''
3666
3667
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnListener.ListenerAttributeProperty"]]]], jsii.get(self, "listenerAttributes"))
3667
3668
 
3668
3669
  @listener_attributes.setter
@@ -5435,7 +5436,7 @@ class CfnListenerProps:
5435
5436
  :param load_balancer_arn: The Amazon Resource Name (ARN) of the load balancer.
5436
5437
  :param alpn_policy: [TLS listener] The name of the Application-Layer Protocol Negotiation (ALPN) policy.
5437
5438
  :param certificates: The default SSL server certificate for a secure listener. You must provide exactly one certificate if the listener protocol is HTTPS or TLS. To create a certificate list for a secure listener, use `AWS::ElasticLoadBalancingV2::ListenerCertificate <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html>`_ .
5438
- :param listener_attributes:
5439
+ :param listener_attributes: The listener attributes.
5439
5440
  :param mutual_authentication: The mutual authentication configuration information.
5440
5441
  :param port: The port on which the load balancer is listening. You cannot specify a port for a Gateway Load Balancer.
5441
5442
  :param protocol: The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.
@@ -5620,7 +5621,8 @@ class CfnListenerProps:
5620
5621
  def listener_attributes(
5621
5622
  self,
5622
5623
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnListener.ListenerAttributeProperty]]]]:
5623
- '''
5624
+ '''The listener attributes.
5625
+
5624
5626
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-listenerattributes
5625
5627
  '''
5626
5628
  result = self._values.get("listener_attributes")