aws-cdk-lib 2.96.2__py3-none-any.whl → 2.97.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.

Files changed (53) hide show
  1. aws_cdk/__init__.py +246 -62
  2. aws_cdk/_jsii/__init__.py +1 -1
  3. aws_cdk/_jsii/{aws-cdk-lib@2.96.2.jsii.tgz → aws-cdk-lib@2.97.1.jsii.tgz} +0 -0
  4. aws_cdk/aws_apigatewayv2/__init__.py +1 -1
  5. aws_cdk/aws_appflow/__init__.py +205 -7
  6. aws_cdk/aws_appstream/__init__.py +33 -28
  7. aws_cdk/aws_appsync/__init__.py +555 -71
  8. aws_cdk/aws_autoscaling/__init__.py +5 -11
  9. aws_cdk/aws_billingconductor/__init__.py +145 -1
  10. aws_cdk/aws_cleanrooms/__init__.py +1198 -86
  11. aws_cdk/aws_cloudformation/__init__.py +221 -55
  12. aws_cdk/aws_cloudwatch/__init__.py +325 -2
  13. aws_cdk/aws_cognito/__init__.py +9 -13
  14. aws_cdk/aws_config/__init__.py +68 -73
  15. aws_cdk/aws_connect/__init__.py +909 -164
  16. aws_cdk/aws_customerprofiles/__init__.py +44 -0
  17. aws_cdk/aws_dms/__init__.py +198 -0
  18. aws_cdk/aws_ec2/__init__.py +593 -73
  19. aws_cdk/aws_ecr/__init__.py +7 -2
  20. aws_cdk/aws_ecs/__init__.py +2 -2
  21. aws_cdk/aws_efs/__init__.py +237 -0
  22. aws_cdk/aws_emr/__init__.py +232 -0
  23. aws_cdk/aws_entityresolution/__init__.py +1702 -0
  24. aws_cdk/aws_events/__init__.py +13 -18
  25. aws_cdk/aws_fms/__init__.py +3 -3
  26. aws_cdk/aws_gamelift/__init__.py +10 -15
  27. aws_cdk/aws_grafana/__init__.py +9 -5
  28. aws_cdk/aws_guardduty/__init__.py +272 -205
  29. aws_cdk/aws_iam/__init__.py +20 -18
  30. aws_cdk/aws_iotwireless/__init__.py +38 -54
  31. aws_cdk/aws_lakeformation/__init__.py +18 -6
  32. aws_cdk/aws_lambda/__init__.py +1 -1
  33. aws_cdk/aws_lightsail/__init__.py +225 -0
  34. aws_cdk/aws_lookoutequipment/__init__.py +4 -4
  35. aws_cdk/aws_macie/__init__.py +5 -3
  36. aws_cdk/aws_mediapackagev2/__init__.py +3227 -0
  37. aws_cdk/aws_pcaconnectorad/__init__.py +6785 -0
  38. aws_cdk/aws_quicksight/__init__.py +189 -116
  39. aws_cdk/aws_rds/__init__.py +316 -9
  40. aws_cdk/aws_resiliencehub/__init__.py +38 -21
  41. aws_cdk/aws_route53resolver/__init__.py +429 -0
  42. aws_cdk/aws_sagemaker/__init__.py +34 -34
  43. aws_cdk/aws_stepfunctions/__init__.py +111 -14
  44. aws_cdk/aws_transfer/__init__.py +2 -2
  45. aws_cdk/aws_vpclattice/__init__.py +128 -120
  46. aws_cdk/aws_workspacesweb/__init__.py +3790 -0
  47. aws_cdk/region_info/__init__.py +49 -0
  48. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/METADATA +2 -2
  49. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/RECORD +53 -49
  50. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/LICENSE +0 -0
  51. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/NOTICE +0 -0
  52. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/WHEEL +0 -0
  53. {aws_cdk_lib-2.96.2.dist-info → aws_cdk_lib-2.97.1.dist-info}/top_level.txt +0 -0
