aws-cdk-lib 2.105.0__py3-none-any.whl → 2.106.1__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.
- aws_cdk/__init__.py +59 -69
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.105.0.jsii.tgz → aws-cdk-lib@2.106.1.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -12
- aws_cdk/aws_appconfig/__init__.py +25 -11
- aws_cdk/aws_appintegrations/__init__.py +60 -60
- aws_cdk/aws_apprunner/__init__.py +22 -3
- aws_cdk/aws_appstream/__init__.py +12 -5
- aws_cdk/aws_appsync/__init__.py +4 -4
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_cloudformation/__init__.py +59 -69
- aws_cdk/aws_codepipeline/__init__.py +3 -0
- aws_cdk/aws_cognito/__init__.py +23 -31
- aws_cdk/aws_config/__init__.py +46 -41
- aws_cdk/aws_datapipeline/__init__.py +54 -54
- aws_cdk/aws_directoryservice/__init__.py +45 -45
- aws_cdk/aws_ec2/__init__.py +163 -21
- aws_cdk/aws_ecs/__init__.py +52 -68
- aws_cdk/aws_eks/__init__.py +55 -9
- aws_cdk/aws_entityresolution/__init__.py +9 -0
- aws_cdk/aws_events/__init__.py +0 -8
- aws_cdk/aws_eventschemas/__init__.py +12 -12
- aws_cdk/aws_gamelift/__init__.py +4 -6
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +10 -11
- aws_cdk/aws_lakeformation/__init__.py +8 -5
- aws_cdk/aws_lambda/__init__.py +30 -0
- aws_cdk/aws_msk/__init__.py +3 -3
- aws_cdk/aws_networkmanager/__init__.py +1 -1
- aws_cdk/aws_pinpoint/__init__.py +94 -94
- aws_cdk/aws_quicksight/__init__.py +189 -264
- aws_cdk/aws_rds/__init__.py +267 -36
- aws_cdk/aws_rolesanywhere/__init__.py +53 -41
- aws_cdk/aws_route53/__init__.py +3 -7
- aws_cdk/aws_s3/__init__.py +191 -2
- aws_cdk/aws_sam/__init__.py +42 -47
- aws_cdk/aws_servicecatalogappregistry/__init__.py +2 -4
- aws_cdk/aws_ssm/__init__.py +4 -4
- aws_cdk/aws_stepfunctions_tasks/__init__.py +9 -2
- aws_cdk/aws_vpclattice/__init__.py +2 -6
- aws_cdk/aws_wafv2/__init__.py +21 -8
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/RECORD +47 -47
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.105.0.dist-info → aws_cdk_lib-2.106.1.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ecs/__init__.py
CHANGED
|
@@ -7401,20 +7401,16 @@ class CfnService(
|
|
|
7401
7401
|
health_check_grace_period_seconds=123,
|
|
7402
7402
|
launch_type="launchType",
|
|
7403
7403
|
load_balancers=[ecs.CfnService.LoadBalancerProperty(
|
|
7404
|
-
container_port=123,
|
|
7405
|
-
|
|
7406
|
-
# the properties below are optional
|
|
7407
7404
|
container_name="containerName",
|
|
7405
|
+
container_port=123,
|
|
7408
7406
|
load_balancer_name="loadBalancerName",
|
|
7409
7407
|
target_group_arn="targetGroupArn"
|
|
7410
7408
|
)],
|
|
7411
7409
|
network_configuration=ecs.CfnService.NetworkConfigurationProperty(
|
|
7412
7410
|
awsvpc_configuration=ecs.CfnService.AwsVpcConfigurationProperty(
|
|
7413
|
-
subnets=["subnets"],
|
|
7414
|
-
|
|
7415
|
-
# the properties below are optional
|
|
7416
7411
|
assign_public_ip="assignPublicIp",
|
|
7417
|
-
security_groups=["securityGroups"]
|
|
7412
|
+
security_groups=["securityGroups"],
|
|
7413
|
+
subnets=["subnets"]
|
|
7418
7414
|
)
|
|
7419
7415
|
),
|
|
7420
7416
|
placement_constraints=[ecs.CfnService.PlacementConstraintProperty(
|
|
@@ -7975,24 +7971,24 @@ class CfnService(
|
|
|
7975
7971
|
jsii_type="aws-cdk-lib.aws_ecs.CfnService.AwsVpcConfigurationProperty",
|
|
7976
7972
|
jsii_struct_bases=[],
|
|
7977
7973
|
name_mapping={
|
|
7978
|
-
"subnets": "subnets",
|
|
7979
7974
|
"assign_public_ip": "assignPublicIp",
|
|
7980
7975
|
"security_groups": "securityGroups",
|
|
7976
|
+
"subnets": "subnets",
|
|
7981
7977
|
},
|
|
7982
7978
|
)
|
|
7983
7979
|
class AwsVpcConfigurationProperty:
|
|
7984
7980
|
def __init__(
|
|
7985
7981
|
self,
|
|
7986
7982
|
*,
|
|
7987
|
-
subnets: typing.Sequence[builtins.str],
|
|
7988
7983
|
assign_public_ip: typing.Optional[builtins.str] = None,
|
|
7989
7984
|
security_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7985
|
+
subnets: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
7990
7986
|
) -> None:
|
|
7991
7987
|
'''An object representing the networking details for a task or service.
|
|
7992
7988
|
|
|
7993
|
-
:param subnets: The IDs of the subnets associated with the task or service. There's a limit of 16 subnets that can be specified per ``AwsVpcConfiguration`` . .. epigraph:: All specified subnets must be from the same VPC.
|
|
7994
7989
|
:param assign_public_ip: Whether the task's elastic network interface receives a public IP address. The default value is ``DISABLED`` .
|
|
7995
7990
|
:param security_groups: The IDs of the security groups associated with the task or service. If you don't specify a security group, the default security group for the VPC is used. There's a limit of 5 security groups that can be specified per ``AwsVpcConfiguration`` . .. epigraph:: All specified security groups must be from the same VPC.
|
|
7991
|
+
:param subnets: The IDs of the subnets associated with the task or service. There's a limit of 16 subnets that can be specified per ``AwsVpcConfiguration`` . .. epigraph:: All specified subnets must be from the same VPC.
|
|
7996
7992
|
|
|
7997
7993
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html
|
|
7998
7994
|
:exampleMetadata: fixture=_generated
|
|
@@ -8004,40 +8000,23 @@ class CfnService(
|
|
|
8004
8000
|
from aws_cdk import aws_ecs as ecs
|
|
8005
8001
|
|
|
8006
8002
|
aws_vpc_configuration_property = ecs.CfnService.AwsVpcConfigurationProperty(
|
|
8007
|
-
subnets=["subnets"],
|
|
8008
|
-
|
|
8009
|
-
# the properties below are optional
|
|
8010
8003
|
assign_public_ip="assignPublicIp",
|
|
8011
|
-
security_groups=["securityGroups"]
|
|
8004
|
+
security_groups=["securityGroups"],
|
|
8005
|
+
subnets=["subnets"]
|
|
8012
8006
|
)
|
|
8013
8007
|
'''
|
|
8014
8008
|
if __debug__:
|
|
8015
8009
|
type_hints = typing.get_type_hints(_typecheckingstub__40010db1fb42b63f942b5b11b7277545c2a1bffc42369636da9c14f813a744c5)
|
|
8016
|
-
check_type(argname="argument subnets", value=subnets, expected_type=type_hints["subnets"])
|
|
8017
8010
|
check_type(argname="argument assign_public_ip", value=assign_public_ip, expected_type=type_hints["assign_public_ip"])
|
|
8018
8011
|
check_type(argname="argument security_groups", value=security_groups, expected_type=type_hints["security_groups"])
|
|
8019
|
-
|
|
8020
|
-
|
|
8021
|
-
}
|
|
8012
|
+
check_type(argname="argument subnets", value=subnets, expected_type=type_hints["subnets"])
|
|
8013
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8022
8014
|
if assign_public_ip is not None:
|
|
8023
8015
|
self._values["assign_public_ip"] = assign_public_ip
|
|
8024
8016
|
if security_groups is not None:
|
|
8025
8017
|
self._values["security_groups"] = security_groups
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
def subnets(self) -> typing.List[builtins.str]:
|
|
8029
|
-
'''The IDs of the subnets associated with the task or service.
|
|
8030
|
-
|
|
8031
|
-
There's a limit of 16 subnets that can be specified per ``AwsVpcConfiguration`` .
|
|
8032
|
-
.. epigraph::
|
|
8033
|
-
|
|
8034
|
-
All specified subnets must be from the same VPC.
|
|
8035
|
-
|
|
8036
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-subnets
|
|
8037
|
-
'''
|
|
8038
|
-
result = self._values.get("subnets")
|
|
8039
|
-
assert result is not None, "Required property 'subnets' is missing"
|
|
8040
|
-
return typing.cast(typing.List[builtins.str], result)
|
|
8018
|
+
if subnets is not None:
|
|
8019
|
+
self._values["subnets"] = subnets
|
|
8041
8020
|
|
|
8042
8021
|
@builtins.property
|
|
8043
8022
|
def assign_public_ip(self) -> typing.Optional[builtins.str]:
|
|
@@ -8064,6 +8043,20 @@ class CfnService(
|
|
|
8064
8043
|
result = self._values.get("security_groups")
|
|
8065
8044
|
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
8066
8045
|
|
|
8046
|
+
@builtins.property
|
|
8047
|
+
def subnets(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
8048
|
+
'''The IDs of the subnets associated with the task or service.
|
|
8049
|
+
|
|
8050
|
+
There's a limit of 16 subnets that can be specified per ``AwsVpcConfiguration`` .
|
|
8051
|
+
.. epigraph::
|
|
8052
|
+
|
|
8053
|
+
All specified subnets must be from the same VPC.
|
|
8054
|
+
|
|
8055
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html#cfn-ecs-service-awsvpcconfiguration-subnets
|
|
8056
|
+
'''
|
|
8057
|
+
result = self._values.get("subnets")
|
|
8058
|
+
return typing.cast(typing.Optional[typing.List[builtins.str]], result)
|
|
8059
|
+
|
|
8067
8060
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
8068
8061
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
8069
8062
|
|
|
@@ -8559,8 +8552,8 @@ class CfnService(
|
|
|
8559
8552
|
jsii_type="aws-cdk-lib.aws_ecs.CfnService.LoadBalancerProperty",
|
|
8560
8553
|
jsii_struct_bases=[],
|
|
8561
8554
|
name_mapping={
|
|
8562
|
-
"container_port": "containerPort",
|
|
8563
8555
|
"container_name": "containerName",
|
|
8556
|
+
"container_port": "containerPort",
|
|
8564
8557
|
"load_balancer_name": "loadBalancerName",
|
|
8565
8558
|
"target_group_arn": "targetGroupArn",
|
|
8566
8559
|
},
|
|
@@ -8569,8 +8562,8 @@ class CfnService(
|
|
|
8569
8562
|
def __init__(
|
|
8570
8563
|
self,
|
|
8571
8564
|
*,
|
|
8572
|
-
container_port: jsii.Number,
|
|
8573
8565
|
container_name: typing.Optional[builtins.str] = None,
|
|
8566
|
+
container_port: typing.Optional[jsii.Number] = None,
|
|
8574
8567
|
load_balancer_name: typing.Optional[builtins.str] = None,
|
|
8575
8568
|
target_group_arn: typing.Optional[builtins.str] = None,
|
|
8576
8569
|
) -> None:
|
|
@@ -8580,8 +8573,8 @@ class CfnService(
|
|
|
8580
8573
|
|
|
8581
8574
|
Services with tasks that use the ``awsvpc`` network mode (for example, those with the Fargate launch type) only support Application Load Balancers and Network Load Balancers. Classic Load Balancers are not supported. Also, when you create any target groups for these services, you must choose ``ip`` as the target type, not ``instance`` . Tasks that use the ``awsvpc`` network mode are associated with an elastic network interface, not an Amazon EC2 instance.
|
|
8582
8575
|
|
|
8583
|
-
:param container_port: The port on the container to associate with the load balancer. This port must correspond to a ``containerPort`` in the task definition the tasks in the service are using. For tasks that use the EC2 launch type, the container instance they're launched on must allow ingress traffic on the ``hostPort`` of the port mapping.
|
|
8584
8576
|
:param container_name: The name of the container (as it appears in a container definition) to associate with the load balancer.
|
|
8577
|
+
:param container_port: The port on the container to associate with the load balancer. This port must correspond to a ``containerPort`` in the task definition the tasks in the service are using. For tasks that use the EC2 launch type, the container instance they're launched on must allow ingress traffic on the ``hostPort`` of the port mapping.
|
|
8585
8578
|
:param load_balancer_name: The name of the load balancer to associate with the Amazon ECS service or task set. If you are using an Application Load Balancer or a Network Load Balancer the load balancer name parameter should be omitted.
|
|
8586
8579
|
:param target_group_arn: The full Amazon Resource Name (ARN) of the Elastic Load Balancing target group or groups associated with a service or task set. A target group ARN is only specified when using an Application Load Balancer or Network Load Balancer. For services using the ``ECS`` deployment controller, you can specify one or multiple target groups. For more information, see `Registering multiple target groups with a service <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/register-multiple-targetgroups.html>`_ in the *Amazon Elastic Container Service Developer Guide* . For services using the ``CODE_DEPLOY`` deployment controller, you're required to define two target groups for the load balancer. For more information, see `Blue/green deployment with CodeDeploy <https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-bluegreen.html>`_ in the *Amazon Elastic Container Service Developer Guide* . .. epigraph:: If your service's task definition uses the ``awsvpc`` network mode, you must choose ``ip`` as the target type, not ``instance`` . Do this when creating your target groups because tasks that use the ``awsvpc`` network mode are associated with an elastic network interface, not an Amazon EC2 instance. This network mode is required for the Fargate launch type.
|
|
8587
8580
|
|
|
@@ -8595,42 +8588,28 @@ class CfnService(
|
|
|
8595
8588
|
from aws_cdk import aws_ecs as ecs
|
|
8596
8589
|
|
|
8597
8590
|
load_balancer_property = ecs.CfnService.LoadBalancerProperty(
|
|
8598
|
-
container_port=123,
|
|
8599
|
-
|
|
8600
|
-
# the properties below are optional
|
|
8601
8591
|
container_name="containerName",
|
|
8592
|
+
container_port=123,
|
|
8602
8593
|
load_balancer_name="loadBalancerName",
|
|
8603
8594
|
target_group_arn="targetGroupArn"
|
|
8604
8595
|
)
|
|
8605
8596
|
'''
|
|
8606
8597
|
if __debug__:
|
|
8607
8598
|
type_hints = typing.get_type_hints(_typecheckingstub__251c3999c1586967f7c9091782e6a113831e05b5f853b910cad8c8e75f654def)
|
|
8608
|
-
check_type(argname="argument container_port", value=container_port, expected_type=type_hints["container_port"])
|
|
8609
8599
|
check_type(argname="argument container_name", value=container_name, expected_type=type_hints["container_name"])
|
|
8600
|
+
check_type(argname="argument container_port", value=container_port, expected_type=type_hints["container_port"])
|
|
8610
8601
|
check_type(argname="argument load_balancer_name", value=load_balancer_name, expected_type=type_hints["load_balancer_name"])
|
|
8611
8602
|
check_type(argname="argument target_group_arn", value=target_group_arn, expected_type=type_hints["target_group_arn"])
|
|
8612
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
8613
|
-
"container_port": container_port,
|
|
8614
|
-
}
|
|
8603
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
8615
8604
|
if container_name is not None:
|
|
8616
8605
|
self._values["container_name"] = container_name
|
|
8606
|
+
if container_port is not None:
|
|
8607
|
+
self._values["container_port"] = container_port
|
|
8617
8608
|
if load_balancer_name is not None:
|
|
8618
8609
|
self._values["load_balancer_name"] = load_balancer_name
|
|
8619
8610
|
if target_group_arn is not None:
|
|
8620
8611
|
self._values["target_group_arn"] = target_group_arn
|
|
8621
8612
|
|
|
8622
|
-
@builtins.property
|
|
8623
|
-
def container_port(self) -> jsii.Number:
|
|
8624
|
-
'''The port on the container to associate with the load balancer.
|
|
8625
|
-
|
|
8626
|
-
This port must correspond to a ``containerPort`` in the task definition the tasks in the service are using. For tasks that use the EC2 launch type, the container instance they're launched on must allow ingress traffic on the ``hostPort`` of the port mapping.
|
|
8627
|
-
|
|
8628
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-loadbalancer.html#cfn-ecs-service-loadbalancer-containerport
|
|
8629
|
-
'''
|
|
8630
|
-
result = self._values.get("container_port")
|
|
8631
|
-
assert result is not None, "Required property 'container_port' is missing"
|
|
8632
|
-
return typing.cast(jsii.Number, result)
|
|
8633
|
-
|
|
8634
8613
|
@builtins.property
|
|
8635
8614
|
def container_name(self) -> typing.Optional[builtins.str]:
|
|
8636
8615
|
'''The name of the container (as it appears in a container definition) to associate with the load balancer.
|
|
@@ -8640,6 +8619,17 @@ class CfnService(
|
|
|
8640
8619
|
result = self._values.get("container_name")
|
|
8641
8620
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
8642
8621
|
|
|
8622
|
+
@builtins.property
|
|
8623
|
+
def container_port(self) -> typing.Optional[jsii.Number]:
|
|
8624
|
+
'''The port on the container to associate with the load balancer.
|
|
8625
|
+
|
|
8626
|
+
This port must correspond to a ``containerPort`` in the task definition the tasks in the service are using. For tasks that use the EC2 launch type, the container instance they're launched on must allow ingress traffic on the ``hostPort`` of the port mapping.
|
|
8627
|
+
|
|
8628
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-loadbalancer.html#cfn-ecs-service-loadbalancer-containerport
|
|
8629
|
+
'''
|
|
8630
|
+
result = self._values.get("container_port")
|
|
8631
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
8632
|
+
|
|
8643
8633
|
@builtins.property
|
|
8644
8634
|
def load_balancer_name(self) -> typing.Optional[builtins.str]:
|
|
8645
8635
|
'''The name of the load balancer to associate with the Amazon ECS service or task set.
|
|
@@ -8835,11 +8825,9 @@ class CfnService(
|
|
|
8835
8825
|
|
|
8836
8826
|
network_configuration_property = ecs.CfnService.NetworkConfigurationProperty(
|
|
8837
8827
|
awsvpc_configuration=ecs.CfnService.AwsVpcConfigurationProperty(
|
|
8838
|
-
subnets=["subnets"],
|
|
8839
|
-
|
|
8840
|
-
# the properties below are optional
|
|
8841
8828
|
assign_public_ip="assignPublicIp",
|
|
8842
|
-
security_groups=["securityGroups"]
|
|
8829
|
+
security_groups=["securityGroups"],
|
|
8830
|
+
subnets=["subnets"]
|
|
8843
8831
|
)
|
|
8844
8832
|
)
|
|
8845
8833
|
'''
|
|
@@ -9729,20 +9717,16 @@ class CfnServiceProps:
|
|
|
9729
9717
|
health_check_grace_period_seconds=123,
|
|
9730
9718
|
launch_type="launchType",
|
|
9731
9719
|
load_balancers=[ecs.CfnService.LoadBalancerProperty(
|
|
9732
|
-
container_port=123,
|
|
9733
|
-
|
|
9734
|
-
# the properties below are optional
|
|
9735
9720
|
container_name="containerName",
|
|
9721
|
+
container_port=123,
|
|
9736
9722
|
load_balancer_name="loadBalancerName",
|
|
9737
9723
|
target_group_arn="targetGroupArn"
|
|
9738
9724
|
)],
|
|
9739
9725
|
network_configuration=ecs.CfnService.NetworkConfigurationProperty(
|
|
9740
9726
|
awsvpc_configuration=ecs.CfnService.AwsVpcConfigurationProperty(
|
|
9741
|
-
subnets=["subnets"],
|
|
9742
|
-
|
|
9743
|
-
# the properties below are optional
|
|
9744
9727
|
assign_public_ip="assignPublicIp",
|
|
9745
|
-
security_groups=["securityGroups"]
|
|
9728
|
+
security_groups=["securityGroups"],
|
|
9729
|
+
subnets=["subnets"]
|
|
9746
9730
|
)
|
|
9747
9731
|
),
|
|
9748
9732
|
placement_constraints=[ecs.CfnService.PlacementConstraintProperty(
|
|
@@ -37917,9 +37901,9 @@ def _typecheckingstub__622044881e70698cedaad575e114b69f1f2050c5c95de5f1d2fd013bb
|
|
|
37917
37901
|
|
|
37918
37902
|
def _typecheckingstub__40010db1fb42b63f942b5b11b7277545c2a1bffc42369636da9c14f813a744c5(
|
|
37919
37903
|
*,
|
|
37920
|
-
subnets: typing.Sequence[builtins.str],
|
|
37921
37904
|
assign_public_ip: typing.Optional[builtins.str] = None,
|
|
37922
37905
|
security_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
37906
|
+
subnets: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
37923
37907
|
) -> None:
|
|
37924
37908
|
"""Type checking stubs"""
|
|
37925
37909
|
pass
|
|
@@ -37969,8 +37953,8 @@ def _typecheckingstub__e9921934df7686d8808e649b9ab979d2747a6f8cba336af2424f59783
|
|
|
37969
37953
|
|
|
37970
37954
|
def _typecheckingstub__251c3999c1586967f7c9091782e6a113831e05b5f853b910cad8c8e75f654def(
|
|
37971
37955
|
*,
|
|
37972
|
-
container_port: jsii.Number,
|
|
37973
37956
|
container_name: typing.Optional[builtins.str] = None,
|
|
37957
|
+
container_port: typing.Optional[jsii.Number] = None,
|
|
37974
37958
|
load_balancer_name: typing.Optional[builtins.str] = None,
|
|
37975
37959
|
target_group_arn: typing.Optional[builtins.str] = None,
|
|
37976
37960
|
) -> None:
|
aws_cdk/aws_eks/__init__.py
CHANGED
|
@@ -610,9 +610,9 @@ To deploy the controller on your EKS cluster, configure the `albController` prop
|
|
|
610
610
|
|
|
611
611
|
```python
|
|
612
612
|
eks.Cluster(self, "HelloEKS",
|
|
613
|
-
version=eks.KubernetesVersion.
|
|
613
|
+
version=eks.KubernetesVersion.V1_27,
|
|
614
614
|
alb_controller=eks.AlbControllerOptions(
|
|
615
|
-
version=eks.AlbControllerVersion.
|
|
615
|
+
version=eks.AlbControllerVersion.V2_6_2
|
|
616
616
|
)
|
|
617
617
|
)
|
|
618
618
|
```
|
|
@@ -1891,9 +1891,9 @@ class AlbControllerOptions:
|
|
|
1891
1891
|
Example::
|
|
1892
1892
|
|
|
1893
1893
|
eks.Cluster(self, "HelloEKS",
|
|
1894
|
-
version=eks.KubernetesVersion.
|
|
1894
|
+
version=eks.KubernetesVersion.V1_27,
|
|
1895
1895
|
alb_controller=eks.AlbControllerOptions(
|
|
1896
|
-
version=eks.AlbControllerVersion.
|
|
1896
|
+
version=eks.AlbControllerVersion.V2_6_2
|
|
1897
1897
|
)
|
|
1898
1898
|
)
|
|
1899
1899
|
'''
|
|
@@ -2084,9 +2084,9 @@ class AlbControllerVersion(
|
|
|
2084
2084
|
Example::
|
|
2085
2085
|
|
|
2086
2086
|
eks.Cluster(self, "HelloEKS",
|
|
2087
|
-
version=eks.KubernetesVersion.
|
|
2087
|
+
version=eks.KubernetesVersion.V1_27,
|
|
2088
2088
|
alb_controller=eks.AlbControllerOptions(
|
|
2089
|
-
version=eks.AlbControllerVersion.
|
|
2089
|
+
version=eks.AlbControllerVersion.V2_6_2
|
|
2090
2090
|
)
|
|
2091
2091
|
)
|
|
2092
2092
|
'''
|
|
@@ -2247,6 +2247,42 @@ class AlbControllerVersion(
|
|
|
2247
2247
|
'''v2.5.1.'''
|
|
2248
2248
|
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_5_1"))
|
|
2249
2249
|
|
|
2250
|
+
@jsii.python.classproperty
|
|
2251
|
+
@jsii.member(jsii_name="V2_5_2")
|
|
2252
|
+
def V2_5_2(cls) -> "AlbControllerVersion":
|
|
2253
|
+
'''v2.5.2.'''
|
|
2254
|
+
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_5_2"))
|
|
2255
|
+
|
|
2256
|
+
@jsii.python.classproperty
|
|
2257
|
+
@jsii.member(jsii_name="V2_5_3")
|
|
2258
|
+
def V2_5_3(cls) -> "AlbControllerVersion":
|
|
2259
|
+
'''v2.5.3.'''
|
|
2260
|
+
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_5_3"))
|
|
2261
|
+
|
|
2262
|
+
@jsii.python.classproperty
|
|
2263
|
+
@jsii.member(jsii_name="V2_5_4")
|
|
2264
|
+
def V2_5_4(cls) -> "AlbControllerVersion":
|
|
2265
|
+
'''v2.5.4.'''
|
|
2266
|
+
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_5_4"))
|
|
2267
|
+
|
|
2268
|
+
@jsii.python.classproperty
|
|
2269
|
+
@jsii.member(jsii_name="V2_6_0")
|
|
2270
|
+
def V2_6_0(cls) -> "AlbControllerVersion":
|
|
2271
|
+
'''v2.6.0.'''
|
|
2272
|
+
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_6_0"))
|
|
2273
|
+
|
|
2274
|
+
@jsii.python.classproperty
|
|
2275
|
+
@jsii.member(jsii_name="V2_6_1")
|
|
2276
|
+
def V2_6_1(cls) -> "AlbControllerVersion":
|
|
2277
|
+
'''v2.6.1.'''
|
|
2278
|
+
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_6_1"))
|
|
2279
|
+
|
|
2280
|
+
@jsii.python.classproperty
|
|
2281
|
+
@jsii.member(jsii_name="V2_6_2")
|
|
2282
|
+
def V2_6_2(cls) -> "AlbControllerVersion":
|
|
2283
|
+
'''v2.6.2.'''
|
|
2284
|
+
return typing.cast("AlbControllerVersion", jsii.sget(cls, "V2_6_2"))
|
|
2285
|
+
|
|
2250
2286
|
@builtins.property
|
|
2251
2287
|
@jsii.member(jsii_name="custom")
|
|
2252
2288
|
def custom(self) -> builtins.bool:
|
|
@@ -3979,7 +4015,7 @@ class CfnCluster(
|
|
|
3979
4015
|
'''
|
|
3980
4016
|
:param scope: Scope in which this resource is defined.
|
|
3981
4017
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3982
|
-
:param resources_vpc_config: The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see `Cluster VPC Considerations <https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html>`_ and `Cluster Security Group Considerations <https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html>`_ in the *Amazon EKS User Guide* . You must specify at least two subnets. You can specify up to five security groups. However, we recommend that you use a dedicated security group for your cluster control plane.
|
|
4018
|
+
:param resources_vpc_config: The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see `Cluster VPC Considerations <https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html>`_ and `Cluster Security Group Considerations <https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html>`_ in the *Amazon EKS User Guide* . You must specify at least two subnets. You can specify up to five security groups. However, we recommend that you use a dedicated security group for your cluster control plane. .. epigraph:: All subnets that you add must be in the same set of AZs as originally provided when you created the cluster. New subnets must satisfy all of the other requirements, for example they must have sufficient IP addresses. For example, assume that you made a cluster and specified four subnets. In the order that you specified them, the first subnet is in the ``us-west-2a`` Availability Zone, the second and third subnets are in ``us-west-2b`` Availability Zone, and the fourth subnet is in ``us-west-2c`` Availability Zone. If you want to change the subnets, you must provide at least one subnet in each of the three Availability Zones, and the subnets must be in the same VPC as the original subnets.
|
|
3983
4019
|
:param role_arn: The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf. For more information, see `Amazon EKS Service IAM Role <https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html>`_ in the **Amazon EKS User Guide** .
|
|
3984
4020
|
:param encryption_config: The encryption configuration for the cluster.
|
|
3985
4021
|
:param kubernetes_network_config: The Kubernetes network configuration for the cluster.
|
|
@@ -4876,7 +4912,7 @@ class CfnCluster(
|
|
|
4876
4912
|
- ``EndpointPrivateAccess``
|
|
4877
4913
|
- ``PublicAccessCidrs``
|
|
4878
4914
|
|
|
4879
|
-
:param subnet_ids: Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.
|
|
4915
|
+
:param subnet_ids: Specify subnets for your Amazon EKS nodes. Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane. .. epigraph:: All subnets that you add must be in the same set of AZs as originally provided when you created the cluster. New subnets must satisfy all of the other requirements, for example they must have sufficient IP addresses. For example, assume that you made a cluster and specified four subnets. In the order that you specified them, the first subnet is in the ``us-west-2a`` Availability Zone, the second and third subnets are in ``us-west-2b`` Availability Zone, and the fourth subnet is in ``us-west-2c`` Availability Zone. If you want to change the subnets, you must provide at least one subnet in each of the three Availability Zones, and the subnets must be in the same VPC as the original subnets.
|
|
4880
4916
|
:param endpoint_private_access: Set this value to ``true`` to enable private access for your cluster's Kubernetes API server endpoint. If you enable private access, Kubernetes API requests from within your cluster's VPC use the private VPC endpoint. The default value for this parameter is ``false`` , which disables private access for your Kubernetes API server. If you disable private access and you have nodes or AWS Fargate pods in the cluster, then ensure that ``publicAccessCidrs`` includes the necessary CIDR blocks for communication with the nodes or Fargate pods. For more information, see `Amazon EKS cluster endpoint access control <https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html>`_ in the **Amazon EKS User Guide** .
|
|
4881
4917
|
:param endpoint_public_access: Set this value to ``false`` to disable public access to your cluster's Kubernetes API server endpoint. If you disable public access, your cluster's Kubernetes API server can only receive requests from within the cluster VPC. The default value for this parameter is ``true`` , which enables public access for your Kubernetes API server. For more information, see `Amazon EKS cluster endpoint access control <https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html>`_ in the **Amazon EKS User Guide** .
|
|
4882
4918
|
:param public_access_cidrs: The CIDR blocks that are allowed access to your cluster's public Kubernetes API server endpoint. Communication to the endpoint from addresses outside of the CIDR blocks that you specify is denied. The default value is ``0.0.0.0/0`` . If you've disabled private endpoint access and you have nodes or AWS Fargate pods in the cluster, then ensure that you specify the necessary CIDR blocks. For more information, see `Amazon EKS cluster endpoint access control <https://docs.aws.amazon.com/eks/latest/userguide/cluster-endpoint.html>`_ in the **Amazon EKS User Guide** .
|
|
@@ -4925,6 +4961,11 @@ class CfnCluster(
|
|
|
4925
4961
|
'''Specify subnets for your Amazon EKS nodes.
|
|
4926
4962
|
|
|
4927
4963
|
Amazon EKS creates cross-account elastic network interfaces in these subnets to allow communication between your nodes and the Kubernetes control plane.
|
|
4964
|
+
.. epigraph::
|
|
4965
|
+
|
|
4966
|
+
All subnets that you add must be in the same set of AZs as originally provided when you created the cluster. New subnets must satisfy all of the other requirements, for example they must have sufficient IP addresses.
|
|
4967
|
+
|
|
4968
|
+
For example, assume that you made a cluster and specified four subnets. In the order that you specified them, the first subnet is in the ``us-west-2a`` Availability Zone, the second and third subnets are in ``us-west-2b`` Availability Zone, and the fourth subnet is in ``us-west-2c`` Availability Zone. If you want to change the subnets, you must provide at least one subnet in each of the three Availability Zones, and the subnets must be in the same VPC as the original subnets.
|
|
4928
4969
|
|
|
4929
4970
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-resourcesvpcconfig.html#cfn-eks-cluster-resourcesvpcconfig-subnetids
|
|
4930
4971
|
'''
|
|
@@ -5023,7 +5064,7 @@ class CfnClusterProps:
|
|
|
5023
5064
|
) -> None:
|
|
5024
5065
|
'''Properties for defining a ``CfnCluster``.
|
|
5025
5066
|
|
|
5026
|
-
:param resources_vpc_config: The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see `Cluster VPC Considerations <https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html>`_ and `Cluster Security Group Considerations <https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html>`_ in the *Amazon EKS User Guide* . You must specify at least two subnets. You can specify up to five security groups. However, we recommend that you use a dedicated security group for your cluster control plane.
|
|
5067
|
+
:param resources_vpc_config: The VPC configuration that's used by the cluster control plane. Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see `Cluster VPC Considerations <https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html>`_ and `Cluster Security Group Considerations <https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html>`_ in the *Amazon EKS User Guide* . You must specify at least two subnets. You can specify up to five security groups. However, we recommend that you use a dedicated security group for your cluster control plane. .. epigraph:: All subnets that you add must be in the same set of AZs as originally provided when you created the cluster. New subnets must satisfy all of the other requirements, for example they must have sufficient IP addresses. For example, assume that you made a cluster and specified four subnets. In the order that you specified them, the first subnet is in the ``us-west-2a`` Availability Zone, the second and third subnets are in ``us-west-2b`` Availability Zone, and the fourth subnet is in ``us-west-2c`` Availability Zone. If you want to change the subnets, you must provide at least one subnet in each of the three Availability Zones, and the subnets must be in the same VPC as the original subnets.
|
|
5027
5068
|
:param role_arn: The Amazon Resource Name (ARN) of the IAM role that provides permissions for the Kubernetes control plane to make calls to AWS API operations on your behalf. For more information, see `Amazon EKS Service IAM Role <https://docs.aws.amazon.com/eks/latest/userguide/service_IAM_role.html>`_ in the **Amazon EKS User Guide** .
|
|
5028
5069
|
:param encryption_config: The encryption configuration for the cluster.
|
|
5029
5070
|
:param kubernetes_network_config: The Kubernetes network configuration for the cluster.
|
|
@@ -5127,6 +5168,11 @@ class CfnClusterProps:
|
|
|
5127
5168
|
'''The VPC configuration that's used by the cluster control plane.
|
|
5128
5169
|
|
|
5129
5170
|
Amazon EKS VPC resources have specific requirements to work properly with Kubernetes. For more information, see `Cluster VPC Considerations <https://docs.aws.amazon.com/eks/latest/userguide/network_reqs.html>`_ and `Cluster Security Group Considerations <https://docs.aws.amazon.com/eks/latest/userguide/sec-group-reqs.html>`_ in the *Amazon EKS User Guide* . You must specify at least two subnets. You can specify up to five security groups. However, we recommend that you use a dedicated security group for your cluster control plane.
|
|
5171
|
+
.. epigraph::
|
|
5172
|
+
|
|
5173
|
+
All subnets that you add must be in the same set of AZs as originally provided when you created the cluster. New subnets must satisfy all of the other requirements, for example they must have sufficient IP addresses.
|
|
5174
|
+
|
|
5175
|
+
For example, assume that you made a cluster and specified four subnets. In the order that you specified them, the first subnet is in the ``us-west-2a`` Availability Zone, the second and third subnets are in ``us-west-2b`` Availability Zone, and the fourth subnet is in ``us-west-2c`` Availability Zone. If you want to change the subnets, you must provide at least one subnet in each of the three Availability Zones, and the subnets must be in the same VPC as the original subnets.
|
|
5130
5176
|
|
|
5131
5177
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html#cfn-eks-cluster-resourcesvpcconfig
|
|
5132
5178
|
'''
|
|
@@ -2230,6 +2230,15 @@ class CfnSchemaMapping(
|
|
|
2230
2230
|
'''
|
|
2231
2231
|
return typing.cast(builtins.str, jsii.get(self, "attrCreatedAt"))
|
|
2232
2232
|
|
|
2233
|
+
@builtins.property
|
|
2234
|
+
@jsii.member(jsii_name="attrHasWorkflows")
|
|
2235
|
+
def attr_has_workflows(self) -> _IResolvable_da3f097b:
|
|
2236
|
+
'''The boolean value that indicates whether or not a SchemaMapping has MatchingWorkflows that are associated with.
|
|
2237
|
+
|
|
2238
|
+
:cloudformationAttribute: HasWorkflows
|
|
2239
|
+
'''
|
|
2240
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrHasWorkflows"))
|
|
2241
|
+
|
|
2233
2242
|
@builtins.property
|
|
2234
2243
|
@jsii.member(jsii_name="attrSchemaArn")
|
|
2235
2244
|
def attr_schema_arn(self) -> builtins.str:
|
aws_cdk/aws_events/__init__.py
CHANGED
|
@@ -4390,14 +4390,6 @@ class CfnRule(
|
|
|
4390
4390
|
'''
|
|
4391
4391
|
return typing.cast(builtins.str, jsii.get(self, "attrArn"))
|
|
4392
4392
|
|
|
4393
|
-
@builtins.property
|
|
4394
|
-
@jsii.member(jsii_name="attrId")
|
|
4395
|
-
def attr_id(self) -> builtins.str:
|
|
4396
|
-
'''
|
|
4397
|
-
:cloudformationAttribute: Id
|
|
4398
|
-
'''
|
|
4399
|
-
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
4400
|
-
|
|
4401
4393
|
@builtins.property
|
|
4402
4394
|
@jsii.member(jsii_name="cfnProperties")
|
|
4403
4395
|
def _cfn_properties(self) -> typing.Mapping[builtins.str, typing.Any]:
|
|
@@ -252,8 +252,8 @@ class CfnDiscoverer(
|
|
|
252
252
|
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
253
253
|
'''Tags to associate with the discoverer.
|
|
254
254
|
|
|
255
|
-
:param key:
|
|
256
|
-
:param value:
|
|
255
|
+
:param key: The key of a key-value pair.
|
|
256
|
+
:param value: The value of a key-value pair.
|
|
257
257
|
|
|
258
258
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-discoverer-tagsentry.html
|
|
259
259
|
:exampleMetadata: fixture=_generated
|
|
@@ -280,7 +280,7 @@ class CfnDiscoverer(
|
|
|
280
280
|
|
|
281
281
|
@builtins.property
|
|
282
282
|
def key(self) -> builtins.str:
|
|
283
|
-
'''
|
|
283
|
+
'''The key of a key-value pair.
|
|
284
284
|
|
|
285
285
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-discoverer-tagsentry.html#cfn-eventschemas-discoverer-tagsentry-key
|
|
286
286
|
'''
|
|
@@ -290,7 +290,7 @@ class CfnDiscoverer(
|
|
|
290
290
|
|
|
291
291
|
@builtins.property
|
|
292
292
|
def value(self) -> builtins.str:
|
|
293
|
-
'''
|
|
293
|
+
'''The value of a key-value pair.
|
|
294
294
|
|
|
295
295
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-discoverer-tagsentry.html#cfn-eventschemas-discoverer-tagsentry-value
|
|
296
296
|
'''
|
|
@@ -598,8 +598,8 @@ class CfnRegistry(
|
|
|
598
598
|
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
599
599
|
'''Tags to associate with the schema registry.
|
|
600
600
|
|
|
601
|
-
:param key:
|
|
602
|
-
:param value:
|
|
601
|
+
:param key: The key of a key-value pair.
|
|
602
|
+
:param value: The value of a key-value pair.
|
|
603
603
|
|
|
604
604
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-registry-tagsentry.html
|
|
605
605
|
:exampleMetadata: fixture=_generated
|
|
@@ -626,7 +626,7 @@ class CfnRegistry(
|
|
|
626
626
|
|
|
627
627
|
@builtins.property
|
|
628
628
|
def key(self) -> builtins.str:
|
|
629
|
-
'''
|
|
629
|
+
'''The key of a key-value pair.
|
|
630
630
|
|
|
631
631
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-registry-tagsentry.html#cfn-eventschemas-registry-tagsentry-key
|
|
632
632
|
'''
|
|
@@ -636,7 +636,7 @@ class CfnRegistry(
|
|
|
636
636
|
|
|
637
637
|
@builtins.property
|
|
638
638
|
def value(self) -> builtins.str:
|
|
639
|
-
'''
|
|
639
|
+
'''The value of a key-value pair.
|
|
640
640
|
|
|
641
641
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-registry-tagsentry.html#cfn-eventschemas-registry-tagsentry-value
|
|
642
642
|
'''
|
|
@@ -1219,8 +1219,8 @@ class CfnSchema(
|
|
|
1219
1219
|
def __init__(self, *, key: builtins.str, value: builtins.str) -> None:
|
|
1220
1220
|
'''Tags to associate with the schema.
|
|
1221
1221
|
|
|
1222
|
-
:param key:
|
|
1223
|
-
:param value:
|
|
1222
|
+
:param key: The key of a key-value pair.
|
|
1223
|
+
:param value: The value of a key-value pair.
|
|
1224
1224
|
|
|
1225
1225
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-schema-tagsentry.html
|
|
1226
1226
|
:exampleMetadata: fixture=_generated
|
|
@@ -1247,7 +1247,7 @@ class CfnSchema(
|
|
|
1247
1247
|
|
|
1248
1248
|
@builtins.property
|
|
1249
1249
|
def key(self) -> builtins.str:
|
|
1250
|
-
'''
|
|
1250
|
+
'''The key of a key-value pair.
|
|
1251
1251
|
|
|
1252
1252
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-schema-tagsentry.html#cfn-eventschemas-schema-tagsentry-key
|
|
1253
1253
|
'''
|
|
@@ -1257,7 +1257,7 @@ class CfnSchema(
|
|
|
1257
1257
|
|
|
1258
1258
|
@builtins.property
|
|
1259
1259
|
def value(self) -> builtins.str:
|
|
1260
|
-
'''
|
|
1260
|
+
'''The value of a key-value pair.
|
|
1261
1261
|
|
|
1262
1262
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eventschemas-schema-tagsentry.html#cfn-eventschemas-schema-tagsentry-value
|
|
1263
1263
|
'''
|
aws_cdk/aws_gamelift/__init__.py
CHANGED
|
@@ -460,7 +460,7 @@ class CfnBuild(
|
|
|
460
460
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
461
461
|
:param name: A descriptive label that is associated with a build. Build names do not need to be unique.
|
|
462
462
|
:param operating_system: The operating system that your game server binaries run on. This value determines the type of fleet resources that you use for this build. If your game build contains multiple executables, they all must run on the same operating system. You must specify a valid operating system in this request. There is no default value. You can't change a build's operating system later. .. epigraph:: If you have active fleets using the Windows Server 2012 operating system, you can continue to create new builds using this OS until October 10, 2023, when Microsoft ends its support. All others must use Windows Server 2016 when creating new Windows-based builds.
|
|
463
|
-
:param server_sdk_version:
|
|
463
|
+
:param server_sdk_version: The Amazon GameLift Server SDK version used to develop your game server.
|
|
464
464
|
:param storage_location: Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. If a ``StorageLocation`` is specified, the size of your file can be found in your Amazon S3 bucket. Amazon GameLift will report a ``SizeOnDisk`` of 0.
|
|
465
465
|
:param version: Version information that is associated with this build. Version strings do not need to be unique.
|
|
466
466
|
'''
|
|
@@ -553,7 +553,7 @@ class CfnBuild(
|
|
|
553
553
|
@builtins.property
|
|
554
554
|
@jsii.member(jsii_name="serverSdkVersion")
|
|
555
555
|
def server_sdk_version(self) -> typing.Optional[builtins.str]:
|
|
556
|
-
'''
|
|
556
|
+
'''The Amazon GameLift Server SDK version used to develop your game server.'''
|
|
557
557
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverSdkVersion"))
|
|
558
558
|
|
|
559
559
|
@server_sdk_version.setter
|
|
@@ -734,7 +734,7 @@ class CfnBuildProps:
|
|
|
734
734
|
|
|
735
735
|
:param name: A descriptive label that is associated with a build. Build names do not need to be unique.
|
|
736
736
|
:param operating_system: The operating system that your game server binaries run on. This value determines the type of fleet resources that you use for this build. If your game build contains multiple executables, they all must run on the same operating system. You must specify a valid operating system in this request. There is no default value. You can't change a build's operating system later. .. epigraph:: If you have active fleets using the Windows Server 2012 operating system, you can continue to create new builds using this OS until October 10, 2023, when Microsoft ends its support. All others must use Windows Server 2016 when creating new Windows-based builds.
|
|
737
|
-
:param server_sdk_version:
|
|
737
|
+
:param server_sdk_version: The Amazon GameLift Server SDK version used to develop your game server.
|
|
738
738
|
:param storage_location: Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an Amazon S3 bucket that you own. The storage location must specify an Amazon S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your Amazon S3 bucket. The S3 bucket and your new build must be in the same Region. If a ``StorageLocation`` is specified, the size of your file can be found in your Amazon S3 bucket. Amazon GameLift will report a ``SizeOnDisk`` of 0.
|
|
739
739
|
:param version: Version information that is associated with this build. Version strings do not need to be unique.
|
|
740
740
|
|
|
@@ -808,9 +808,7 @@ class CfnBuildProps:
|
|
|
808
808
|
|
|
809
809
|
@builtins.property
|
|
810
810
|
def server_sdk_version(self) -> typing.Optional[builtins.str]:
|
|
811
|
-
'''
|
|
812
|
-
|
|
813
|
-
For more information see `Integrate games with custom game servers <https://docs.aws.amazon.com/gamelift/latest/developerguide/integration-custom-intro.html>`_ . By default Amazon GameLift sets this value to ``4.0.2`` .
|
|
811
|
+
'''The Amazon GameLift Server SDK version used to develop your game server.
|
|
814
812
|
|
|
815
813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-serversdkversion
|
|
816
814
|
'''
|