aws-cdk-lib 2.210.0__py3-none-any.whl → 2.212.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.
- aws_cdk/__init__.py +404 -54
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.210.0.jsii.tgz → aws-cdk-lib@2.212.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +2 -1
- aws_cdk/aws_apigateway/__init__.py +2 -0
- aws_cdk/aws_apigatewayv2/__init__.py +1798 -74
- aws_cdk/aws_appconfig/__init__.py +9 -0
- aws_cdk/aws_appintegrations/__init__.py +395 -0
- aws_cdk/aws_arcregionswitch/__init__.py +5080 -0
- aws_cdk/aws_athena/__init__.py +23 -19
- aws_cdk/aws_autoscaling/__init__.py +6 -6
- aws_cdk/aws_batch/__init__.py +725 -55
- aws_cdk/aws_bedrock/__init__.py +18 -0
- aws_cdk/aws_billingconductor/__init__.py +3 -3
- aws_cdk/aws_cassandra/__init__.py +28 -1
- aws_cdk/aws_cloudfront/__init__.py +39 -8
- aws_cdk/aws_codebuild/__init__.py +122 -0
- aws_cdk/aws_codepipeline/__init__.py +51 -50
- aws_cdk/aws_cognito/__init__.py +9 -2
- aws_cdk/aws_connect/__init__.py +40 -15
- aws_cdk/aws_datazone/__init__.py +118 -77
- aws_cdk/aws_dax/__init__.py +39 -0
- aws_cdk/aws_deadline/__init__.py +166 -7
- aws_cdk/aws_docdb/__init__.py +20 -11
- aws_cdk/aws_dynamodb/__init__.py +246 -36
- aws_cdk/aws_ec2/__init__.py +1044 -111
- aws_cdk/aws_ecr/__init__.py +274 -0
- aws_cdk/aws_ecs/__init__.py +1637 -137
- aws_cdk/aws_eks/__init__.py +53 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +31 -17
- aws_cdk/aws_entityresolution/__init__.py +240 -45
- aws_cdk/aws_evs/__init__.py +20 -45
- aws_cdk/aws_gameliftstreams/__init__.py +7 -6
- aws_cdk/aws_glue/__init__.py +18 -9
- aws_cdk/aws_guardduty/__init__.py +1233 -113
- aws_cdk/aws_imagebuilder/__init__.py +34 -20
- aws_cdk/aws_inspectorv2/__init__.py +1516 -0
- aws_cdk/aws_iot/__init__.py +387 -0
- aws_cdk/aws_iotsitewise/__init__.py +1247 -139
- aws_cdk/aws_ivs/__init__.py +443 -33
- aws_cdk/aws_kinesisfirehose/__init__.py +2 -0
- aws_cdk/aws_lakeformation/__init__.py +1 -1
- aws_cdk/aws_lambda/__init__.py +9 -9
- aws_cdk/aws_lightsail/__init__.py +590 -0
- aws_cdk/aws_logs/__init__.py +97 -3
- aws_cdk/aws_medialive/__init__.py +270 -7
- aws_cdk/aws_mediapackagev2/__init__.py +204 -6
- aws_cdk/aws_neptune/__init__.py +41 -2
- aws_cdk/aws_networkfirewall/__init__.py +490 -134
- aws_cdk/aws_observabilityadmin/__init__.py +1468 -0
- aws_cdk/aws_omics/__init__.py +1 -1
- aws_cdk/aws_opensearchserverless/__init__.py +2 -2
- aws_cdk/aws_opensearchservice/__init__.py +128 -0
- aws_cdk/aws_opsworks/__init__.py +125 -125
- aws_cdk/aws_opsworkscm/__init__.py +1 -53
- aws_cdk/aws_pcs/__init__.py +49 -5
- aws_cdk/aws_qbusiness/__init__.py +3 -3
- aws_cdk/aws_quicksight/__init__.py +188 -83
- aws_cdk/aws_rds/__init__.py +245 -103
- aws_cdk/aws_s3/__init__.py +56 -1
- aws_cdk/aws_s3express/__init__.py +56 -1
- aws_cdk/aws_s3tables/__init__.py +2 -2
- aws_cdk/aws_sagemaker/__init__.py +4080 -223
- aws_cdk/aws_ses/__init__.py +172 -9
- aws_cdk/aws_sqs/__init__.py +4 -3
- aws_cdk/aws_ssm/__init__.py +8 -4
- aws_cdk/aws_stepfunctions_tasks/__init__.py +16 -9
- aws_cdk/aws_synthetics/__init__.py +116 -0
- aws_cdk/aws_verifiedpermissions/__init__.py +23 -2
- aws_cdk/aws_wisdom/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +949 -157
- aws_cdk/cx_api/__init__.py +22 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/METADATA +335 -15
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/RECORD +78 -76
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.210.0.dist-info → aws_cdk_lib-2.212.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_evs/__init__.py
CHANGED
|
@@ -85,11 +85,7 @@ class CfnEnvironment(
|
|
|
85
85
|
metaclass=jsii.JSIIMeta,
|
|
86
86
|
jsii_type="aws-cdk-lib.aws_evs.CfnEnvironment",
|
|
87
87
|
):
|
|
88
|
-
'''
|
|
89
|
-
|
|
90
|
-
Amazon EVS is in public preview release and is subject to change.
|
|
91
|
-
|
|
92
|
-
Creates an Amazon EVS environment that runs VCF software, such as SDDC Manager, NSX Manager, and vCenter Server.
|
|
88
|
+
'''Creates an Amazon EVS environment that runs VCF software, such as SDDC Manager, NSX Manager, and vCenter Server.
|
|
93
89
|
|
|
94
90
|
During environment creation, Amazon EVS performs validations on DNS settings, provisions VLAN subnets and hosts, and deploys the supplied version of VCF.
|
|
95
91
|
|
|
@@ -214,7 +210,7 @@ class CfnEnvironment(
|
|
|
214
210
|
:param license_info: The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.
|
|
215
211
|
:param service_access_subnet_id: The subnet that is used to establish connectivity between the Amazon EVS control plane and VPC. Amazon EVS uses this subnet to perform validations and create the environment.
|
|
216
212
|
:param site_id: The Broadcom Site ID that is associated with your Amazon EVS environment. Amazon EVS uses the Broadcom Site ID that you provide to meet Broadcom VCF license usage reporting requirements for Amazon EVS.
|
|
217
|
-
:param terms_accepted: Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance.
|
|
213
|
+
:param terms_accepted: Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance. Amazon EVS does not validate license keys. To validate license keys, visit the Broadcom support portal.
|
|
218
214
|
:param vcf_hostnames: The DNS hostnames to be used by the VCF management appliances in your environment. For environment creation to be successful, each hostname entry must resolve to a domain name that you've registered in your DNS service of choice and configured in the DHCP option set of your VPC. DNS hostnames cannot be changed after environment creation has started.
|
|
219
215
|
:param vcf_version: The VCF version of the environment.
|
|
220
216
|
:param vpc_id: The VPC associated with the environment.
|
|
@@ -613,11 +609,7 @@ class CfnEnvironment(
|
|
|
613
609
|
type: builtins.str,
|
|
614
610
|
impaired_since: typing.Optional[builtins.str] = None,
|
|
615
611
|
) -> None:
|
|
616
|
-
'''
|
|
617
|
-
|
|
618
|
-
Amazon EVS is in public preview release and is subject to change.
|
|
619
|
-
|
|
620
|
-
A check on the environment to identify environment health and validate VMware VCF licensing compliance.
|
|
612
|
+
'''A check on the environment to identify environment health and validate VMware VCF licensing compliance.
|
|
621
613
|
|
|
622
614
|
:param result: The check result.
|
|
623
615
|
:param type: The check type. Amazon EVS performs the following checks. - ``KEY_REUSE`` : checks that the VCF license key is not used by another Amazon EVS environment. This check fails if a used license is added to the environment. - ``KEY_COVERAGE`` : checks that your VCF license key allocates sufficient vCPU cores for all deployed hosts. The check fails when any assigned hosts in the EVS environment are not covered by license keys, or when any unassigned hosts cannot be covered by available vCPU cores in keys. - ``REACHABILITY`` : checks that the Amazon EVS control plane has a persistent connection to SDDC Manager. If Amazon EVS cannot reach the environment, this check fails. - ``HOST_COUNT`` : Checks that your environment has a minimum of 4 hosts, which is a requirement for VCF 5.2.1. If this check fails, you will need to add hosts so that your environment meets this minimum requirement. Amazon EVS only supports environments with 4-16 hosts.
|
|
@@ -710,11 +702,9 @@ class CfnEnvironment(
|
|
|
710
702
|
*,
|
|
711
703
|
private_route_server_peerings: typing.Sequence[builtins.str],
|
|
712
704
|
) -> None:
|
|
713
|
-
'''
|
|
705
|
+
'''The connectivity configuration for the environment.
|
|
714
706
|
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.
|
|
707
|
+
Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.
|
|
718
708
|
|
|
719
709
|
:param private_route_server_peerings: The unique IDs for private route server peers.
|
|
720
710
|
|
|
@@ -780,11 +770,8 @@ class CfnEnvironment(
|
|
|
780
770
|
dedicated_host_id: typing.Optional[builtins.str] = None,
|
|
781
771
|
placement_group_id: typing.Optional[builtins.str] = None,
|
|
782
772
|
) -> None:
|
|
783
|
-
'''
|
|
784
|
-
|
|
785
|
-
Amazon EVS is in public preview release and is subject to change.
|
|
773
|
+
'''An object that represents a host.
|
|
786
774
|
|
|
787
|
-
An object that represents a host.
|
|
788
775
|
.. epigraph::
|
|
789
776
|
|
|
790
777
|
You cannot use ``dedicatedHostId`` and ``placementGroupId`` together in the same ``HostInfoForCreate`` object. This results in a ``ValidationException`` response.
|
|
@@ -899,11 +886,9 @@ class CfnEnvironment(
|
|
|
899
886
|
)
|
|
900
887
|
class InitialVlanInfoProperty:
|
|
901
888
|
def __init__(self, *, cidr: builtins.str) -> None:
|
|
902
|
-
'''
|
|
903
|
-
|
|
904
|
-
Amazon EVS is in public preview release and is subject to change.
|
|
889
|
+
'''An object that represents an initial VLAN subnet for the Amazon EVS environment.
|
|
905
890
|
|
|
906
|
-
|
|
891
|
+
Amazon EVS creates initial VLAN subnets when you first create the environment. Amazon EVS creates the following 10 VLAN subnets: host management VLAN, vMotion VLAN, vSAN VLAN, VTEP VLAN, Edge VTEP VLAN, Management VM VLAN, HCX uplink VLAN, NSX uplink VLAN, expansion VLAN 1, expansion VLAN 2.
|
|
907
892
|
.. epigraph::
|
|
908
893
|
|
|
909
894
|
For each Amazon EVS VLAN subnet, you must specify a non-overlapping CIDR block. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24.
|
|
@@ -984,11 +969,9 @@ class CfnEnvironment(
|
|
|
984
969
|
v_san: typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironment.InitialVlanInfoProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
985
970
|
v_tep: typing.Union[_IResolvable_da3f097b, typing.Union["CfnEnvironment.InitialVlanInfoProperty", typing.Dict[builtins.str, typing.Any]]],
|
|
986
971
|
) -> None:
|
|
987
|
-
'''
|
|
972
|
+
'''The initial VLAN subnets for the environment.
|
|
988
973
|
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
The initial VLAN subnets for the environment. Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.
|
|
974
|
+
Amazon EVS VLAN subnets have a minimum CIDR block size of /28 and a maximum size of /24. Amazon EVS VLAN subnet CIDR blocks must not overlap with other subnets in the VPC.
|
|
992
975
|
|
|
993
976
|
:param edge_v_tep: The edge VTEP VLAN subnet. This VLAN subnet manages traffic flowing between the internal network and external networks, including internet access and other site connections.
|
|
994
977
|
:param expansion_vlan1: An additional VLAN subnet that can be used to extend VCF capabilities once configured. For example, you can configure an expansion VLAN subnet to use NSX Federation for centralized management and synchronization of multiple NSX deployments across different locations.
|
|
@@ -1231,11 +1214,9 @@ class CfnEnvironment(
|
|
|
1231
1214
|
solution_key: builtins.str,
|
|
1232
1215
|
vsan_key: builtins.str,
|
|
1233
1216
|
) -> None:
|
|
1234
|
-
'''
|
|
1217
|
+
'''The license information that Amazon EVS requires to create an environment.
|
|
1235
1218
|
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
|
|
1219
|
+
Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.
|
|
1239
1220
|
|
|
1240
1221
|
:param solution_key: The VCF solution key. This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server. The VCF solution key must cover a minimum of 256 cores.
|
|
1241
1222
|
:param vsan_key: The VSAN license key. This license unlocks vSAN features. The vSAN license key must provide at least 110 TiB of vSAN capacity.
|
|
@@ -1305,11 +1286,9 @@ class CfnEnvironment(
|
|
|
1305
1286
|
)
|
|
1306
1287
|
class SecretProperty:
|
|
1307
1288
|
def __init__(self, *, secret_arn: typing.Optional[builtins.str] = None) -> None:
|
|
1308
|
-
'''
|
|
1289
|
+
'''A managed secret that contains the credentials for installing vCenter Server, NSX, and SDDC Manager.
|
|
1309
1290
|
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
A managed secret that contains the credentials for installing vCenter Server, NSX, and SDDC Manager. During environment creation, the Amazon EVS control plane uses AWS Secrets Manager to create, encrypt, validate, and store secrets. If you choose to delete your environment, Amazon EVS also deletes the secrets that are associated with your environment. Amazon EVS does not provide managed rotation of secrets. We recommend that you rotate secrets regularly to ensure that secrets are not long-lived.
|
|
1291
|
+
During environment creation, the Amazon EVS control plane uses AWS Secrets Manager to create, encrypt, validate, and store secrets. If you choose to delete your environment, Amazon EVS also deletes the secrets that are associated with your environment. Amazon EVS does not provide managed rotation of secrets. We recommend that you rotate secrets regularly to ensure that secrets are not long-lived.
|
|
1313
1292
|
|
|
1314
1293
|
:param secret_arn: The Amazon Resource Name (ARN) of the secret.
|
|
1315
1294
|
|
|
@@ -1364,11 +1343,9 @@ class CfnEnvironment(
|
|
|
1364
1343
|
*,
|
|
1365
1344
|
security_groups: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
1366
1345
|
) -> None:
|
|
1367
|
-
'''
|
|
1368
|
-
|
|
1369
|
-
Amazon EVS is in public preview release and is subject to change.
|
|
1346
|
+
'''The security groups that allow traffic between the Amazon EVS control plane and your VPC for Amazon EVS service access.
|
|
1370
1347
|
|
|
1371
|
-
|
|
1348
|
+
If a security group is not specified, Amazon EVS uses the default security group in your account for service access.
|
|
1372
1349
|
|
|
1373
1350
|
:param security_groups: The security groups that allow service access.
|
|
1374
1351
|
|
|
@@ -1441,11 +1418,9 @@ class CfnEnvironment(
|
|
|
1441
1418
|
sddc_manager: builtins.str,
|
|
1442
1419
|
v_center: builtins.str,
|
|
1443
1420
|
) -> None:
|
|
1444
|
-
'''
|
|
1445
|
-
|
|
1446
|
-
Amazon EVS is in public preview release and is subject to change.
|
|
1421
|
+
'''The DNS hostnames that Amazon EVS uses to install VMware vCenter Server, NSX, SDDC Manager, and Cloud Builder.
|
|
1447
1422
|
|
|
1448
|
-
|
|
1423
|
+
Each hostname must be unique, and resolve to a domain name that you've registered in your DNS service of choice. Hostnames cannot be changed.
|
|
1449
1424
|
|
|
1450
1425
|
VMware VCF requires the deployment of two NSX Edge nodes, and three NSX Manager virtual machines.
|
|
1451
1426
|
|
|
@@ -1650,7 +1625,7 @@ class CfnEnvironmentProps:
|
|
|
1650
1625
|
:param license_info: The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key. The VCF solution key must cover a minimum of 256 cores. The vSAN license key must provide at least 110 TiB of vSAN capacity.
|
|
1651
1626
|
:param service_access_subnet_id: The subnet that is used to establish connectivity between the Amazon EVS control plane and VPC. Amazon EVS uses this subnet to perform validations and create the environment.
|
|
1652
1627
|
:param site_id: The Broadcom Site ID that is associated with your Amazon EVS environment. Amazon EVS uses the Broadcom Site ID that you provide to meet Broadcom VCF license usage reporting requirements for Amazon EVS.
|
|
1653
|
-
:param terms_accepted: Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance.
|
|
1628
|
+
:param terms_accepted: Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment. Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance. Amazon EVS does not validate license keys. To validate license keys, visit the Broadcom support portal.
|
|
1654
1629
|
:param vcf_hostnames: The DNS hostnames to be used by the VCF management appliances in your environment. For environment creation to be successful, each hostname entry must resolve to a domain name that you've registered in your DNS service of choice and configured in the DHCP option set of your VPC. DNS hostnames cannot be changed after environment creation has started.
|
|
1655
1630
|
:param vcf_version: The VCF version of the environment.
|
|
1656
1631
|
:param vpc_id: The VPC associated with the environment.
|
|
@@ -1843,7 +1818,7 @@ class CfnEnvironmentProps:
|
|
|
1843
1818
|
def terms_accepted(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
1844
1819
|
'''Customer confirmation that the customer has purchased and will continue to maintain the required number of VCF software licenses to cover all physical processor cores in the Amazon EVS environment.
|
|
1845
1820
|
|
|
1846
|
-
Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance.
|
|
1821
|
+
Information about your VCF software in Amazon EVS will be shared with Broadcom to verify license compliance. Amazon EVS does not validate license keys. To validate license keys, visit the Broadcom support portal.
|
|
1847
1822
|
|
|
1848
1823
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-termsaccepted
|
|
1849
1824
|
'''
|
|
@@ -340,6 +340,7 @@ class CfnApplication(
|
|
|
340
340
|
- Ubuntu 22.04 LTS ( ``Type=UBUNTU, Version=22_04_LTS`` )
|
|
341
341
|
- For Windows applications
|
|
342
342
|
- Microsoft Windows Server 2022 Base ( ``Type=WINDOWS, Version=2022`` )
|
|
343
|
+
- Proton 9.0-2 ( ``Type=PROTON, Version=20250516`` )
|
|
343
344
|
- Proton 8.0-5 ( ``Type=PROTON, Version=20241007`` )
|
|
344
345
|
- Proton 8.0-2c ( ``Type=PROTON, Version=20230704`` )
|
|
345
346
|
|
|
@@ -598,8 +599,8 @@ class CfnStreamGroup(
|
|
|
598
599
|
|
|
599
600
|
There are two types of stream capacity: always-on and on-demand.
|
|
600
601
|
|
|
601
|
-
- *Always-on* : The streaming capacity that is allocated and ready to handle stream requests without delay. You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session.
|
|
602
|
-
- *On-demand* : The streaming capacity that Amazon GameLift Streams can allocate in response to stream requests, and then de-allocate when the session has terminated. This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes).
|
|
602
|
+
- *Always-on* : The streaming capacity that is allocated and ready to handle stream requests without delay. You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session. Default is 1 when creating a stream group or adding a location.
|
|
603
|
+
- *On-demand* : The streaming capacity that Amazon GameLift Streams can allocate in response to stream requests, and then de-allocate when the session has terminated. This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes). Default is 0 when creating a stream group or adding a location.
|
|
603
604
|
|
|
604
605
|
.. epigraph::
|
|
605
606
|
|
|
@@ -904,8 +905,8 @@ class CfnStreamGroup(
|
|
|
904
905
|
When configuring a location for the first time, you must specify a numeric value for at least one of the two capacity types.
|
|
905
906
|
|
|
906
907
|
:param location_name: A location's name. For example, ``us-east-1`` . For a complete list of locations that Amazon GameLift Streams supports, refer to `Regions, quotas, and limitations <https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/regions-quotas.html>`_ in the *Amazon GameLift Streams Developer Guide* .
|
|
907
|
-
:param always_on_capacity: The streaming capacity that is allocated and ready to handle stream requests without delay. You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session.
|
|
908
|
-
:param on_demand_capacity: The streaming capacity that Amazon GameLift Streams can allocate in response to stream requests, and then de-allocate when the session has terminated. This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes).
|
|
908
|
+
:param always_on_capacity: The streaming capacity that is allocated and ready to handle stream requests without delay. You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session. Default is 1 when creating a stream group or adding a location.
|
|
909
|
+
:param on_demand_capacity: The streaming capacity that Amazon GameLift Streams can allocate in response to stream requests, and then de-allocate when the session has terminated. This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes). Default is 0 when creating a stream group or adding a location.
|
|
909
910
|
|
|
910
911
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html
|
|
911
912
|
:exampleMetadata: fixture=_generated
|
|
@@ -953,7 +954,7 @@ class CfnStreamGroup(
|
|
|
953
954
|
def always_on_capacity(self) -> typing.Optional[jsii.Number]:
|
|
954
955
|
'''The streaming capacity that is allocated and ready to handle stream requests without delay.
|
|
955
956
|
|
|
956
|
-
You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session.
|
|
957
|
+
You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session. Default is 1 when creating a stream group or adding a location.
|
|
957
958
|
|
|
958
959
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html#cfn-gameliftstreams-streamgroup-locationconfiguration-alwaysoncapacity
|
|
959
960
|
'''
|
|
@@ -964,7 +965,7 @@ class CfnStreamGroup(
|
|
|
964
965
|
def on_demand_capacity(self) -> typing.Optional[jsii.Number]:
|
|
965
966
|
'''The streaming capacity that Amazon GameLift Streams can allocate in response to stream requests, and then de-allocate when the session has terminated.
|
|
966
967
|
|
|
967
|
-
This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes).
|
|
968
|
+
This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes). Default is 0 when creating a stream group or adding a location.
|
|
968
969
|
|
|
969
970
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html#cfn-gameliftstreams-streamgroup-locationconfiguration-ondemandcapacity
|
|
970
971
|
'''
|
aws_cdk/aws_glue/__init__.py
CHANGED
|
@@ -7154,7 +7154,7 @@ class CfnJob(
|
|
|
7154
7154
|
:param security_configuration: The name of the ``SecurityConfiguration`` structure to be used with this job.
|
|
7155
7155
|
:param tags: The tags to use with this job.
|
|
7156
7156
|
:param timeout: The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).
|
|
7157
|
-
:param worker_type: The type of predefined worker that is allocated when a job runs.
|
|
7157
|
+
:param worker_type: The type of predefined worker that is allocated when a job runs. AWS Glue provides multiple worker types to accommodate different workload requirements: G Worker Types (General-purpose compute workers): - G.1X: 1 DPU (4 vCPUs, 16 GB memory, 94GB disk) - G.2X: 2 DPU (8 vCPUs, 32 GB memory, 138GB disk) - G.4X: 4 DPU (16 vCPUs, 64 GB memory, 256GB disk) - G.8X: 8 DPU (32 vCPUs, 128 GB memory, 512GB disk) - G.12X: 12 DPU (48 vCPUs, 192 GB memory, 768GB disk) - G.16X: 16 DPU (64 vCPUs, 256 GB memory, 1024GB disk) R Worker Types (Memory-optimized workers): - R.1X: 1 M-DPU (4 vCPUs, 32 GB memory) - R.2X: 2 M-DPU (8 vCPUs, 64 GB memory) - R.4X: 4 M-DPU (16 vCPUs, 128 GB memory) - R.8X: 8 M-DPU (32 vCPUs, 256 GB memory)
|
|
7158
7158
|
'''
|
|
7159
7159
|
if __debug__:
|
|
7160
7160
|
type_hints = typing.get_type_hints(_typecheckingstub__2bea698eff4ea1d2bc08b1ab842f318f77ba719c0241a0959453e26989b5b53e)
|
|
@@ -7919,7 +7919,7 @@ class CfnJobProps:
|
|
|
7919
7919
|
:param security_configuration: The name of the ``SecurityConfiguration`` structure to be used with this job.
|
|
7920
7920
|
:param tags: The tags to use with this job.
|
|
7921
7921
|
:param timeout: The job timeout in minutes. This is the maximum time that a job run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours).
|
|
7922
|
-
:param worker_type: The type of predefined worker that is allocated when a job runs.
|
|
7922
|
+
:param worker_type: The type of predefined worker that is allocated when a job runs. AWS Glue provides multiple worker types to accommodate different workload requirements: G Worker Types (General-purpose compute workers): - G.1X: 1 DPU (4 vCPUs, 16 GB memory, 94GB disk) - G.2X: 2 DPU (8 vCPUs, 32 GB memory, 138GB disk) - G.4X: 4 DPU (16 vCPUs, 64 GB memory, 256GB disk) - G.8X: 8 DPU (32 vCPUs, 128 GB memory, 512GB disk) - G.12X: 12 DPU (48 vCPUs, 192 GB memory, 768GB disk) - G.16X: 16 DPU (64 vCPUs, 256 GB memory, 1024GB disk) R Worker Types (Memory-optimized workers): - R.1X: 1 M-DPU (4 vCPUs, 32 GB memory) - R.2X: 2 M-DPU (8 vCPUs, 64 GB memory) - R.4X: 4 M-DPU (16 vCPUs, 128 GB memory) - R.8X: 8 M-DPU (32 vCPUs, 256 GB memory)
|
|
7923
7923
|
|
|
7924
7924
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html
|
|
7925
7925
|
:exampleMetadata: fixture=_generated
|
|
@@ -8304,14 +8304,23 @@ class CfnJobProps:
|
|
|
8304
8304
|
def worker_type(self) -> typing.Optional[builtins.str]:
|
|
8305
8305
|
'''The type of predefined worker that is allocated when a job runs.
|
|
8306
8306
|
|
|
8307
|
-
|
|
8307
|
+
AWS Glue provides multiple worker types to accommodate different workload requirements:
|
|
8308
8308
|
|
|
8309
|
-
|
|
8310
|
-
|
|
8311
|
-
-
|
|
8312
|
-
-
|
|
8313
|
-
-
|
|
8314
|
-
-
|
|
8309
|
+
G Worker Types (General-purpose compute workers):
|
|
8310
|
+
|
|
8311
|
+
- G.1X: 1 DPU (4 vCPUs, 16 GB memory, 94GB disk)
|
|
8312
|
+
- G.2X: 2 DPU (8 vCPUs, 32 GB memory, 138GB disk)
|
|
8313
|
+
- G.4X: 4 DPU (16 vCPUs, 64 GB memory, 256GB disk)
|
|
8314
|
+
- G.8X: 8 DPU (32 vCPUs, 128 GB memory, 512GB disk)
|
|
8315
|
+
- G.12X: 12 DPU (48 vCPUs, 192 GB memory, 768GB disk)
|
|
8316
|
+
- G.16X: 16 DPU (64 vCPUs, 256 GB memory, 1024GB disk)
|
|
8317
|
+
|
|
8318
|
+
R Worker Types (Memory-optimized workers):
|
|
8319
|
+
|
|
8320
|
+
- R.1X: 1 M-DPU (4 vCPUs, 32 GB memory)
|
|
8321
|
+
- R.2X: 2 M-DPU (8 vCPUs, 64 GB memory)
|
|
8322
|
+
- R.4X: 4 M-DPU (16 vCPUs, 128 GB memory)
|
|
8323
|
+
- R.8X: 8 M-DPU (32 vCPUs, 256 GB memory)
|
|
8315
8324
|
|
|
8316
8325
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-workertype
|
|
8317
8326
|
'''
|