@@ -1409,8 +1409,6 @@ class CfnConnection(
1409
1409
 
1410
1410
  cfn_connection = events.CfnConnection(self, "MyCfnConnection",
1411
1411
  authorization_type="authorizationType",
1412
-
1413
- # the properties below are optional
1414
1412
  auth_parameters=events.CfnConnection.AuthParametersProperty(
1415
1413
  api_key_auth_parameters=events.CfnConnection.ApiKeyAuthParametersProperty(
1416
1414
  api_key_name="apiKeyName",
@@ -1487,7 +1485,7 @@ class CfnConnection(
1487
1485
  scope: _constructs_77d1e7e8.Construct,
1488
1486
  id: builtins.str,
1489
1487
  *,
1490
- authorization_type: builtins.str,
1488
+ authorization_type: typing.Optional[builtins.str] = None,
1491
1489
  auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnConnection.AuthParametersProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
1492
1490
  description: typing.Optional[builtins.str] = None,
1493
1491
  name: typing.Optional[builtins.str] = None,
@@ -1568,12 +1566,12 @@ class CfnConnection(
1568
1566
 
1569
1567
  @builtins.property
1570
1568
  @jsii.member(jsii_name="authorizationType")
1571
- def authorization_type(self) -> builtins.str:
1569
+ def authorization_type(self) -> typing.Optional[builtins.str]:
1572
1570
  '''The type of authorization to use for the connection.'''
1573
- return typing.cast(builtins.str, jsii.get(self, "authorizationType"))
1571
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "authorizationType"))
1574
1572
 
1575
1573
  @authorization_type.setter
1576
- def authorization_type(self, value: builtins.str) -> None:
1574
+ def authorization_type(self, value: typing.Optional[builtins.str]) -> None:
1577
1575
  if __debug__:
1578
1576
  type_hints = typing.get_type_hints(_typecheckingstub__4f51f33cc16a16fcb52edb95bbc7ef5dd0bb5f97e31dd1f331adaf42e9cd3668)
1579
1577
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
@@ -2365,7 +2363,7 @@ class CfnConnectionProps:
2365
2363
  def __init__(
2366
2364
  self,
2367
2365
  *,
2368
- authorization_type: builtins.str,
2366
+ authorization_type: typing.Optional[builtins.str] = None,
2369
2367
  auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
2370
2368
  description: typing.Optional[builtins.str] = None,
2371
2369
  name: typing.Optional[builtins.str] = None,
@@ -2388,8 +2386,6 @@ class CfnConnectionProps:
2388
2386
 
2389
2387
  cfn_connection_props = events.CfnConnectionProps(
2390
2388
  authorization_type="authorizationType",
2391
-
2392
- # the properties below are optional
2393
2389
  auth_parameters=events.CfnConnection.AuthParametersProperty(
2394
2390
  api_key_auth_parameters=events.CfnConnection.ApiKeyAuthParametersProperty(
2395
2391
  api_key_name="apiKeyName",
@@ -2466,9 +2462,9 @@ class CfnConnectionProps:
2466
2462
  check_type(argname="argument auth_parameters", value=auth_parameters, expected_type=type_hints["auth_parameters"])
2467
2463
  check_type(argname="argument description", value=description, expected_type=type_hints["description"])
2468
2464
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
2469
- self._values: typing.Dict[builtins.str, typing.Any] = {
2470
- "authorization_type": authorization_type,
2471
- }
2465
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
2466
+ if authorization_type is not None:
2467
+ self._values["authorization_type"] = authorization_type
2472
2468
  if auth_parameters is not None:
2473
2469
  self._values["auth_parameters"] = auth_parameters
2474
2470
  if description is not None:
@@ -2477,7 +2473,7 @@ class CfnConnectionProps:
2477
2473
  self._values["name"] = name
2478
2474
 
2479
2475
  @builtins.property
2480
- def authorization_type(self) -> builtins.str:
2476
+ def authorization_type(self) -> typing.Optional[builtins.str]:
2481
2477
  '''The type of authorization to use for the connection.
2482
2478
 
2483
2479
  .. epigraph::
@@ -2487,8 +2483,7 @@ class CfnConnectionProps:
2487
2483
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-authorizationtype
2488
2484
  '''
2489
2485
  result = self._values.get("authorization_type")
2490
- assert result is not None, "Required property 'authorization_type' is missing"
2491
- return typing.cast(builtins.str, result)
2486
+ return typing.cast(typing.Optional[builtins.str], result)
2492
2487
 
2493
2488
  @builtins.property
2494
2489
  def auth_parameters(
@@ -11402,7 +11397,7 @@ def _typecheckingstub__65bde9b35de094b905dd335652d04503af85c50ac027a006a1d7ec926
11402
11397
  scope: _constructs_77d1e7e8.Construct,
11403
11398
  id: builtins.str,
11404
11399
  *,
11405
- authorization_type: builtins.str,
11400
+ authorization_type: typing.Optional[builtins.str] = None,
11406
11401
  auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11407
11402
  description: typing.Optional[builtins.str] = None,
11408
11403
  name: typing.Optional[builtins.str] = None,
@@ -11423,7 +11418,7 @@ def _typecheckingstub__9baa06fe2df5d5855b8fea8613ae753f8301c4cdb9f83ba3f45fd5407
11423
11418
  pass
11424
11419
 
11425
11420
  def _typecheckingstub__4f51f33cc16a16fcb52edb95bbc7ef5dd0bb5f97e31dd1f331adaf42e9cd3668(
11426
- value: builtins.str,
11421
+ value: typing.Optional[builtins.str],
11427
11422
  ) -> None:
11428
11423
  """Type checking stubs"""
11429
11424
  pass
@@ -11510,7 +11505,7 @@ def _typecheckingstub__8ef124487a6c31dc58a802230e7bf50f962f08be9cde1fb39c45b429d
11510
11505
 
11511
11506
  def _typecheckingstub__2b32e6c6e8c1c2772bb604474216b07683c108c349058e240d272750b95ff394(
11512
11507
  *,
11513
- authorization_type: builtins.str,
11508
+ authorization_type: typing.Optional[builtins.str] = None,
11514
11509
  auth_parameters: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnConnection.AuthParametersProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
11515
11510
  description: typing.Optional[builtins.str] = None,
11516
11511
  name: typing.Optional[builtins.str] = None,
@@ -343,7 +343,7 @@ class CfnPolicy(
343
343
  :param exclude_map: Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to exclude from the policy. Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time. You can specify inclusions or exclusions, but not both. If you specify an ``IncludeMap`` , AWS Firewall Manager applies the policy to all accounts specified by the ``IncludeMap`` , and does not evaluate any ``ExcludeMap`` specifications. If you do not specify an ``IncludeMap`` , then Firewall Manager applies the policy to all accounts except for those specified by the ``ExcludeMap`` . You can specify account IDs, OUs, or a combination: - Specify account IDs by setting the key to ``ACCOUNT`` . For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”]}`` . - Specify OUs by setting the key to ``ORGUNIT`` . For example, the following is a valid map: ``{“ORGUNIT” : [“ouid111”, “ouid112”]}`` . - Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”], “ORGUNIT” : [“ouid111”, “ouid112”]}`` .
344
344
  :param include_map: Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in the policy. Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time. You can specify inclusions or exclusions, but not both. If you specify an ``IncludeMap`` , AWS Firewall Manager applies the policy to all accounts specified by the ``IncludeMap`` , and does not evaluate any ``ExcludeMap`` specifications. If you do not specify an ``IncludeMap`` , then Firewall Manager applies the policy to all accounts except for those specified by the ``ExcludeMap`` . You can specify account IDs, OUs, or a combination: - Specify account IDs by setting the key to ``ACCOUNT`` . For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”]}`` . - Specify OUs by setting the key to ``ORGUNIT`` . For example, the following is a valid map: ``{“ORGUNIT” : [“ouid111”, “ouid112”]}`` . - Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”], “ORGUNIT” : [“ouid111”, “ouid112”]}`` .
345
345
  :param policy_description: The definition of the AWS Network Firewall firewall policy.
346
- :param resources_clean_up: Indicates whether AWS Firewall Manager should automatically remove protections from resources that leave the policy scope and clean up resources that Firewall Manager is managing for accounts when those accounts leave policy scope. For example, Firewall Manager will disassociate a Firewall Manager managed web ACL from a protected customer resource when the customer resource leaves policy scope. By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources. This option is not available for Shield Advanced or AWS WAF Classic policies.
346
+ :param resources_clean_up: Indicates whether AWS Firewall Manager should automatically remove protections from resources that leave the policy scope and clean up resources that Firewall Manager is managing for accounts when those accounts leave policy scope. For example, Firewall Manager will disassociate a Firewall Manager managed web ACL from a protected customer resource when the customer resource leaves policy scope. By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources. This option is not available for AWS WAF Classic policies.
347
347
  :param resource_set_ids: The unique identifiers of the resource sets used by the policy.
348
348
  :param resource_tags: An array of ``ResourceTag`` objects, used to explicitly include resources in the policy scope or explicitly exclude them. If this isn't set, then tags aren't used to modify policy scope. See also ``ExcludeResourceTags`` .
349
349
  :param resource_type: The type of resource protected by or in scope of the policy. This is in the format shown in the `AWS Resource Types Reference <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html>`_ . To apply this policy to multiple resource types, specify a resource type of ``ResourceTypeList`` and then specify the resource types in a ``ResourceTypeList`` . For AWS WAF and Shield Advanced, example resource types include ``AWS::ElasticLoadBalancingV2::LoadBalancer`` and ``AWS::CloudFront::Distribution`` . For a security group common policy, valid values are ``AWS::EC2::NetworkInterface`` and ``AWS::EC2::Instance`` . For a security group content audit policy, valid values are ``AWS::EC2::SecurityGroup`` , ``AWS::EC2::NetworkInterface`` , and ``AWS::EC2::Instance`` . For a security group usage audit policy, the value is ``AWS::EC2::SecurityGroup`` . For an AWS Network Firewall policy or DNS Firewall policy, the value is ``AWS::EC2::VPC`` .
@@ -1322,7 +1322,7 @@ class CfnPolicyProps:
1322
1322
  :param exclude_map: Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to exclude from the policy. Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time. You can specify inclusions or exclusions, but not both. If you specify an ``IncludeMap`` , AWS Firewall Manager applies the policy to all accounts specified by the ``IncludeMap`` , and does not evaluate any ``ExcludeMap`` specifications. If you do not specify an ``IncludeMap`` , then Firewall Manager applies the policy to all accounts except for those specified by the ``ExcludeMap`` . You can specify account IDs, OUs, or a combination: - Specify account IDs by setting the key to ``ACCOUNT`` . For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”]}`` . - Specify OUs by setting the key to ``ORGUNIT`` . For example, the following is a valid map: ``{“ORGUNIT” : [“ouid111”, “ouid112”]}`` . - Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”], “ORGUNIT” : [“ouid111”, “ouid112”]}`` .
