aws-cdk-lib 2.164.0__py3-none-any.whl → 2.165.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +20 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.164.0.jsii.tgz → aws-cdk-lib@2.165.0.jsii.tgz} +0 -0
- aws_cdk/aws_appsync/__init__.py +24 -18
- aws_cdk/aws_autoscaling/__init__.py +145 -8
- aws_cdk/aws_backup/__init__.py +598 -0
- aws_cdk/aws_bedrock/__init__.py +8 -8
- aws_cdk/aws_codebuild/__init__.py +88 -33
- aws_cdk/aws_cognito/__init__.py +657 -95
- aws_cdk/aws_ec2/__init__.py +122 -32
- aws_cdk/aws_eks/__init__.py +10 -12
- aws_cdk/aws_elasticache/__init__.py +47 -6
- aws_cdk/aws_imagebuilder/__init__.py +183 -0
- aws_cdk/aws_iot/__init__.py +37 -43
- aws_cdk/aws_iotwireless/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +41 -0
- aws_cdk/aws_qbusiness/__init__.py +21 -14
- aws_cdk/aws_rds/__init__.py +122 -32
- aws_cdk/aws_redshift/__init__.py +23 -23
- aws_cdk/aws_refactorspaces/__init__.py +56 -61
- aws_cdk/aws_resiliencehub/__init__.py +4 -4
- aws_cdk/aws_route53/__init__.py +3 -1
- aws_cdk/aws_sagemaker/__init__.py +69 -0
- aws_cdk/aws_sqs/__init__.py +9 -12
- {aws_cdk_lib-2.164.0.dist-info → aws_cdk_lib-2.165.0.dist-info}/METADATA +6 -6
- {aws_cdk_lib-2.164.0.dist-info → aws_cdk_lib-2.165.0.dist-info}/RECORD +30 -30
- {aws_cdk_lib-2.164.0.dist-info → aws_cdk_lib-2.165.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.164.0.dist-info → aws_cdk_lib-2.165.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.164.0.dist-info → aws_cdk_lib-2.165.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.164.0.dist-info → aws_cdk_lib-2.165.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -3612,10 +3612,10 @@ class CfnDomainConfiguration(
|
|
|
3612
3612
|
'''
|
|
3613
3613
|
:param scope: Scope in which this resource is defined.
|
|
3614
3614
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3615
|
-
:param application_protocol: An enumerated string that specifies the application-layer protocol.
|
|
3616
|
-
:param authentication_type: An enumerated string that specifies the authentication type.
|
|
3615
|
+
:param application_protocol: An enumerated string that specifies the application-layer protocol.
|
|
3616
|
+
:param authentication_type: An enumerated string that specifies the authentication type.
|
|
3617
3617
|
:param authorizer_config: An object that specifies the authorization service for a domain.
|
|
3618
|
-
:param client_certificate_config: An object that specifies the client certificate configuration for a domain.
|
|
3618
|
+
:param client_certificate_config: An object that specifies the client certificate configuration for a domain.
|
|
3619
3619
|
:param domain_configuration_name: The name of the domain configuration. This value must be unique to a region.
|
|
3620
3620
|
:param domain_configuration_status: The status to which the domain configuration should be updated. Valid values: ``ENABLED`` | ``DISABLED``
|
|
3621
3621
|
:param domain_name: The name of the domain.
|
|
@@ -4000,11 +4000,7 @@ class CfnDomainConfiguration(
|
|
|
4000
4000
|
) -> None:
|
|
4001
4001
|
'''An object that specifies the client certificate configuration for a domain.
|
|
4002
4002
|
|
|
4003
|
-
|
|
4004
|
-
|
|
4005
|
-
This property isn't available in China.
|
|
4006
|
-
|
|
4007
|
-
:param client_certificate_callback_arn: The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection. .. epigraph:: This property isn't available in China.
|
|
4003
|
+
:param client_certificate_callback_arn: The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection.
|
|
4008
4004
|
|
|
4009
4005
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-clientcertificateconfig.html
|
|
4010
4006
|
:exampleMetadata: fixture=_generated
|
|
@@ -4030,10 +4026,6 @@ class CfnDomainConfiguration(
|
|
|
4030
4026
|
def client_certificate_callback_arn(self) -> typing.Optional[builtins.str]:
|
|
4031
4027
|
'''The ARN of the Lambda function that IoT invokes after mutual TLS authentication during the connection.
|
|
4032
4028
|
|
|
4033
|
-
.. epigraph::
|
|
4034
|
-
|
|
4035
|
-
This property isn't available in China.
|
|
4036
|
-
|
|
4037
4029
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-clientcertificateconfig.html#cfn-iot-domainconfiguration-clientcertificateconfig-clientcertificatecallbackarn
|
|
4038
4030
|
'''
|
|
4039
4031
|
result = self._values.get("client_certificate_callback_arn")
|
|
@@ -4297,10 +4289,10 @@ class CfnDomainConfigurationProps:
|
|
|
4297
4289
|
) -> None:
|
|
4298
4290
|
'''Properties for defining a ``CfnDomainConfiguration``.
|
|
4299
4291
|
|
|
4300
|
-
:param application_protocol: An enumerated string that specifies the application-layer protocol.
|
|
4301
|
-
:param authentication_type: An enumerated string that specifies the authentication type.
|
|
4292
|
+
:param application_protocol: An enumerated string that specifies the application-layer protocol.
|
|
4293
|
+
:param authentication_type: An enumerated string that specifies the authentication type.
|
|
4302
4294
|
:param authorizer_config: An object that specifies the authorization service for a domain.
|
|
4303
|
-
:param client_certificate_config: An object that specifies the client certificate configuration for a domain.
|
|
4295
|
+
:param client_certificate_config: An object that specifies the client certificate configuration for a domain.
|
|
4304
4296
|
:param domain_configuration_name: The name of the domain configuration. This value must be unique to a region.
|
|
4305
4297
|
:param domain_configuration_status: The status to which the domain configuration should be updated. Valid values: ``ENABLED`` | ``DISABLED``
|
|
4306
4298
|
:param domain_name: The name of the domain.
|
|
@@ -4395,10 +4387,6 @@ class CfnDomainConfigurationProps:
|
|
|
4395
4387
|
def application_protocol(self) -> typing.Optional[builtins.str]:
|
|
4396
4388
|
'''An enumerated string that specifies the application-layer protocol.
|
|
4397
4389
|
|
|
4398
|
-
.. epigraph::
|
|
4399
|
-
|
|
4400
|
-
This property isn't available in China.
|
|
4401
|
-
|
|
4402
4390
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-applicationprotocol
|
|
4403
4391
|
'''
|
|
4404
4392
|
result = self._values.get("application_protocol")
|
|
@@ -4408,10 +4396,6 @@ class CfnDomainConfigurationProps:
|
|
|
4408
4396
|
def authentication_type(self) -> typing.Optional[builtins.str]:
|
|
4409
4397
|
'''An enumerated string that specifies the authentication type.
|
|
4410
4398
|
|
|
4411
|
-
.. epigraph::
|
|
4412
|
-
|
|
4413
|
-
This property isn't available in China.
|
|
4414
|
-
|
|
4415
4399
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-authenticationtype
|
|
4416
4400
|
'''
|
|
4417
4401
|
result = self._values.get("authentication_type")
|
|
@@ -4434,10 +4418,6 @@ class CfnDomainConfigurationProps:
|
|
|
4434
4418
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomainConfiguration.ClientCertificateConfigProperty]]:
|
|
4435
4419
|
'''An object that specifies the client certificate configuration for a domain.
|
|
4436
4420
|
|
|
4437
|
-
.. epigraph::
|
|
4438
|
-
|
|
4439
|
-
This property isn't available in China.
|
|
4440
|
-
|
|
4441
4421
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-clientcertificateconfig
|
|
4442
4422
|
'''
|
|
4443
4423
|
result = self._values.get("client_certificate_config")
|
|
@@ -11253,11 +11233,11 @@ class CfnSoftwarePackageVersion(
|
|
|
11253
11233
|
'''
|
|
11254
11234
|
:param scope: Scope in which this resource is defined.
|
|
11255
11235
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
11256
|
-
:param package_name:
|
|
11257
|
-
:param attributes:
|
|
11258
|
-
:param description:
|
|
11259
|
-
:param tags:
|
|
11260
|
-
:param version_name:
|
|
11236
|
+
:param package_name: The name of the associated software package.
|
|
11237
|
+
:param attributes: Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet. The combined size of all the attributes on a package version is limited to 3KB.
|
|
11238
|
+
:param description: A summary of the package version being created. This can be used to outline the package's contents or purpose.
|
|
11239
|
+
:param tags: Metadata that can be used to manage the package version.
|
|
11240
|
+
:param version_name: The name of the new package version.
|
|
11261
11241
|
'''
|
|
11262
11242
|
if __debug__:
|
|
11263
11243
|
type_hints = typing.get_type_hints(_typecheckingstub__ae40d4286b1921a68172d1449478b0327292b57cc2637b8b975f200e0276e088)
|
|
@@ -11346,6 +11326,7 @@ class CfnSoftwarePackageVersion(
|
|
|
11346
11326
|
@builtins.property
|
|
11347
11327
|
@jsii.member(jsii_name="packageName")
|
|
11348
11328
|
def package_name(self) -> builtins.str:
|
|
11329
|
+
'''The name of the associated software package.'''
|
|
11349
11330
|
return typing.cast(builtins.str, jsii.get(self, "packageName"))
|
|
11350
11331
|
|
|
11351
11332
|
@package_name.setter
|
|
@@ -11360,6 +11341,7 @@ class CfnSoftwarePackageVersion(
|
|
|
11360
11341
|
def attributes(
|
|
11361
11342
|
self,
|
|
11362
11343
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
11344
|
+
'''Metadata that can be used to define a package version’s configuration.'''
|
|
11363
11345
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]], jsii.get(self, "attributes"))
|
|
11364
11346
|
|
|
11365
11347
|
@attributes.setter
|
|
@@ -11375,6 +11357,7 @@ class CfnSoftwarePackageVersion(
|
|
|
11375
11357
|
@builtins.property
|
|
11376
11358
|
@jsii.member(jsii_name="description")
|
|
11377
11359
|
def description(self) -> typing.Optional[builtins.str]:
|
|
11360
|
+
'''A summary of the package version being created.'''
|
|
11378
11361
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "description"))
|
|
11379
11362
|
|
|
11380
11363
|
@description.setter
|
|
@@ -11387,7 +11370,7 @@ class CfnSoftwarePackageVersion(
|
|
|
11387
11370
|
@builtins.property
|
|
11388
11371
|
@jsii.member(jsii_name="tags")
|
|
11389
11372
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
11390
|
-
'''
|
|
11373
|
+
'''Metadata that can be used to manage the package version.'''
|
|
11391
11374
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
11392
11375
|
|
|
11393
11376
|
@tags.setter
|
|
@@ -11400,6 +11383,7 @@ class CfnSoftwarePackageVersion(
|
|
|
11400
11383
|
@builtins.property
|
|
11401
11384
|
@jsii.member(jsii_name="versionName")
|
|
11402
11385
|
def version_name(self) -> typing.Optional[builtins.str]:
|
|
11386
|
+
'''The name of the new package version.'''
|
|
11403
11387
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "versionName"))
|
|
11404
11388
|
|
|
11405
11389
|
@version_name.setter
|
|
@@ -11433,11 +11417,11 @@ class CfnSoftwarePackageVersionProps:
|
|
|
11433
11417
|
) -> None:
|
|
11434
11418
|
'''Properties for defining a ``CfnSoftwarePackageVersion``.
|
|
11435
11419
|
|
|
11436
|
-
:param package_name:
|
|
11437
|
-
:param attributes:
|
|
11438
|
-
:param description:
|
|
11439
|
-
:param tags:
|
|
11440
|
-
:param version_name:
|
|
11420
|
+
:param package_name: The name of the associated software package.
|
|
11421
|
+
:param attributes: Metadata that can be used to define a package version’s configuration. For example, the S3 file location, configuration options that are being sent to the device or fleet. The combined size of all the attributes on a package version is limited to 3KB.
|
|
11422
|
+
:param description: A summary of the package version being created. This can be used to outline the package's contents or purpose.
|
|
11423
|
+
:param tags: Metadata that can be used to manage the package version.
|
|
11424
|
+
:param version_name: The name of the new package version.
|
|
11441
11425
|
|
|
11442
11426
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html
|
|
11443
11427
|
:exampleMetadata: fixture=_generated
|
|
@@ -11484,7 +11468,8 @@ class CfnSoftwarePackageVersionProps:
|
|
|
11484
11468
|
|
|
11485
11469
|
@builtins.property
|
|
11486
11470
|
def package_name(self) -> builtins.str:
|
|
11487
|
-
'''
|
|
11471
|
+
'''The name of the associated software package.
|
|
11472
|
+
|
|
11488
11473
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-packagename
|
|
11489
11474
|
'''
|
|
11490
11475
|
result = self._values.get("package_name")
|
|
@@ -11495,7 +11480,12 @@ class CfnSoftwarePackageVersionProps:
|
|
|
11495
11480
|
def attributes(
|
|
11496
11481
|
self,
|
|
11497
11482
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Mapping[builtins.str, builtins.str]]]:
|
|
11498
|
-
'''
|
|
11483
|
+
'''Metadata that can be used to define a package version’s configuration.
|
|
11484
|
+
|
|
11485
|
+
For example, the S3 file location, configuration options that are being sent to the device or fleet.
|
|
11486
|
+
|
|
11487
|
+
The combined size of all the attributes on a package version is limited to 3KB.
|
|
11488
|
+
|
|
11499
11489
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-attributes
|
|
11500
11490
|
'''
|
|
11501
11491
|
result = self._values.get("attributes")
|
|
@@ -11503,7 +11493,10 @@ class CfnSoftwarePackageVersionProps:
|
|
|
11503
11493
|
|
|
11504
11494
|
@builtins.property
|
|
11505
11495
|
def description(self) -> typing.Optional[builtins.str]:
|
|
11506
|
-
'''
|
|
11496
|
+
'''A summary of the package version being created.
|
|
11497
|
+
|
|
11498
|
+
This can be used to outline the package's contents or purpose.
|
|
11499
|
+
|
|
11507
11500
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-description
|
|
11508
11501
|
'''
|
|
11509
11502
|
result = self._values.get("description")
|
|
@@ -11511,7 +11504,7 @@ class CfnSoftwarePackageVersionProps:
|
|
|
11511
11504
|
|
|
11512
11505
|
@builtins.property
|
|
11513
11506
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
11514
|
-
'''
|
|
11507
|
+
'''Metadata that can be used to manage the package version.
|
|
11515
11508
|
|
|
11516
11509
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-tags
|
|
11517
11510
|
'''
|
|
@@ -11520,7 +11513,8 @@ class CfnSoftwarePackageVersionProps:
|
|
|
11520
11513
|
|
|
11521
11514
|
@builtins.property
|
|
11522
11515
|
def version_name(self) -> typing.Optional[builtins.str]:
|
|
11523
|
-
'''
|
|
11516
|
+
'''The name of the new package version.
|
|
11517
|
+
|
|
11524
11518
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-softwarepackageversion.html#cfn-iot-softwarepackageversion-versionname
|
|
11525
11519
|
'''
|
|
11526
11520
|
result = self._values.get("version_name")
|
|
@@ -6319,7 +6319,7 @@ class CfnWirelessDeviceImportTask(
|
|
|
6319
6319
|
|
|
6320
6320
|
:param device_creation_file: The CSV file contained in an S3 bucket that's used for adding devices to an import task.
|
|
6321
6321
|
:param device_creation_file_list: List of Sidewalk devices that are added to the import task.
|
|
6322
|
-
:param role: The IAM role that allows
|
|
6322
|
+
:param role: The IAM role that allows to access the CSV file in the S3 bucket.
|
|
6323
6323
|
:param sidewalk_manufacturing_sn: The Sidewalk manufacturing serial number (SMSN) of the Sidewalk device.
|
|
6324
6324
|
|
|
6325
6325
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdeviceimporttask-sidewalk.html
|
|
@@ -6376,7 +6376,7 @@ class CfnWirelessDeviceImportTask(
|
|
|
6376
6376
|
|
|
6377
6377
|
@builtins.property
|
|
6378
6378
|
def role(self) -> typing.Optional[builtins.str]:
|
|
6379
|
-
'''The IAM role that allows
|
|
6379
|
+
'''The IAM role that allows to access the CSV file in the S3 bucket.
|
|
6380
6380
|
|
|
6381
6381
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotwireless-wirelessdeviceimporttask-sidewalk.html#cfn-iotwireless-wirelessdeviceimporttask-sidewalk-role
|
|
6382
6382
|
'''
|
aws_cdk/aws_memorydb/__init__.py
CHANGED
|
@@ -353,6 +353,7 @@ class CfnCluster(
|
|
|
353
353
|
),
|
|
354
354
|
data_tiering="dataTiering",
|
|
355
355
|
description="description",
|
|
356
|
+
engine="engine",
|
|
356
357
|
engine_version="engineVersion",
|
|
357
358
|
final_snapshot_name="finalSnapshotName",
|
|
358
359
|
kms_key_id="kmsKeyId",
|
|
@@ -389,6 +390,7 @@ class CfnCluster(
|
|
|
389
390
|
cluster_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.EndpointProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
390
391
|
data_tiering: typing.Optional[builtins.str] = None,
|
|
391
392
|
description: typing.Optional[builtins.str] = None,
|
|
393
|
+
engine: typing.Optional[builtins.str] = None,
|
|
392
394
|
engine_version: typing.Optional[builtins.str] = None,
|
|
393
395
|
final_snapshot_name: typing.Optional[builtins.str] = None,
|
|
394
396
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
@@ -418,6 +420,7 @@ class CfnCluster(
|
|
|
418
420
|
:param cluster_endpoint: The cluster 's configuration endpoint.
|
|
419
421
|
:param data_tiering: Enables data tiering. Data tiering is only supported for clusters using the r6gd node type. This parameter must be set when using r6gd nodes. For more information, see `Data tiering <https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html>`_ .
|
|
420
422
|
:param description: A description of the cluster .
|
|
423
|
+
:param engine: The Valkey or Redis OSS engine used by the cluster.
|
|
421
424
|
:param engine_version: The Valkey or Redis OSS engine version used by the cluster .
|
|
422
425
|
:param final_snapshot_name: The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
|
|
423
426
|
:param kms_key_id: The ID of the KMS key used to encrypt the cluster .
|
|
@@ -449,6 +452,7 @@ class CfnCluster(
|
|
|
449
452
|
cluster_endpoint=cluster_endpoint,
|
|
450
453
|
data_tiering=data_tiering,
|
|
451
454
|
description=description,
|
|
455
|
+
engine=engine,
|
|
452
456
|
engine_version=engine_version,
|
|
453
457
|
final_snapshot_name=final_snapshot_name,
|
|
454
458
|
kms_key_id=kms_key_id,
|
|
@@ -660,6 +664,19 @@ class CfnCluster(
|
|
|
660
664
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
661
665
|
jsii.set(self, "description", value) # pyright: ignore[reportArgumentType]
|
|
662
666
|
|
|
667
|
+
@builtins.property
|
|
668
|
+
@jsii.member(jsii_name="engine")
|
|
669
|
+
def engine(self) -> typing.Optional[builtins.str]:
|
|
670
|
+
'''The Valkey or Redis OSS engine used by the cluster.'''
|
|
671
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "engine"))
|
|
672
|
+
|
|
673
|
+
@engine.setter
|
|
674
|
+
def engine(self, value: typing.Optional[builtins.str]) -> None:
|
|
675
|
+
if __debug__:
|
|
676
|
+
type_hints = typing.get_type_hints(_typecheckingstub__6436ef83a7f7f89cc4b2219adef9c30e44c3b601a40994ca9062e40dc861cd99)
|
|
677
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
678
|
+
jsii.set(self, "engine", value) # pyright: ignore[reportArgumentType]
|
|
679
|
+
|
|
663
680
|
@builtins.property
|
|
664
681
|
@jsii.member(jsii_name="engineVersion")
|
|
665
682
|
def engine_version(self) -> typing.Optional[builtins.str]:
|
|
@@ -984,6 +1001,7 @@ class CfnCluster(
|
|
|
984
1001
|
"cluster_endpoint": "clusterEndpoint",
|
|
985
1002
|
"data_tiering": "dataTiering",
|
|
986
1003
|
"description": "description",
|
|
1004
|
+
"engine": "engine",
|
|
987
1005
|
"engine_version": "engineVersion",
|
|
988
1006
|
"final_snapshot_name": "finalSnapshotName",
|
|
989
1007
|
"kms_key_id": "kmsKeyId",
|
|
@@ -1015,6 +1033,7 @@ class CfnClusterProps:
|
|
|
1015
1033
|
cluster_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.EndpointProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
1016
1034
|
data_tiering: typing.Optional[builtins.str] = None,
|
|
1017
1035
|
description: typing.Optional[builtins.str] = None,
|
|
1036
|
+
engine: typing.Optional[builtins.str] = None,
|
|
1018
1037
|
engine_version: typing.Optional[builtins.str] = None,
|
|
1019
1038
|
final_snapshot_name: typing.Optional[builtins.str] = None,
|
|
1020
1039
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
@@ -1043,6 +1062,7 @@ class CfnClusterProps:
|
|
|
1043
1062
|
:param cluster_endpoint: The cluster 's configuration endpoint.
|
|
1044
1063
|
:param data_tiering: Enables data tiering. Data tiering is only supported for clusters using the r6gd node type. This parameter must be set when using r6gd nodes. For more information, see `Data tiering <https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html>`_ .
|
|
1045
1064
|
:param description: A description of the cluster .
|
|
1065
|
+
:param engine: The Valkey or Redis OSS engine used by the cluster.
|
|
1046
1066
|
:param engine_version: The Valkey or Redis OSS engine version used by the cluster .
|
|
1047
1067
|
:param final_snapshot_name: The user-supplied name of a final cluster snapshot. This is the unique name that identifies the snapshot. MemoryDB creates the snapshot, and then deletes the cluster immediately afterward.
|
|
1048
1068
|
:param kms_key_id: The ID of the KMS key used to encrypt the cluster .
|
|
@@ -1084,6 +1104,7 @@ class CfnClusterProps:
|
|
|
1084
1104
|
),
|
|
1085
1105
|
data_tiering="dataTiering",
|
|
1086
1106
|
description="description",
|
|
1107
|
+
engine="engine",
|
|
1087
1108
|
engine_version="engineVersion",
|
|
1088
1109
|
final_snapshot_name="finalSnapshotName",
|
|
1089
1110
|
kms_key_id="kmsKeyId",
|
|
@@ -1116,6 +1137,7 @@ class CfnClusterProps:
|
|
|
1116
1137
|
check_type(argname="argument cluster_endpoint", value=cluster_endpoint, expected_type=type_hints["cluster_endpoint"])
|
|
1117
1138
|
check_type(argname="argument data_tiering", value=data_tiering, expected_type=type_hints["data_tiering"])
|
|
1118
1139
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
1140
|
+
check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
|
|
1119
1141
|
check_type(argname="argument engine_version", value=engine_version, expected_type=type_hints["engine_version"])
|
|
1120
1142
|
check_type(argname="argument final_snapshot_name", value=final_snapshot_name, expected_type=type_hints["final_snapshot_name"])
|
|
1121
1143
|
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
@@ -1147,6 +1169,8 @@ class CfnClusterProps:
|
|
|
1147
1169
|
self._values["data_tiering"] = data_tiering
|
|
1148
1170
|
if description is not None:
|
|
1149
1171
|
self._values["description"] = description
|
|
1172
|
+
if engine is not None:
|
|
1173
|
+
self._values["engine"] = engine
|
|
1150
1174
|
if engine_version is not None:
|
|
1151
1175
|
self._values["engine_version"] = engine_version
|
|
1152
1176
|
if final_snapshot_name is not None:
|
|
@@ -1256,6 +1280,15 @@ class CfnClusterProps:
|
|
|
1256
1280
|
result = self._values.get("description")
|
|
1257
1281
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1258
1282
|
|
|
1283
|
+
@builtins.property
|
|
1284
|
+
def engine(self) -> typing.Optional[builtins.str]:
|
|
1285
|
+
'''The Valkey or Redis OSS engine used by the cluster.
|
|
1286
|
+
|
|
1287
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html#cfn-memorydb-cluster-engine
|
|
1288
|
+
'''
|
|
1289
|
+
result = self._values.get("engine")
|
|
1290
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1291
|
+
|
|
1259
1292
|
@builtins.property
|
|
1260
1293
|
def engine_version(self) -> typing.Optional[builtins.str]:
|
|
1261
1294
|
'''The Valkey or Redis OSS engine version used by the cluster .
|
|
@@ -2501,6 +2534,7 @@ def _typecheckingstub__2be3fd9830386937ed856721b0282cb7c4bcfb48ca212a069ae310ef4
|
|
|
2501
2534
|
cluster_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.EndpointProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2502
2535
|
data_tiering: typing.Optional[builtins.str] = None,
|
|
2503
2536
|
description: typing.Optional[builtins.str] = None,
|
|
2537
|
+
engine: typing.Optional[builtins.str] = None,
|
|
2504
2538
|
engine_version: typing.Optional[builtins.str] = None,
|
|
2505
2539
|
final_snapshot_name: typing.Optional[builtins.str] = None,
|
|
2506
2540
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
@@ -2577,6 +2611,12 @@ def _typecheckingstub__53812133543a07114ef48993753a17493cf0eaec35b4f165d5b5360b4
|
|
|
2577
2611
|
"""Type checking stubs"""
|
|
2578
2612
|
pass
|
|
2579
2613
|
|
|
2614
|
+
def _typecheckingstub__6436ef83a7f7f89cc4b2219adef9c30e44c3b601a40994ca9062e40dc861cd99(
|
|
2615
|
+
value: typing.Optional[builtins.str],
|
|
2616
|
+
) -> None:
|
|
2617
|
+
"""Type checking stubs"""
|
|
2618
|
+
pass
|
|
2619
|
+
|
|
2580
2620
|
def _typecheckingstub__169ccd9bb3c17f7e26324bbd84534aada6e77306d49160dd24968619a98599f9(
|
|
2581
2621
|
value: typing.Optional[builtins.str],
|
|
2582
2622
|
) -> None:
|
|
@@ -2702,6 +2742,7 @@ def _typecheckingstub__1e34c4b7ef2f8328b2d19e6f768b6f44c55efea16824463c1ed0f3497
|
|
|
2702
2742
|
cluster_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.EndpointProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2703
2743
|
data_tiering: typing.Optional[builtins.str] = None,
|
|
2704
2744
|
description: typing.Optional[builtins.str] = None,
|
|
2745
|
+
engine: typing.Optional[builtins.str] = None,
|
|
2705
2746
|
engine_version: typing.Optional[builtins.str] = None,
|
|
2706
2747
|
final_snapshot_name: typing.Optional[builtins.str] = None,
|
|
2707
2748
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
@@ -1197,7 +1197,7 @@ class CfnDataSource(
|
|
|
1197
1197
|
:param scope: Scope in which this resource is defined.
|
|
1198
1198
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
1199
1199
|
:param application_id: The identifier of the Amazon Q Business application the data source will be attached to.
|
|
1200
|
-
:param configuration:
|
|
1200
|
+
:param configuration: Use this property to specify a JSON or YAML schema with configuration properties specific to your data source connector to connect your data source repository to Amazon Q Business . You must use the JSON or YAML schema provided by Amazon Q . The following links have the configuration properties and schemas for AWS CloudFormation for the following connectors: - `Amazon Simple Storage Service <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/s3-cfn.html>`_ - `Amazon Q Web Crawler <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/web-crawler-cfn.html>`_ Similarly, you can find configuration templates and properties for your specific data source using the following steps: - Navigate to the `Supported connectors <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html>`_ page in the Amazon Q Business User Guide, and select the data source connector of your choice. - Then, from that specific data source connector's page, choose the topic containing *Using AWS CloudFormation* to find the schemas for your data source connector, including configuration parameter descriptions and examples.
|
|
1201
1201
|
:param display_name: The name of the Amazon Q Business data source.
|
|
1202
1202
|
:param index_id: The identifier of the index the data source is attached to.
|
|
1203
1203
|
:param description: A description for the data source connector.
|
|
@@ -1337,7 +1337,7 @@ class CfnDataSource(
|
|
|
1337
1337
|
@builtins.property
|
|
1338
1338
|
@jsii.member(jsii_name="configuration")
|
|
1339
1339
|
def configuration(self) -> typing.Any:
|
|
1340
|
-
'''
|
|
1340
|
+
'''Use this property to specify a JSON or YAML schema with configuration properties specific to your data source connector to connect your data source repository to Amazon Q Business .'''
|
|
1341
1341
|
return typing.cast(typing.Any, jsii.get(self, "configuration"))
|
|
1342
1342
|
|
|
1343
1343
|
@configuration.setter
|
|
@@ -2317,7 +2317,7 @@ class CfnDataSourceProps:
|
|
|
2317
2317
|
'''Properties for defining a ``CfnDataSource``.
|
|
2318
2318
|
|
|
2319
2319
|
:param application_id: The identifier of the Amazon Q Business application the data source will be attached to.
|
|
2320
|
-
:param configuration:
|
|
2320
|
+
:param configuration: Use this property to specify a JSON or YAML schema with configuration properties specific to your data source connector to connect your data source repository to Amazon Q Business . You must use the JSON or YAML schema provided by Amazon Q . The following links have the configuration properties and schemas for AWS CloudFormation for the following connectors: - `Amazon Simple Storage Service <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/s3-cfn.html>`_ - `Amazon Q Web Crawler <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/web-crawler-cfn.html>`_ Similarly, you can find configuration templates and properties for your specific data source using the following steps: - Navigate to the `Supported connectors <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html>`_ page in the Amazon Q Business User Guide, and select the data source connector of your choice. - Then, from that specific data source connector's page, choose the topic containing *Using AWS CloudFormation* to find the schemas for your data source connector, including configuration parameter descriptions and examples.
|
|
2321
2321
|
:param display_name: The name of the Amazon Q Business data source.
|
|
2322
2322
|
:param index_id: The identifier of the index the data source is attached to.
|
|
2323
2323
|
:param description: A description for the data source connector.
|
|
@@ -2464,19 +2464,19 @@ class CfnDataSourceProps:
|
|
|
2464
2464
|
|
|
2465
2465
|
@builtins.property
|
|
2466
2466
|
def configuration(self) -> typing.Any:
|
|
2467
|
-
'''
|
|
2467
|
+
'''Use this property to specify a JSON or YAML schema with configuration properties specific to your data source connector to connect your data source repository to Amazon Q Business .
|
|
2468
2468
|
|
|
2469
|
-
|
|
2469
|
+
You must use the JSON or YAML schema provided by Amazon Q .
|
|
2470
2470
|
|
|
2471
|
-
|
|
2471
|
+
The following links have the configuration properties and schemas for AWS CloudFormation for the following connectors:
|
|
2472
2472
|
|
|
2473
|
-
- `Amazon
|
|
2474
|
-
- `Web Crawler
|
|
2473
|
+
- `Amazon Simple Storage Service <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/s3-cfn.html>`_
|
|
2474
|
+
- `Amazon Q Web Crawler <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/web-crawler-cfn.html>`_
|
|
2475
2475
|
|
|
2476
|
-
|
|
2476
|
+
Similarly, you can find configuration templates and properties for your specific data source using the following steps:
|
|
2477
2477
|
|
|
2478
|
-
- Navigate to the `Supported connectors <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html>`_ page in the Amazon Q Business User Guide, and select the data source of your choice.
|
|
2479
|
-
- Then, from
|
|
2478
|
+
- Navigate to the `Supported connectors <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/connectors-list.html>`_ page in the Amazon Q Business User Guide, and select the data source connector of your choice.
|
|
2479
|
+
- Then, from that specific data source connector's page, choose the topic containing *Using AWS CloudFormation* to find the schemas for your data source connector, including configuration parameter descriptions and examples.
|
|
2480
2480
|
|
|
2481
2481
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html#cfn-qbusiness-datasource-configuration
|
|
2482
2482
|
'''
|
|
@@ -4957,7 +4957,7 @@ class CfnWebExperience(
|
|
|
4957
4957
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4958
4958
|
:param application_id: The identifier of the Amazon Q Business web experience.
|
|
4959
4959
|
:param identity_provider_configuration: Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
|
|
4960
|
-
:param origins:
|
|
4960
|
+
:param origins: Sets the website domain origins that are allowed to embed the Amazon Q Business web experience. The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified). .. epigraph:: You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
|
|
4961
4961
|
:param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
|
|
4962
4962
|
:param sample_prompts_control_mode: Determines whether sample prompts are enabled in the web experience for an end user.
|
|
4963
4963
|
:param subtitle: A subtitle to personalize your Amazon Q Business web experience.
|
|
@@ -5114,6 +5114,7 @@ class CfnWebExperience(
|
|
|
5114
5114
|
@builtins.property
|
|
5115
5115
|
@jsii.member(jsii_name="origins")
|
|
5116
5116
|
def origins(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
5117
|
+
'''Sets the website domain origins that are allowed to embed the Amazon Q Business web experience.'''
|
|
5117
5118
|
return typing.cast(typing.Optional[typing.List[builtins.str]], jsii.get(self, "origins"))
|
|
5118
5119
|
|
|
5119
5120
|
@origins.setter
|
|
@@ -5438,7 +5439,7 @@ class CfnWebExperienceProps:
|
|
|
5438
5439
|
|
|
5439
5440
|
:param application_id: The identifier of the Amazon Q Business web experience.
|
|
5440
5441
|
:param identity_provider_configuration: Provides information about the identity provider (IdP) used to authenticate end users of an Amazon Q Business web experience.
|
|
5441
|
-
:param origins:
|
|
5442
|
+
:param origins: Sets the website domain origins that are allowed to embed the Amazon Q Business web experience. The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified). .. epigraph:: You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
|
|
5442
5443
|
:param role_arn: The Amazon Resource Name (ARN) of the service role attached to your web experience. .. epigraph:: You must provide this value if you're using IAM Identity Center to manage end user access to your application. If you're using legacy identity management to manage user access, you don't need to provide this value.
|
|
5443
5444
|
:param sample_prompts_control_mode: Determines whether sample prompts are enabled in the web experience for an end user.
|
|
5444
5445
|
:param subtitle: A subtitle to personalize your Amazon Q Business web experience.
|
|
@@ -5534,7 +5535,13 @@ class CfnWebExperienceProps:
|
|
|
5534
5535
|
|
|
5535
5536
|
@builtins.property
|
|
5536
5537
|
def origins(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
5537
|
-
'''
|
|
5538
|
+
'''Sets the website domain origins that are allowed to embed the Amazon Q Business web experience.
|
|
5539
|
+
|
|
5540
|
+
The *domain origin* refers to the base URL for accessing a website including the protocol ( ``http/https`` ), the domain name, and the port number (if specified).
|
|
5541
|
+
.. epigraph::
|
|
5542
|
+
|
|
5543
|
+
You must only submit a *base URL* and not a full path. For example, ``https://docs.aws.amazon.com`` .
|
|
5544
|
+
|
|
5538
5545
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-webexperience.html#cfn-qbusiness-webexperience-origins
|
|
5539
5546
|
'''
|
|
5540
5547
|
result = self._values.get("origins")
|