aws-cdk-lib 2.189.1__py3-none-any.whl → 2.191.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/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.189.1.jsii.tgz → aws-cdk-lib@2.191.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +6 -6
- aws_cdk/aws_apigateway/__init__.py +18 -1
- aws_cdk/aws_apigatewayv2/__init__.py +374 -6
- aws_cdk/aws_applicationautoscaling/__init__.py +16 -10
- aws_cdk/aws_applicationsignals/__init__.py +204 -31
- aws_cdk/aws_aps/__init__.py +383 -2
- aws_cdk/aws_backup/__init__.py +0 -41
- aws_cdk/aws_batch/__init__.py +242 -5
- aws_cdk/aws_bedrock/__init__.py +963 -41
- aws_cdk/aws_cleanrooms/__init__.py +1392 -78
- aws_cdk/aws_cloudfront/__init__.py +1 -0
- aws_cdk/aws_cloudtrail/__init__.py +24 -26
- aws_cdk/aws_codebuild/__init__.py +107 -7
- aws_cdk/aws_datazone/__init__.py +23 -1
- aws_cdk/aws_dms/__init__.py +43 -0
- aws_cdk/aws_ec2/__init__.py +364 -30
- aws_cdk/aws_ecs/__init__.py +36 -5
- aws_cdk/aws_eks/__init__.py +2 -100
- aws_cdk/aws_elasticache/__init__.py +6 -11
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +341 -0
- aws_cdk/aws_events/__init__.py +106 -13
- aws_cdk/aws_fsx/__init__.py +9 -21
- aws_cdk/aws_iam/__init__.py +1 -1
- aws_cdk/aws_iot/__init__.py +6 -6
- aws_cdk/aws_kafkaconnect/__init__.py +2 -2
- aws_cdk/aws_kinesis/__init__.py +44 -0
- aws_cdk/aws_launchwizard/__init__.py +49 -49
- aws_cdk/aws_lex/__init__.py +615 -39
- aws_cdk/aws_location/__init__.py +4 -4
- aws_cdk/aws_macie/__init__.py +14 -3
- aws_cdk/aws_memorydb/__init__.py +87 -0
- aws_cdk/aws_msk/__init__.py +226 -127
- aws_cdk/aws_neptune/__init__.py +0 -24
- aws_cdk/aws_opensearchservice/__init__.py +64 -56
- aws_cdk/aws_paymentcryptography/__init__.py +41 -0
- aws_cdk/aws_qbusiness/__init__.py +175 -3
- aws_cdk/aws_quicksight/__init__.py +393 -0
- aws_cdk/aws_rds/__init__.py +149 -120
- aws_cdk/aws_redshiftserverless/__init__.py +4 -14
- aws_cdk/aws_route53resolver/__init__.py +60 -9
- aws_cdk/aws_s3/__init__.py +34 -1
- aws_cdk/aws_s3_deployment/__init__.py +202 -5
- aws_cdk/aws_s3tables/__init__.py +142 -1
- aws_cdk/aws_sagemaker/__init__.py +40 -40
- aws_cdk/aws_ses/__init__.py +643 -18
- aws_cdk/aws_ssmquicksetup/__init__.py +3 -3
- aws_cdk/aws_stepfunctions/__init__.py +720 -45
- aws_cdk/aws_transfer/__init__.py +55 -2
- aws_cdk/pipelines/__init__.py +1 -2
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/RECORD +57 -57
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.189.1.dist-info → aws_cdk_lib-2.191.0.dist-info}/top_level.txt +0 -0
|
@@ -42023,7 +42023,9 @@ class CfnPartnerApp(
|
|
|
42023
42023
|
metaclass=jsii.JSIIMeta,
|
|
42024
42024
|
jsii_type="aws-cdk-lib.aws_sagemaker.CfnPartnerApp",
|
|
42025
42025
|
):
|
|
42026
|
-
'''
|
|
42026
|
+
'''The ``AWS::SageMaker::PartnerApp`` resource creates an Amazon SageMaker Partner AI App.
|
|
42027
|
+
|
|
42028
|
+
For more information, see `Partner AI Apps <https://docs.aws.amazon.com/sagemaker/latest/dg/partner-apps.html>`_ .
|
|
42027
42029
|
|
|
42028
42030
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html
|
|
42029
42031
|
:cloudformationResource: AWS::SageMaker::PartnerApp
|
|
@@ -42082,12 +42084,12 @@ class CfnPartnerApp(
|
|
|
42082
42084
|
'''
|
|
42083
42085
|
:param scope: Scope in which this resource is defined.
|
|
42084
42086
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
42085
|
-
:param auth_type:
|
|
42086
|
-
:param execution_role_arn: The
|
|
42087
|
-
:param name: The name of the
|
|
42088
|
-
:param tier: The tier of the
|
|
42089
|
-
:param type:
|
|
42090
|
-
:param application_config:
|
|
42087
|
+
:param auth_type: Defines the authentication type used for the Partner AI App.
|
|
42088
|
+
:param execution_role_arn: The Amazon Resource Name (ARN) of the IAM role of the user.
|
|
42089
|
+
:param name: The name of the Partner AI App. This name must be unique within your account and region.
|
|
42090
|
+
:param tier: Specifies the tier or level of the Partner AI App. The tier size impacts the speed and capabilities of the application. For more information, see `Set up Partner AI Apps <https://docs.aws.amazon.com/sagemaker/latest/dg/partner-app-onboard.html>`_ .
|
|
42091
|
+
:param type: Specifies the type of Partner AI App being created.
|
|
42092
|
+
:param application_config: Configuration settings for the Partner AI App.
|
|
42091
42093
|
:param client_token: (deprecated) The client token for the PartnerApp.
|
|
42092
42094
|
:param enable_iam_session_based_identity: Enables IAM Session based Identity for PartnerApp.
|
|
42093
42095
|
:param kms_key_id: The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
|
|
@@ -42147,7 +42149,7 @@ class CfnPartnerApp(
|
|
|
42147
42149
|
@builtins.property
|
|
42148
42150
|
@jsii.member(jsii_name="attrArn")
|
|
42149
42151
|
def attr_arn(self) -> builtins.str:
|
|
42150
|
-
'''The ARN of the
|
|
42152
|
+
'''The Amazon Resource Name (ARN) of the created PartnerApp.
|
|
42151
42153
|
|
|
42152
42154
|
:cloudformationAttribute: Arn
|
|
42153
42155
|
'''
|
|
@@ -42176,7 +42178,7 @@ class CfnPartnerApp(
|
|
|
42176
42178
|
@builtins.property
|
|
42177
42179
|
@jsii.member(jsii_name="authType")
|
|
42178
42180
|
def auth_type(self) -> builtins.str:
|
|
42179
|
-
'''
|
|
42181
|
+
'''Defines the authentication type used for the Partner AI App.'''
|
|
42180
42182
|
return typing.cast(builtins.str, jsii.get(self, "authType"))
|
|
42181
42183
|
|
|
42182
42184
|
@auth_type.setter
|
|
@@ -42189,7 +42191,7 @@ class CfnPartnerApp(
|
|
|
42189
42191
|
@builtins.property
|
|
42190
42192
|
@jsii.member(jsii_name="executionRoleArn")
|
|
42191
42193
|
def execution_role_arn(self) -> builtins.str:
|
|
42192
|
-
'''The
|
|
42194
|
+
'''The Amazon Resource Name (ARN) of the IAM role of the user.'''
|
|
42193
42195
|
return typing.cast(builtins.str, jsii.get(self, "executionRoleArn"))
|
|
42194
42196
|
|
|
42195
42197
|
@execution_role_arn.setter
|
|
@@ -42202,7 +42204,7 @@ class CfnPartnerApp(
|
|
|
42202
42204
|
@builtins.property
|
|
42203
42205
|
@jsii.member(jsii_name="name")
|
|
42204
42206
|
def name(self) -> builtins.str:
|
|
42205
|
-
'''The name of the
|
|
42207
|
+
'''The name of the Partner AI App.'''
|
|
42206
42208
|
return typing.cast(builtins.str, jsii.get(self, "name"))
|
|
42207
42209
|
|
|
42208
42210
|
@name.setter
|
|
@@ -42215,7 +42217,7 @@ class CfnPartnerApp(
|
|
|
42215
42217
|
@builtins.property
|
|
42216
42218
|
@jsii.member(jsii_name="tier")
|
|
42217
42219
|
def tier(self) -> builtins.str:
|
|
42218
|
-
'''
|
|
42220
|
+
'''Specifies the tier or level of the Partner AI App.'''
|
|
42219
42221
|
return typing.cast(builtins.str, jsii.get(self, "tier"))
|
|
42220
42222
|
|
|
42221
42223
|
@tier.setter
|
|
@@ -42228,7 +42230,7 @@ class CfnPartnerApp(
|
|
|
42228
42230
|
@builtins.property
|
|
42229
42231
|
@jsii.member(jsii_name="type")
|
|
42230
42232
|
def type(self) -> builtins.str:
|
|
42231
|
-
'''
|
|
42233
|
+
'''Specifies the type of Partner AI App being created.'''
|
|
42232
42234
|
return typing.cast(builtins.str, jsii.get(self, "type"))
|
|
42233
42235
|
|
|
42234
42236
|
@type.setter
|
|
@@ -42243,7 +42245,7 @@ class CfnPartnerApp(
|
|
|
42243
42245
|
def application_config(
|
|
42244
42246
|
self,
|
|
42245
42247
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnerApp.PartnerAppConfigProperty"]]:
|
|
42246
|
-
'''
|
|
42248
|
+
'''Configuration settings for the Partner AI App.'''
|
|
42247
42249
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnPartnerApp.PartnerAppConfigProperty"]], jsii.get(self, "applicationConfig"))
|
|
42248
42250
|
|
|
42249
42251
|
@application_config.setter
|
|
@@ -42348,10 +42350,10 @@ class CfnPartnerApp(
|
|
|
42348
42350
|
admin_users: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
42349
42351
|
arguments: typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]] = None,
|
|
42350
42352
|
) -> None:
|
|
42351
|
-
'''
|
|
42353
|
+
'''A collection of configuration settings for the PartnerApp.
|
|
42352
42354
|
|
|
42353
|
-
:param admin_users:
|
|
42354
|
-
:param arguments:
|
|
42355
|
+
:param admin_users: A list of users that will have administrative access to the Partner AI App.
|
|
42356
|
+
:param arguments: Additional arguments passed to the Partner AI App during initialization or runtime.
|
|
42355
42357
|
|
|
42356
42358
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappconfig.html
|
|
42357
42359
|
:exampleMetadata: fixture=_generated
|
|
@@ -42381,7 +42383,7 @@ class CfnPartnerApp(
|
|
|
42381
42383
|
|
|
42382
42384
|
@builtins.property
|
|
42383
42385
|
def admin_users(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
42384
|
-
'''
|
|
42386
|
+
'''A list of users that will have administrative access to the Partner AI App.
|
|
42385
42387
|
|
|
42386
42388
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappconfig.html#cfn-sagemaker-partnerapp-partnerappconfig-adminusers
|
|
42387
42389
|
'''
|
|
@@ -42392,9 +42394,7 @@ class CfnPartnerApp(
|
|
|
42392
42394
|
def arguments(
|
|
42393
42395
|
self,
|
|
42394
42396
|
) -> typing.Optional[typing.Union[typing.Mapping[builtins.str, builtins.str], _IResolvable_da3f097b]]:
|
|
42395
|
-
'''
|
|
42396
|
-
|
|
42397
|
-
Based on the application type, the map is populated with a key and value pair that is specific to the user and application.
|
|
42397
|
+
'''Additional arguments passed to the Partner AI App during initialization or runtime.
|
|
42398
42398
|
|
|
42399
42399
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappconfig.html#cfn-sagemaker-partnerapp-partnerappconfig-arguments
|
|
42400
42400
|
'''
|
|
@@ -42419,9 +42419,9 @@ class CfnPartnerApp(
|
|
|
42419
42419
|
)
|
|
42420
42420
|
class PartnerAppMaintenanceConfigProperty:
|
|
42421
42421
|
def __init__(self, *, maintenance_window_start: builtins.str) -> None:
|
|
42422
|
-
'''
|
|
42422
|
+
'''A collection of settings that specify the maintenance schedule for the PartnerApp.
|
|
42423
42423
|
|
|
42424
|
-
:param maintenance_window_start: The
|
|
42424
|
+
:param maintenance_window_start: The maintenance window start day and time for the PartnerApp.
|
|
42425
42425
|
|
|
42426
42426
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappmaintenanceconfig.html
|
|
42427
42427
|
:exampleMetadata: fixture=_generated
|
|
@@ -42445,9 +42445,7 @@ class CfnPartnerApp(
|
|
|
42445
42445
|
|
|
42446
42446
|
@builtins.property
|
|
42447
42447
|
def maintenance_window_start(self) -> builtins.str:
|
|
42448
|
-
'''The day and time
|
|
42449
|
-
|
|
42450
|
-
This value must take the following format: ``3-letter-day:24-h-hour:minute`` . For example: ``TUE:03:30`` .
|
|
42448
|
+
'''The maintenance window start day and time for the PartnerApp.
|
|
42451
42449
|
|
|
42452
42450
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappmaintenanceconfig.html#cfn-sagemaker-partnerapp-partnerappmaintenanceconfig-maintenancewindowstart
|
|
42453
42451
|
'''
|
|
@@ -42502,12 +42500,12 @@ class CfnPartnerAppProps:
|
|
|
42502
42500
|
) -> None:
|
|
42503
42501
|
'''Properties for defining a ``CfnPartnerApp``.
|
|
42504
42502
|
|
|
42505
|
-
:param auth_type:
|
|
42506
|
-
:param execution_role_arn: The
|
|
42507
|
-
:param name: The name of the
|
|
42508
|
-
:param tier: The tier of the
|
|
42509
|
-
:param type:
|
|
42510
|
-
:param application_config:
|
|
42503
|
+
:param auth_type: Defines the authentication type used for the Partner AI App.
|
|
42504
|
+
:param execution_role_arn: The Amazon Resource Name (ARN) of the IAM role of the user.
|
|
42505
|
+
:param name: The name of the Partner AI App. This name must be unique within your account and region.
|
|
42506
|
+
:param tier: Specifies the tier or level of the Partner AI App. The tier size impacts the speed and capabilities of the application. For more information, see `Set up Partner AI Apps <https://docs.aws.amazon.com/sagemaker/latest/dg/partner-app-onboard.html>`_ .
|
|
42507
|
+
:param type: Specifies the type of Partner AI App being created.
|
|
42508
|
+
:param application_config: Configuration settings for the Partner AI App.
|
|
42511
42509
|
:param client_token: (deprecated) The client token for the PartnerApp.
|
|
42512
42510
|
:param enable_iam_session_based_identity: Enables IAM Session based Identity for PartnerApp.
|
|
42513
42511
|
:param kms_key_id: The AWS KMS customer managed key used to encrypt the data associated with the PartnerApp.
|
|
@@ -42584,7 +42582,7 @@ class CfnPartnerAppProps:
|
|
|
42584
42582
|
|
|
42585
42583
|
@builtins.property
|
|
42586
42584
|
def auth_type(self) -> builtins.str:
|
|
42587
|
-
'''
|
|
42585
|
+
'''Defines the authentication type used for the Partner AI App.
|
|
42588
42586
|
|
|
42589
42587
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-authtype
|
|
42590
42588
|
'''
|
|
@@ -42594,7 +42592,7 @@ class CfnPartnerAppProps:
|
|
|
42594
42592
|
|
|
42595
42593
|
@builtins.property
|
|
42596
42594
|
def execution_role_arn(self) -> builtins.str:
|
|
42597
|
-
'''The
|
|
42595
|
+
'''The Amazon Resource Name (ARN) of the IAM role of the user.
|
|
42598
42596
|
|
|
42599
42597
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-executionrolearn
|
|
42600
42598
|
'''
|
|
@@ -42604,7 +42602,9 @@ class CfnPartnerAppProps:
|
|
|
42604
42602
|
|
|
42605
42603
|
@builtins.property
|
|
42606
42604
|
def name(self) -> builtins.str:
|
|
42607
|
-
'''The name of the
|
|
42605
|
+
'''The name of the Partner AI App.
|
|
42606
|
+
|
|
42607
|
+
This name must be unique within your account and region.
|
|
42608
42608
|
|
|
42609
42609
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-name
|
|
42610
42610
|
'''
|
|
@@ -42614,7 +42614,9 @@ class CfnPartnerAppProps:
|
|
|
42614
42614
|
|
|
42615
42615
|
@builtins.property
|
|
42616
42616
|
def tier(self) -> builtins.str:
|
|
42617
|
-
'''
|
|
42617
|
+
'''Specifies the tier or level of the Partner AI App.
|
|
42618
|
+
|
|
42619
|
+
The tier size impacts the speed and capabilities of the application. For more information, see `Set up Partner AI Apps <https://docs.aws.amazon.com/sagemaker/latest/dg/partner-app-onboard.html>`_ .
|
|
42618
42620
|
|
|
42619
42621
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-tier
|
|
42620
42622
|
'''
|
|
@@ -42624,9 +42626,7 @@ class CfnPartnerAppProps:
|
|
|
42624
42626
|
|
|
42625
42627
|
@builtins.property
|
|
42626
42628
|
def type(self) -> builtins.str:
|
|
42627
|
-
'''
|
|
42628
|
-
|
|
42629
|
-
Must be one of the following: ``lakera-guard`` , ``comet`` , ``deepchecks-llm-evaluation`` , or ``fiddler`` .
|
|
42629
|
+
'''Specifies the type of Partner AI App being created.
|
|
42630
42630
|
|
|
42631
42631
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-type
|
|
42632
42632
|
'''
|
|
@@ -42638,7 +42638,7 @@ class CfnPartnerAppProps:
|
|
|
42638
42638
|
def application_config(
|
|
42639
42639
|
self,
|
|
42640
42640
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnPartnerApp.PartnerAppConfigProperty]]:
|
|
42641
|
-
'''
|
|
42641
|
+
'''Configuration settings for the Partner AI App.
|
|
42642
42642
|
|
|
42643
42643
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#cfn-sagemaker-partnerapp-applicationconfig
|
|
42644
42644
|
'''
|