1323
1323
  :param include_map: Specifies the AWS account IDs and AWS Organizations organizational units (OUs) to include in the policy. Specifying an OU is the equivalent of specifying all accounts in the OU and in any of its child OUs, including any child OUs and accounts that are added at a later time. You can specify inclusions or exclusions, but not both. If you specify an ``IncludeMap`` , AWS Firewall Manager applies the policy to all accounts specified by the ``IncludeMap`` , and does not evaluate any ``ExcludeMap`` specifications. If you do not specify an ``IncludeMap`` , then Firewall Manager applies the policy to all accounts except for those specified by the ``ExcludeMap`` . You can specify account IDs, OUs, or a combination: - Specify account IDs by setting the key to ``ACCOUNT`` . For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”]}`` . - Specify OUs by setting the key to ``ORGUNIT`` . For example, the following is a valid map: ``{“ORGUNIT” : [“ouid111”, “ouid112”]}`` . - Specify accounts and OUs together in a single map, separated with a comma. For example, the following is a valid map: ``{“ACCOUNT” : [“accountID1”, “accountID2”], “ORGUNIT” : [“ouid111”, “ouid112”]}`` .
1324
1324
  :param policy_description: The definition of the AWS Network Firewall firewall policy.
1325
- :param resources_clean_up: Indicates whether AWS Firewall Manager should automatically remove protections from resources that leave the policy scope and clean up resources that Firewall Manager is managing for accounts when those accounts leave policy scope. For example, Firewall Manager will disassociate a Firewall Manager managed web ACL from a protected customer resource when the customer resource leaves policy scope. By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources. This option is not available for Shield Advanced or AWS WAF Classic policies.
1325
+ :param resources_clean_up: Indicates whether AWS Firewall Manager should automatically remove protections from resources that leave the policy scope and clean up resources that Firewall Manager is managing for accounts when those accounts leave policy scope. For example, Firewall Manager will disassociate a Firewall Manager managed web ACL from a protected customer resource when the customer resource leaves policy scope. By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources. This option is not available for AWS WAF Classic policies.
1326
1326
  :param resource_set_ids: The unique identifiers of the resource sets used by the policy.
