aws-cdk-lib 2.184.1__py3-none-any.whl → 2.185.0__py3-none-any.whl

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

Potentially problematic release.


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

Files changed (46) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.184.1.jsii.tgz → aws-cdk-lib@2.185.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +1 -1
  4. aws_cdk/aws_applicationsignals/__init__.py +134 -0
  5. aws_cdk/aws_appsync/__init__.py +0 -8
  6. aws_cdk/aws_athena/__init__.py +143 -0
  7. aws_cdk/aws_backup/__init__.py +4 -2
  8. aws_cdk/aws_batch/__init__.py +9 -0
  9. aws_cdk/aws_bedrock/__init__.py +260 -185
  10. aws_cdk/aws_cassandra/__init__.py +3 -5
  11. aws_cdk/aws_chatbot/__init__.py +41 -0
  12. aws_cdk/aws_codebuild/__init__.py +10 -3
  13. aws_cdk/aws_config/__init__.py +1 -1
  14. aws_cdk/aws_datasync/__init__.py +12 -14
  15. aws_cdk/aws_ec2/__init__.py +148 -19
  16. aws_cdk/aws_ecr/__init__.py +84 -2
  17. aws_cdk/aws_ecs/__init__.py +5 -5
  18. aws_cdk/aws_eks/__init__.py +2 -0
  19. aws_cdk/aws_elasticloadbalancingv2/__init__.py +42 -5
  20. aws_cdk/aws_elasticsearch/__init__.py +1 -1
  21. aws_cdk/aws_events_targets/__init__.py +5 -5
  22. aws_cdk/aws_gamelift/__init__.py +162 -162
  23. aws_cdk/aws_gameliftstreams/__init__.py +199 -59
  24. aws_cdk/aws_iam/__init__.py +56 -25
  25. aws_cdk/aws_imagebuilder/__init__.py +42 -5
  26. aws_cdk/aws_iotfleetwise/__init__.py +15 -6
  27. aws_cdk/aws_kinesisfirehose/__init__.py +113 -110
  28. aws_cdk/aws_logs/__init__.py +21 -27
  29. aws_cdk/aws_msk/__init__.py +9 -48
  30. aws_cdk/aws_opensearchservice/__init__.py +1 -1
  31. aws_cdk/aws_pcs/__init__.py +33 -22
  32. aws_cdk/aws_rds/__init__.py +8 -4
  33. aws_cdk/aws_rum/__init__.py +148 -0
  34. aws_cdk/aws_s3/__init__.py +4 -6
  35. aws_cdk/aws_s3_deployment/__init__.py +2 -0
  36. aws_cdk/aws_sagemaker/__init__.py +524 -0
  37. aws_cdk/aws_ses/__init__.py +9 -9
  38. aws_cdk/aws_sns/__init__.py +12 -12
  39. aws_cdk/cx_api/__init__.py +30 -0
  40. aws_cdk/region_info/__init__.py +2 -2
  41. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/METADATA +1 -1
  42. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/RECORD +46 -46
  43. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/LICENSE +0 -0
  44. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/NOTICE +0 -0
  45. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/WHEEL +0 -0
  46. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/top_level.txt +0 -0
@@ -84,7 +84,11 @@ class CfnApplication(
84
84
  metaclass=jsii.JSIIMeta,
85
85
  jsii_type="aws-cdk-lib.aws_gameliftstreams.CfnApplication",
86
86
  ):
87
- '''Definition of AWS::GameLiftStreams::Application Resource Type.
87
+ '''The ``AWS::GameLiftStreams::Application`` resource defines an Amazon GameLift Streams application.
88
+
89
+ An application specifies the content that you want to stream, such as a game or other software, and its runtime environment (Microsoft Windows, Ubuntu, or Proton).
90
+
91
+ Before you create an Amazon GameLift Streams application, upload your *uncompressed* game files to an Amazon Simple Storage Service (Amazon S3) bucket.
88
92
 
89
93
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html
90
94
  :cloudformationResource: AWS::GameLiftStreams::Application