1327
1327
  :param resource_tags: An array of ``ResourceTag`` objects, used to explicitly include resources in the policy scope or explicitly exclude them. If this isn't set, then tags aren't used to modify policy scope. See also ``ExcludeResourceTags`` .
1328
1328
  :param resource_type: The type of resource protected by or in scope of the policy. This is in the format shown in the `AWS Resource Types Reference <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html>`_ . To apply this policy to multiple resource types, specify a resource type of ``ResourceTypeList`` and then specify the resource types in a ``ResourceTypeList`` . For AWS WAF and Shield Advanced, example resource types include ``AWS::ElasticLoadBalancingV2::LoadBalancer`` and ``AWS::CloudFront::Distribution`` . For a security group common policy, valid values are ``AWS::EC2::NetworkInterface`` and ``AWS::EC2::Instance`` . For a security group content audit policy, valid values are ``AWS::EC2::SecurityGroup`` , ``AWS::EC2::NetworkInterface`` , and ``AWS::EC2::Instance`` . For a security group usage audit policy, the value is ``AWS::EC2::SecurityGroup`` . For an AWS Network Firewall policy or DNS Firewall policy, the value is ``AWS::EC2::VPC`` .
@@ -1660,7 +1660,7 @@ class CfnPolicyProps:
1660
1660
 
1661
1661
  By default, Firewall Manager doesn't remove protections or delete Firewall Manager managed resources.
1662
1662
 
1663
- This option is not available for Shield Advanced or AWS WAF Classic policies.
1663
+ This option is not available for AWS WAF Classic policies.
1664
1664
 
1665
1665
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fms-policy.html#cfn-fms-policy-resourcescleanup
1666
1666
  '''
@@ -458,7 +458,7 @@ class CfnBuild(
458
458
  :param id: Construct identifier for this resource (unique in its scope).
459
459
  :param name: A descriptive label that is associated with a build. Build names do not need to be unique.
460
460
  :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.
461
- :param server_sdk_version: A server SDK version you used when integrating your game server build with Amazon GameLift. 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`` .
461
+ :param server_sdk_version: The Amazon GameLift Server SDK version used to develop your game server.
462
462
  :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.
463
463
  :param version: Version information that is associated with this build. Version strings do not need to be unique.
464
464
  '''
@@ -551,7 +551,7 @@ class CfnBuild(
551
551
  @builtins.property
552
552
  @jsii.member(jsii_name="serverSdkVersion")
553
553
  def server_sdk_version(self) -> typing.Optional[builtins.str]:
554
- '''A server SDK version you used when integrating your game server build with Amazon GameLift.'''
554
+ '''The Amazon GameLift Server SDK version used to develop your game server.'''
555
555
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverSdkVersion"))
556
556
 
557
557
  @server_sdk_version.setter
@@ -611,11 +611,10 @@ class CfnBuild(
611
611
  role_arn: builtins.str,
612
612
  object_version: typing.Optional[builtins.str] = None,
613
613
  ) -> None:
614
- '''The location in Amazon S3 where build or script files are stored for access by Amazon GameLift.
615
-
616
- :param bucket: An Amazon S3 bucket identifier. Thename of the S3 bucket. .. epigraph:: Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).
614
+ '''
615
+ :param bucket: An Amazon S3 bucket identifier. This is the name of the S3 bucket.
617
616
  :param key: The name of the zip file that contains the build files or script files.
618
- :param role_arn: The Amazon Resource Name ( `ARN <https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html>`_ ) for an IAM role that allows Amazon GameLift to access the S3 bucket.
617
+ :param role_arn: The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.
619
618
  :param object_version: The version of the file, if object versioning is turned on for the bucket. Amazon GameLift uses this information when retrieving files from your S3 bucket. To retrieve a specific version of the file, provide an object version. To retrieve the latest version of the file, do not set this parameter.
620
619
 
621
620
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html
@@ -652,11 +651,9 @@ class CfnBuild(
652
651
 
653
652
  @builtins.property
654
653
  def bucket(self) -> builtins.str:
655
- '''An Amazon S3 bucket identifier. Thename of the S3 bucket.
654
+ '''An Amazon S3 bucket identifier.
656
655
 
657
- .. epigraph::
658
-
659
- Amazon GameLift doesn't support uploading from Amazon S3 buckets with names that contain a dot (.).
656
+ This is the name of the S3 bucket.
660
657
 
661
658
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storagelocation-bucket
662
659
  '''
@@ -676,7 +673,7 @@ class CfnBuild(
676
673
 
677
674
  @builtins.property
678
675
  def role_arn(self) -> builtins.str:
679
- '''The Amazon Resource Name ( `ARN <https://docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html>`_ ) for an IAM role that allows Amazon GameLift to access the S3 bucket.
676
+ '''The Amazon Resource Name (ARN) for an IAM role that allows Amazon GameLift to access the S3 bucket.
680
677
 
681
678
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storagelocation-rolearn
682
679
  '''
@@ -732,7 +729,7 @@ class CfnBuildProps:
732
729
 
733
730
  :param name: A descriptive label that is associated with a build. Build names do not need to be unique.
734
731
  :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.
735
- :param server_sdk_version: A server SDK version you used when integrating your game server build with Amazon GameLift. 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`` .
732
+ :param server_sdk_version: The Amazon GameLift Server SDK version used to develop your game server.
736
733
  :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.
737
734
  :param version: Version information that is associated with this build. Version strings do not need to be unique.
738
735
 
@@ -806,9 +803,7 @@ class CfnBuildProps:
806
803
 
807
804
  @builtins.property
808
805
  def server_sdk_version(self) -> typing.Optional[builtins.str]:
809
- '''A server SDK version you used when integrating your game server build with Amazon GameLift.
810
-
811
- 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`` .
806
+ '''The Amazon GameLift Server SDK version used to develop your game server.
812
807
 
813
808
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-serversdkversion
814
809
  '''
@@ -147,7 +147,7 @@ class CfnWorkspace(
147
147
  :param client_token: A unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
148
148
  :param data_sources: Specifies the AWS data sources that have been configured to have IAM roles and permissions created to allow Amazon Managed Grafana to read data from these sources. This list is only used when the workspace was created through the AWS console, and the ``permissionType`` is ``SERVICE_MANAGED`` .
149
149
  :param description: The user-defined description of the workspace.
150
- :param grafana_version: Specifies the version of Grafana to support in the new workspace. To get a list of supported version, use the ``ListVersions`` operation.
150
+ :param grafana_version: Specifies the version of Grafana to support in the workspace. Defaults to the latest version on create (for example, 9.4), or the current version of the workspace on update. Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). To know what versions are available to upgrade to for a specific workspace, see the `ListVersions <https://docs.aws.amazon.com/grafana/latest/APIReference/API_ListVersions.html>`_ operation.
151
151
  :param name: The name of the workspace.
152
152
  :param network_access_control: The configuration settings for network access to your workspace.
153
153
  :param notification_destinations: The AWS notification channels that Amazon Managed Grafana can automatically create IAM roles and permissions for, to allow Amazon Managed Grafana to use these channels.
@@ -391,7 +391,7 @@ class CfnWorkspace(
391
391
  @builtins.property
392
392
  @jsii.member(jsii_name="grafanaVersion")
393
393
  def grafana_version(self) -> typing.Optional[builtins.str]:
394
- '''Specifies the version of Grafana to support in the new workspace.'''
394
+ '''Specifies the version of Grafana to support in the workspace.'''
395
395
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "grafanaVersion"))
396
396
 
397
397
  @grafana_version.setter
@@ -1205,7 +1205,7 @@ class CfnWorkspaceProps:
1205
1205
  :param client_token: A unique, case-sensitive, user-provided identifier to ensure the idempotency of the request.
1206
1206
  :param data_sources: Specifies the AWS data sources that have been configured to have IAM roles and permissions created to allow Amazon Managed Grafana to read data from these sources. This list is only used when the workspace was created through the AWS console, and the ``permissionType`` is ``SERVICE_MANAGED`` .
1207
1207
  :param description: The user-defined description of the workspace.
1208
- :param grafana_version: Specifies the version of Grafana to support in the new workspace. To get a list of supported version, use the ``ListVersions`` operation.
1208
+ :param grafana_version: Specifies the version of Grafana to support in the workspace. Defaults to the latest version on create (for example, 9.4), or the current version of the workspace on update. Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4). To know what versions are available to upgrade to for a specific workspace, see the `ListVersions <https://docs.aws.amazon.com/grafana/latest/APIReference/API_ListVersions.html>`_ operation.
1209
1209
  :param name: The name of the workspace.
1210
1210
  :param network_access_control: The configuration settings for network access to your workspace.
1211
1211
  :param notification_destinations: The AWS notification channels that Amazon Managed Grafana can automatically create IAM roles and permissions for, to allow Amazon Managed Grafana to use these channels.
@@ -1392,9 +1392,13 @@ class CfnWorkspaceProps:
1392
1392
 
1393
1393
  @builtins.property
1394
1394
  def grafana_version(self) -> typing.Optional[builtins.str]:
1395
- '''Specifies the version of Grafana to support in the new workspace.
1395
+ '''Specifies the version of Grafana to support in the workspace.
1396
1396
 
1397
- To get a list of supported version, use the ``ListVersions`` operation.
1397
+ Defaults to the latest version on create (for example, 9.4), or the current version of the workspace on update.
1398
+
1399
+ Can only be used to upgrade (for example, from 8.4 to 9.4), not downgrade (for example, from 9.4 to 8.4).
1400
+
1401
+ To know what versions are available to upgrade to for a specific workspace, see the `ListVersions <https://docs.aws.amazon.com/grafana/latest/APIReference/API_ListVersions.html>`_ operation.
1398
1402
 
1399
1403
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-grafana-workspace.html#cfn-grafana-workspace-grafanaversion
1400
1404
  '''