@@ -130,13 +134,13 @@ class CfnApplication(
130
134
  '''
131
135
  :param scope: Scope in which this resource is defined.
132
136
  :param id: Construct identifier for this resource (unique in its scope).
133
- :param application_source_uri:
134
- :param description:
135
- :param executable_path:
136
- :param runtime_environment:
137
- :param application_log_output_uri:
138
- :param application_log_paths:
139
- :param tags:
137
+ :param application_source_uri: The location of the content that you want to stream. Enter an Amazon S3 URI to a bucket that contains your game or other application. The location can have a multi-level prefix structure, but it must include all the files needed to run the content. Amazon GameLift Streams copies everything under the specified location. This value is immutable. To designate a different content location, create a new application. .. epigraph:: The Amazon S3 bucket and the Amazon GameLift Streams application must be in the same AWS Region.
138
+ :param description: A human-readable label for the application. You can update this value later.
139
+ :param executable_path: The path and file name of the executable file that launches the content for streaming. Enter a path value that is relative to the location set in ``ApplicationSourceUri`` .
140
+ :param runtime_environment: A set of configuration settings to run the application on a stream group. This configures the operating system, and can include compatibility layers and other drivers.
141
+ :param application_log_output_uri: An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs. Required if you specify one or more ``ApplicationLogPaths`` .
142
+ :param application_log_paths: Locations of log files that your content generates during a stream session. Enter path values that are relative to the ``ApplicationSourceUri`` location. You can specify up to 10 log paths. Amazon GameLift Streams uploads designated log files to the Amazon S3 bucket that you specify in ``ApplicationLogOutputUri`` at the end of a stream session. To retrieve stored log files, call `GetStreamSession <https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html>`_ and get the ``LogFileLocationUri`` .
143
+ :param tags: A list of labels to assign to the new application resource. Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See `Tagging AWS Resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ in the *AWS General Reference* .
140
144
  '''
141
145
  if __debug__:
142
146
  type_hints = typing.get_type_hints(_typecheckingstub__98acfa7b89cf716a7d04ae3a442e9ce27afcc5fb822ef47ddf9f1d824dffcb57)
@@ -187,7 +191,10 @@ class CfnApplication(
187
191
  @builtins.property
188
192
  @jsii.member(jsii_name="attrArn")
189
193
  def attr_arn(self) -> builtins.str:
190
- '''
194
+ '''An `Amazon Resource Name (ARN) <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html>`_ that uniquely identifies the application resource across all AWS Regions. For example:.
195
+
196
+ ``arn:aws:gameliftstreams:us-west-2:123456789012:application/a-9ZY8X7Wv6`` .
197
+
191
198
  :cloudformationAttribute: Arn
192
199
  '''
193
200
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
@@ -195,7 +202,10 @@ class CfnApplication(
195
202
  @builtins.property
196
203
  @jsii.member(jsii_name="attrId")
197
204
  def attr_id(self) -> builtins.str:
198
- '''
205
+ '''An ID that uniquely identifies the application resource.
206
+
207
+ For example: ``a-9ZY8X7Wv6`` .
208
+
199
209
  :cloudformationAttribute: Id
200
210
  '''
201
211
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
@@ -214,6 +224,7 @@ class CfnApplication(
214
224
  @builtins.property
215
225
  @jsii.member(jsii_name="applicationSourceUri")
216
226
  def application_source_uri(self) -> builtins.str:
227
+ '''The location of the content that you want to stream.'''
217
228
  return typing.cast(builtins.str, jsii.get(self, "applicationSourceUri"))
218
229
 
219
230
  @application_source_uri.setter
@@ -226,6 +237,7 @@ class CfnApplication(
226
237
  @builtins.property
227
238
  @jsii.member(jsii_name="description")
228
239
  def description(self) -> builtins.str:
240
+ '''A human-readable label for the application.'''
229
241
  return typing.cast(builtins.str, jsii.get(self, "description"))
230
242
 
231
243
  @description.setter
@@ -238,6 +250,7 @@ class CfnApplication(
238
250
  @builtins.property
239
251
  @jsii.member(jsii_name="executablePath")
240
252
  def executable_path(self) -> builtins.str:
253
+ '''The path and file name of the executable file that launches the content for streaming.'''
241
254
  return typing.cast(builtins.str, jsii.get(self, "executablePath"))
242
255
 
243
256
  @executable_path.setter
@@ -252,6 +265,7 @@ class CfnApplication(
252
265
  def runtime_environment(
253
266
  self,
254
267
  ) -> typing.Union[_IResolvable_da3f097b, "CfnApplication.RuntimeEnvironmentProperty"]:
268
+ '''A set of configuration settings to run the application on a stream group.'''
255
269
  return typing.cast(typing.Union[_IResolvable_da3f097b, "CfnApplication.RuntimeEnvironmentProperty"], jsii.get(self, "runtimeEnvironment"))
256
270
 
257
271
  @runtime_environment.setter
@@ -267,6 +281,7 @@ class CfnApplication(
267
281
  @builtins.property
268
282
  @jsii.member(jsii_name="applicationLogOutputUri")
269
283
  def application_log_output_uri(self) -> typing.Optional[builtins.str]:
284
+ '''An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs.'''
270
285
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "applicationLogOutputUri"))
271
286
 
272
287
  @application_log_output_uri.setter
@@ -279,6 +294,7 @@ class CfnApplication(
279
294
  @builtins.property
280
295
  @jsii.member(jsii_name="applicationLogPaths")
281
296
  def application_log_paths(self) -> typing.Optional[typing.List[builtins.str]]:
297
+ '''Locations of log files that your content generates during a stream session.'''
282
298
  return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "applicationLogPaths"))
283
299
 
284
300
  @application_log_paths.setter
@@ -294,6 +310,7 @@ class CfnApplication(
294
310
  @builtins.property
295
311
  @jsii.member(jsii_name="tags")
296
312
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
313
+ '''A list of labels to assign to the new application resource.'''
297
314
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
298
315
 
299
316
  @tags.setter
@@ -313,9 +330,21 @@ class CfnApplication(
313
330
  )
314
331
  class RuntimeEnvironmentProperty:
315
332
  def __init__(self, *, type: builtins.str, version: builtins.str) -> None:
316
- '''
317
- :param type:
318
- :param version:
333
+ '''Configuration settings that identify the operating system for an application resource.
334
+
335
+ This can also include a compatibility layer and other drivers.
336
+
337
+ A runtime environment can be one of the following:
338
+
339
+ - For Linux applications
340
+ - Ubuntu 22.04 LTS ( ``Type=UBUNTU, Version=22_04_LTS`` )
341
+ - For Windows applications
342
+ - Microsoft Windows Server 2022 Base ( ``Type=WINDOWS, Version=2022`` )
343
+ - Proton 8.0-5 ( ``Type=PROTON, Version=20241007`` )
344
+ - Proton 8.0-2c ( ``Type=PROTON, Version=20230704`` )
345
+
346
+ :param type: The operating system and other drivers. For Proton, this also includes the Proton compatibility layer.
347
+ :param version: Versioned container environment for the application operating system.
319
348
 
320
349
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-application-runtimeenvironment.html
321
350
  :exampleMetadata: fixture=_generated
@@ -342,7 +371,10 @@ class CfnApplication(
342
371
 
343
372
  @builtins.property
344
373
  def type(self) -> builtins.str:
345
- '''
374
+ '''The operating system and other drivers.
375
+
376
+ For Proton, this also includes the Proton compatibility layer.
377
+
346
378
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-application-runtimeenvironment.html#cfn-gameliftstreams-application-runtimeenvironment-type
347
379
  '''
348
380
  result = self._values.get("type")
@@ -351,7 +383,8 @@ class CfnApplication(
351
383
 
352
384
  @builtins.property
353
385
  def version(self) -> builtins.str:
354
- '''
386
+ '''Versioned container environment for the application operating system.
387
+
355
388
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-application-runtimeenvironment.html#cfn-gameliftstreams-application-runtimeenvironment-version
356
389
  '''
357
390
  result = self._values.get("version")
@@ -397,13 +430,13 @@ class CfnApplicationProps:
397
430
  ) -> None:
398
431
  '''Properties for defining a ``CfnApplication``.
399
432
 
400
- :param application_source_uri:
401
- :param description:
402
- :param executable_path:
403
- :param runtime_environment:
404
- :param application_log_output_uri:
405
- :param application_log_paths:
406
- :param tags:
433
+ :param application_source_uri: The location of the content that you want to stream. Enter an Amazon S3 URI to a bucket that contains your game or other application. The location can have a multi-level prefix structure, but it must include all the files needed to run the content. Amazon GameLift Streams copies everything under the specified location. This value is immutable. To designate a different content location, create a new application. .. epigraph:: The Amazon S3 bucket and the Amazon GameLift Streams application must be in the same AWS Region.
434
+ :param description: A human-readable label for the application. You can update this value later.
435
+ :param executable_path: The path and file name of the executable file that launches the content for streaming. Enter a path value that is relative to the location set in ``ApplicationSourceUri`` .
436
+ :param runtime_environment: A set of configuration settings to run the application on a stream group. This configures the operating system, and can include compatibility layers and other drivers.
437
+ :param application_log_output_uri: An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs. Required if you specify one or more ``ApplicationLogPaths`` .
438
+ :param application_log_paths: Locations of log files that your content generates during a stream session. Enter path values that are relative to the ``ApplicationSourceUri`` location. You can specify up to 10 log paths. Amazon GameLift Streams uploads designated log files to the Amazon S3 bucket that you specify in ``ApplicationLogOutputUri`` at the end of a stream session. To retrieve stored log files, call `GetStreamSession <https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html>`_ and get the ``LogFileLocationUri`` .
439
+ :param tags: A list of labels to assign to the new application resource. Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See `Tagging AWS Resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ in the *AWS General Reference* .
407
440
 
408
441
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html
409
442
  :exampleMetadata: fixture=_generated
@@ -455,7 +488,15 @@ class CfnApplicationProps:
455
488
 
456
489
  @builtins.property
457
490
  def application_source_uri(self) -> builtins.str:
458
- '''
491
+ '''The location of the content that you want to stream.
492
+
493
+ Enter an Amazon S3 URI to a bucket that contains your game or other application. The location can have a multi-level prefix structure, but it must include all the files needed to run the content. Amazon GameLift Streams copies everything under the specified location.
494
+
495
+ This value is immutable. To designate a different content location, create a new application.
496
+ .. epigraph::
497
+
498
+ The Amazon S3 bucket and the Amazon GameLift Streams application must be in the same AWS Region.
499
+
459
500
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-applicationsourceuri
460
501
  '''
461
502
  result = self._values.get("application_source_uri")
@@ -464,7 +505,10 @@ class CfnApplicationProps:
464
505
 
465
506
  @builtins.property
466
507
  def description(self) -> builtins.str:
467
- '''
508
+ '''A human-readable label for the application.
509
+
510
+ You can update this value later.
511
+
468
512
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-description
469
513
  '''
470
514
  result = self._values.get("description")
@@ -473,7 +517,10 @@ class CfnApplicationProps:
473
517
 
474
518
  @builtins.property
475
519
  def executable_path(self) -> builtins.str:
476
- '''
520
+ '''The path and file name of the executable file that launches the content for streaming.
521
+
522
+ Enter a path value that is relative to the location set in ``ApplicationSourceUri`` .
523
+
477
524
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-executablepath
478
525
  '''
479
526
  result = self._values.get("executable_path")
@@ -484,7 +531,10 @@ class CfnApplicationProps:
484
531
  def runtime_environment(
485
532
  self,
486
533
  ) -> typing.Union[_IResolvable_da3f097b, CfnApplication.RuntimeEnvironmentProperty]:
487
- '''
534
+ '''A set of configuration settings to run the application on a stream group.
535
+
536
+ This configures the operating system, and can include compatibility layers and other drivers.
537
+
488
538
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-runtimeenvironment
489
539
  '''
490
540
  result = self._values.get("runtime_environment")
@@ -493,7 +543,10 @@ class CfnApplicationProps:
493
543
 
494
544
  @builtins.property
495
545
  def application_log_output_uri(self) -> typing.Optional[builtins.str]:
496
- '''
546
+ '''An Amazon S3 URI to a bucket where you would like Amazon GameLift Streams to save application logs.
547
+
548
+ Required if you specify one or more ``ApplicationLogPaths`` .
549
+
497
550
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-applicationlogoutputuri
498
551
  '''
499
552
  result = self._values.get("application_log_output_uri")
@@ -501,7 +554,10 @@ class CfnApplicationProps:
501
554
 
502
555
  @builtins.property
503
556
  def application_log_paths(self) -> typing.Optional[typing.List[builtins.str]]:
504
- '''
557
+ '''Locations of log files that your content generates during a stream session.
558
+
559
+ Enter path values that are relative to the ``ApplicationSourceUri`` location. You can specify up to 10 log paths. Amazon GameLift Streams uploads designated log files to the Amazon S3 bucket that you specify in ``ApplicationLogOutputUri`` at the end of a stream session. To retrieve stored log files, call `GetStreamSession <https://docs.aws.amazon.com/gameliftstreams/latest/apireference/API_GetStreamSession.html>`_ and get the ``LogFileLocationUri`` .
560
+
505
561
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-applicationlogpaths
506
562
  '''
507
563
  result = self._values.get("application_log_paths")
@@ -509,7 +565,10 @@ class CfnApplicationProps:
509
565
 
510
566
  @builtins.property
511
567
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
512
- '''
568
+ '''A list of labels to assign to the new application resource.
569
+
570
+ Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See `Tagging AWS Resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ in the *AWS General Reference* .
571
+
513
572
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-application.html#cfn-gameliftstreams-application-tags
514
573
  '''
515
574
  result = self._values.get("tags")
@@ -533,7 +592,18 @@ class CfnStreamGroup(
533
592
  metaclass=jsii.JSIIMeta,
534
593
  jsii_type="aws-cdk-lib.aws_gameliftstreams.CfnStreamGroup",
535
594
  ):
536
- '''Definition of AWS::GameLiftStreams::StreamGroup Resource Type.
595
+ '''The ``AWS::GameLiftStreams::StreamGroup`` resource defines a group of compute resources that will be running and streaming your game.
596
+
597
+ When you create a stream group, you specify the hardware configuration (CPU, GPU, RAM) that will run your game (known as the *stream class* ), the geographical locations where your game can run, and the number of streams that can run simultaneously in each location (known as *stream capacity* ). Stream groups manage how Amazon GameLift Streams allocates resources and handles concurrent streams, allowing you to effectively manage capacity and costs.
598
+
599
+ There are two types of stream capacity: always-on and on-demand.
600
+
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).
603
+
604
+ .. epigraph::
605
+
606
+ Application association is not currently supported in AWS CloudFormation . To link additional applications to a stream group, use the Amazon GameLift Streams console or the AWS CLI .
537
607
 
538
608
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html
539
609
  :cloudformationResource: AWS::GameLiftStreams::StreamGroup
@@ -581,11 +651,11 @@ class CfnStreamGroup(
581
651
  '''
582
652
  :param scope: Scope in which this resource is defined.
583
653
  :param id: Construct identifier for this resource (unique in its scope).
584
- :param description:
585
- :param location_configurations:
586
- :param stream_class:
587
- :param default_application:
588
- :param tags:
654
+ :param description: A descriptive label for the stream group.
655
+ :param location_configurations: A set of one or more locations and the streaming capacity for each location. One of the locations MUST be your primary location, which is the AWS Region where you are specifying this resource.
656
+ :param stream_class: The target stream quality for sessions that are hosted in this stream group. Set a stream class that is appropriate to the type of content that you're streaming. Stream class determines the type of computing resources Amazon GameLift Streams uses and impacts the cost of streaming. The following options are available: A stream class can be one of the following: - *``gen5n_win2022`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Runs applications on Microsoft Windows Server 2022 Base and supports DirectX 12. Compatible with Unreal Engine versions up through 5.4, 32 and 64-bit applications, and anti-cheat technology. Uses NVIDIA A10G Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 24 GB VRAM - Tenancy: Supports 1 concurrent stream session - *``gen5n_high`` (NVIDIA, high)* Supports applications with moderate to high 3D scene complexity. Uses NVIDIA A10G Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 4 vCPUs, 16 GB RAM, 12 GB VRAM - Tenancy: Supports up to 2 concurrent stream sessions - *``gen5n_ultra`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Uses dedicated NVIDIA A10G Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 24 GB VRAM - Tenancy: Supports 1 concurrent stream session - *``gen4n_win2022`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Runs applications on Microsoft Windows Server 2022 Base and supports DirectX 12. Compatible with Unreal Engine versions up through 5.4, 32 and 64-bit applications, and anti-cheat technology. Uses NVIDIA T4 Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 16 GB VRAM - Tenancy: Supports 1 concurrent stream session - *``gen4n_high`` (NVIDIA, high)* Supports applications with moderate to high 3D scene complexity. Uses NVIDIA T4 Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 4 vCPUs, 16 GB RAM, 8 GB VRAM - Tenancy: Supports up to 2 concurrent stream sessions - *``gen4n_ultra`` (NVIDIA, ultra)* Supports applications with high 3D scene complexity. Uses dedicated NVIDIA T4 Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 16 GB VRAM - Tenancy: Supports 1 concurrent stream session
657
+ :param default_application: Object that identifies the Amazon GameLift Streams application to stream with this stream group.
658
+ :param tags: A list of labels to assign to the new stream group resource. Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See `Tagging AWS Resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ in the *AWS General Reference* .
589
659
  '''
590
660
  if __debug__:
591
661
  type_hints = typing.get_type_hints(_typecheckingstub__79f0f973b06de7ae1a48df1df69579c9c8dfd0885945a959686fdddf31cc2674)
@@ -634,7 +704,8 @@ class CfnStreamGroup(
634
704
  @builtins.property
635
705
  @jsii.member(jsii_name="attrArn")
636
706
  def attr_arn(self) -> builtins.str:
637
- '''
707
+ '''An `Amazon Resource Name (ARN) <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html>`_ that uniquely identifies the stream group resource. For example: ``arn:aws:gameliftstreams:us-west-2:123456789012:streamgroup/sg-1AB2C3De4`` .
708
+
638
709
  :cloudformationAttribute: Arn
639
710
  '''
640
711
  return typing.cast(builtins.str, jsii.get(self, "attrArn"))
@@ -642,7 +713,10 @@ class CfnStreamGroup(
642
713
  @builtins.property
643
714
  @jsii.member(jsii_name="attrId")
644
715
  def attr_id(self) -> builtins.str:
645
- '''
716
+ '''An ID that uniquely identifies the stream group resource.
717
+
718
+ For example: ``sg-1AB2C3De4`` .
719
+
646
720
  :cloudformationAttribute: Id
647
721
  '''
648
722
  return typing.cast(builtins.str, jsii.get(self, "attrId"))
@@ -661,6 +735,7 @@ class CfnStreamGroup(
661
735
  @builtins.property
662
736
  @jsii.member(jsii_name="description")
663
737
  def description(self) -> builtins.str:
738
+ '''A descriptive label for the stream group.'''
664
739
  return typing.cast(builtins.str, jsii.get(self, "description"))
665
740
 
666
741
  @description.setter
@@ -675,6 +750,7 @@ class CfnStreamGroup(
675
750
  def location_configurations(
676
751
  self,
677
752
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnStreamGroup.LocationConfigurationProperty"]]]:
753
+ '''A set of one or more locations and the streaming capacity for each location.'''
678
754
  return typing.cast(typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnStreamGroup.LocationConfigurationProperty"]]], jsii.get(self, "locationConfigurations"))
679
755
 
680
756
  @location_configurations.setter
@@ -690,6 +766,7 @@ class CfnStreamGroup(
690
766
  @builtins.property
691
767
  @jsii.member(jsii_name="streamClass")
692
768
  def stream_class(self) -> builtins.str:
769
+ '''The target stream quality for sessions that are hosted in this stream group.'''
693
770
  return typing.cast(builtins.str, jsii.get(self, "streamClass"))
694
771
 
695
772
  @stream_class.setter
@@ -704,6 +781,7 @@ class CfnStreamGroup(
704
781
  def default_application(
705
782
  self,
706
783
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStreamGroup.DefaultApplicationProperty"]]:
784
+ '''Object that identifies the Amazon GameLift Streams application to stream with this stream group.'''
707
785
  return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnStreamGroup.DefaultApplicationProperty"]], jsii.get(self, "defaultApplication"))
708
786
 
709
787
  @default_application.setter
@@ -719,6 +797,7 @@ class CfnStreamGroup(
719
797
  @builtins.property
720
798
  @jsii.member(jsii_name="tags")
721
799
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
800
+ '''A list of labels to assign to the new stream group resource.'''
722
801
  return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "tags"))
723
802
 
724
803
  @tags.setter
@@ -743,9 +822,10 @@ class CfnStreamGroup(
743
822
  arn: typing.Optional[builtins.str] = None,
744
823
  id: typing.Optional[builtins.str] = None,
745
824
  ) -> None:
746
- '''
747
- :param arn:
748
- :param id:
825
+ '''Represents the default Amazon GameLift Streams application that a stream group hosts.
826
+
827
+ :param arn: An `Amazon Resource Name (ARN) <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html>`_ that uniquely identifies the application resource. Format example: ``arn:aws:gameliftstreams:us-west-2:123456789012:application/a-9ZY8X7Wv6`` .
828
+ :param id: An ID that uniquely identifies the application resource. For example: ``a-9ZY8X7Wv6`` .
749
829
 
750
830
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-defaultapplication.html
751
831
  :exampleMetadata: fixture=_generated
@@ -773,7 +853,8 @@ class CfnStreamGroup(
773
853
 
774
854
  @builtins.property
775
855
  def arn(self) -> typing.Optional[builtins.str]:
776
- '''
856
+ '''An `Amazon Resource Name (ARN) <https://docs.aws.amazon.com/IAM/latest/UserGuide/reference-arns.html>`_ that uniquely identifies the application resource. Format example: ``arn:aws:gameliftstreams:us-west-2:123456789012:application/a-9ZY8X7Wv6`` .
857
+
777
858
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-defaultapplication.html#cfn-gameliftstreams-streamgroup-defaultapplication-arn
778
859
  '''
779
860
  result = self._values.get("arn")
@@ -781,7 +862,10 @@ class CfnStreamGroup(
781
862
 
782
863
  @builtins.property
783
864
  def id(self) -> typing.Optional[builtins.str]:
784
- '''
865
+ '''An ID that uniquely identifies the application resource.
866
+
867
+ For example: ``a-9ZY8X7Wv6`` .
868
+
785
869
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-defaultapplication.html#cfn-gameliftstreams-streamgroup-defaultapplication-id
786
870
  '''
787
871
  result = self._values.get("id")
@@ -815,10 +899,13 @@ class CfnStreamGroup(
815
899
  always_on_capacity: typing.Optional[jsii.Number] = None,
816
900
  on_demand_capacity: typing.Optional[jsii.Number] = None,
817
901
  ) -> None:
818
- '''
819
- :param location_name:
820
- :param always_on_capacity:
821
- :param on_demand_capacity:
902
+ '''Configuration settings that define a stream group's stream capacity for a location.
903
+
904
+ 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
+ :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 and quotas <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).
822
909
 
823
910
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html
824
911
  :exampleMetadata: fixture=_generated
@@ -852,7 +939,10 @@ class CfnStreamGroup(
852
939
 
853
940
  @builtins.property
854
941
  def location_name(self) -> builtins.str:
855
- '''
942
+ '''A location's name.
943
+
944
+ For example, ``us-east-1`` . For a complete list of locations that Amazon GameLift Streams supports, refer to `Regions and quotas <https://docs.aws.amazon.com/gameliftstreams/latest/developerguide/regions-quotas.html>`_ in the *Amazon GameLift Streams Developer Guide* .
945
+
856
946
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html#cfn-gameliftstreams-streamgroup-locationconfiguration-locationname
857
947
  '''
858
948
  result = self._values.get("location_name")
@@ -861,7 +951,10 @@ class CfnStreamGroup(
861
951
 
862
952
  @builtins.property
863
953
  def always_on_capacity(self) -> typing.Optional[jsii.Number]:
864
- '''
954
+ '''The streaming capacity that is allocated and ready to handle stream requests without delay.
955
+
956
+ You pay for this capacity whether it's in use or not. Best for quickest time from streaming request to streaming session.
957
+
865
958
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html#cfn-gameliftstreams-streamgroup-locationconfiguration-alwaysoncapacity
866
959
  '''
867
960
  result = self._values.get("always_on_capacity")
@@ -869,7 +962,10 @@ class CfnStreamGroup(
869
962
 
870
963
  @builtins.property
871
964
  def on_demand_capacity(self) -> typing.Optional[jsii.Number]:
872
- '''
965
+ '''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
+ This offers a cost control measure at the expense of a greater startup time (typically under 5 minutes).
968
+
873
969
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gameliftstreams-streamgroup-locationconfiguration.html#cfn-gameliftstreams-streamgroup-locationconfiguration-ondemandcapacity
874
970
  '''
875
971
  result = self._values.get("on_demand_capacity")
@@ -910,11 +1006,11 @@ class CfnStreamGroupProps:
910
1006
  ) -> None:
911
1007
  '''Properties for defining a ``CfnStreamGroup``.
912
1008
 
913
- :param description:
914
- :param location_configurations:
915
- :param stream_class:
916
- :param default_application:
917
- :param tags:
1009
+ :param description: A descriptive label for the stream group.
1010
+ :param location_configurations: A set of one or more locations and the streaming capacity for each location. One of the locations MUST be your primary location, which is the AWS Region where you are specifying this resource.
1011
+ :param stream_class: The target stream quality for sessions that are hosted in this stream group. Set a stream class that is appropriate to the type of content that you're streaming. Stream class determines the type of computing resources Amazon GameLift Streams uses and impacts the cost of streaming. The following options are available: A stream class can be one of the following: - *``gen5n_win2022`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Runs applications on Microsoft Windows Server 2022 Base and supports DirectX 12. Compatible with Unreal Engine versions up through 5.4, 32 and 64-bit applications, and anti-cheat technology. Uses NVIDIA A10G Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 24 GB VRAM - Tenancy: Supports 1 concurrent stream session - *``gen5n_high`` (NVIDIA, high)* Supports applications with moderate to high 3D scene complexity. Uses NVIDIA A10G Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 4 vCPUs, 16 GB RAM, 12 GB VRAM - Tenancy: Supports up to 2 concurrent stream sessions - *``gen5n_ultra`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Uses dedicated NVIDIA A10G Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 24 GB VRAM - Tenancy: Supports 1 concurrent stream session - *``gen4n_win2022`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Runs applications on Microsoft Windows Server 2022 Base and supports DirectX 12. Compatible with Unreal Engine versions up through 5.4, 32 and 64-bit applications, and anti-cheat technology. Uses NVIDIA T4 Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 16 GB VRAM - Tenancy: Supports 1 concurrent stream session - *``gen4n_high`` (NVIDIA, high)* Supports applications with moderate to high 3D scene complexity. Uses NVIDIA T4 Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 4 vCPUs, 16 GB RAM, 8 GB VRAM - Tenancy: Supports up to 2 concurrent stream sessions - *``gen4n_ultra`` (NVIDIA, ultra)* Supports applications with high 3D scene complexity. Uses dedicated NVIDIA T4 Tensor GPU. - Reference resolution: 1080p - Reference frame rate: 60 fps - Workload specifications: 8 vCPUs, 32 GB RAM, 16 GB VRAM - Tenancy: Supports 1 concurrent stream session
1012
+ :param default_application: Object that identifies the Amazon GameLift Streams application to stream with this stream group.
1013
+ :param tags: A list of labels to assign to the new stream group resource. Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See `Tagging AWS Resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ in the *AWS General Reference* .
918
1014
 
919
1015
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html
920
1016
  :exampleMetadata: fixture=_generated
@@ -965,7 +1061,8 @@ class CfnStreamGroupProps:
965
1061
 
966
1062
  @builtins.property
967
1063
  def description(self) -> builtins.str:
968
- '''
1064
+ '''A descriptive label for the stream group.
1065
+
969
1066
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html#cfn-gameliftstreams-streamgroup-description
970
1067
  '''
971
1068
  result = self._values.get("description")
@@ -976,7 +1073,10 @@ class CfnStreamGroupProps:
976
1073
  def location_configurations(
977
1074
  self,
978
1075
  ) -> typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnStreamGroup.LocationConfigurationProperty]]]:
979
- '''
1076
+ '''A set of one or more locations and the streaming capacity for each location.
1077
+
1078
+ One of the locations MUST be your primary location, which is the AWS Region where you are specifying this resource.
1079
+
980
1080
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html#cfn-gameliftstreams-streamgroup-locationconfigurations
981
1081
  '''
982
1082
  result = self._values.get("location_configurations")
@@ -985,7 +1085,43 @@ class CfnStreamGroupProps:
985
1085
 
986
1086
  @builtins.property
987
1087
  def stream_class(self) -> builtins.str:
988
- '''
1088
+ '''The target stream quality for sessions that are hosted in this stream group.
1089
+
1090
+ Set a stream class that is appropriate to the type of content that you're streaming. Stream class determines the type of computing resources Amazon GameLift Streams uses and impacts the cost of streaming. The following options are available:
1091
+
1092
+ A stream class can be one of the following:
1093
+
1094
+ - *``gen5n_win2022`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Runs applications on Microsoft Windows Server 2022 Base and supports DirectX 12. Compatible with Unreal Engine versions up through 5.4, 32 and 64-bit applications, and anti-cheat technology. Uses NVIDIA A10G Tensor GPU.
1095
+ - Reference resolution: 1080p
1096
+ - Reference frame rate: 60 fps
1097
+ - Workload specifications: 8 vCPUs, 32 GB RAM, 24 GB VRAM
1098
+ - Tenancy: Supports 1 concurrent stream session
1099
+ - *``gen5n_high`` (NVIDIA, high)* Supports applications with moderate to high 3D scene complexity. Uses NVIDIA A10G Tensor GPU.
1100
+ - Reference resolution: 1080p
1101
+ - Reference frame rate: 60 fps
1102
+ - Workload specifications: 4 vCPUs, 16 GB RAM, 12 GB VRAM
1103
+ - Tenancy: Supports up to 2 concurrent stream sessions
1104
+ - *``gen5n_ultra`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Uses dedicated NVIDIA A10G Tensor GPU.
1105
+ - Reference resolution: 1080p
1106
+ - Reference frame rate: 60 fps
1107
+ - Workload specifications: 8 vCPUs, 32 GB RAM, 24 GB VRAM
1108
+ - Tenancy: Supports 1 concurrent stream session
1109
+ - *``gen4n_win2022`` (NVIDIA, ultra)* Supports applications with extremely high 3D scene complexity. Runs applications on Microsoft Windows Server 2022 Base and supports DirectX 12. Compatible with Unreal Engine versions up through 5.4, 32 and 64-bit applications, and anti-cheat technology. Uses NVIDIA T4 Tensor GPU.
1110
+ - Reference resolution: 1080p
1111
+ - Reference frame rate: 60 fps
1112
+ - Workload specifications: 8 vCPUs, 32 GB RAM, 16 GB VRAM
1113
+ - Tenancy: Supports 1 concurrent stream session
1114
+ - *``gen4n_high`` (NVIDIA, high)* Supports applications with moderate to high 3D scene complexity. Uses NVIDIA T4 Tensor GPU.
1115
+ - Reference resolution: 1080p
1116
+ - Reference frame rate: 60 fps
1117
+ - Workload specifications: 4 vCPUs, 16 GB RAM, 8 GB VRAM
1118
+ - Tenancy: Supports up to 2 concurrent stream sessions
1119
+ - *``gen4n_ultra`` (NVIDIA, ultra)* Supports applications with high 3D scene complexity. Uses dedicated NVIDIA T4 Tensor GPU.
1120
+ - Reference resolution: 1080p
1121
+ - Reference frame rate: 60 fps
1122
+ - Workload specifications: 8 vCPUs, 32 GB RAM, 16 GB VRAM
1123
+ - Tenancy: Supports 1 concurrent stream session
1124
+
989
1125
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html#cfn-gameliftstreams-streamgroup-streamclass
990
1126
  '''
991
1127
  result = self._values.get("stream_class")
@@ -996,7 +1132,8 @@ class CfnStreamGroupProps:
996
1132
  def default_application(
997
1133
  self,
998
1134
  ) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnStreamGroup.DefaultApplicationProperty]]:
999
- '''
1135
+ '''Object that identifies the Amazon GameLift Streams application to stream with this stream group.
1136
+
1000
1137
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html#cfn-gameliftstreams-streamgroup-defaultapplication
1001
1138
  '''
1002
1139
  result = self._values.get("default_application")
@@ -1004,7 +1141,10 @@ class CfnStreamGroupProps:
1004
1141
 
1005
1142
  @builtins.property
1006
1143
  def tags(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
1007
- '''
1144
+ '''A list of labels to assign to the new stream group resource.
1145
+
1146
+ Tags are developer-defined key-value pairs. Tagging AWS resources is useful for resource management, access management and cost allocation. See `Tagging AWS Resources <https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html>`_ in the *AWS General Reference* .
1147
+
1008
1148
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gameliftstreams-streamgroup.html#cfn-gameliftstreams-streamgroup-tags
1009
1149
  '''
1010
1150
  result = self._values.get("tags")