aws-cdk-lib 2.193.0__py3-none-any.whl → 2.194.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.193.0.jsii.tgz → aws-cdk-lib@2.194.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +3 -1
- aws_cdk/aws_aps/__init__.py +34 -22
- aws_cdk/aws_autoscaling/__init__.py +8 -0
- aws_cdk/aws_batch/__init__.py +2 -2
- aws_cdk/aws_bedrock/__init__.py +6 -4
- aws_cdk/aws_ce/__init__.py +34 -22
- aws_cdk/aws_cloudfront/__init__.py +3019 -971
- aws_cdk/aws_codebuild/__init__.py +19 -10
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_ec2/__init__.py +6 -3
- aws_cdk/aws_ecr/__init__.py +417 -0
- aws_cdk/aws_ecs/__init__.py +18 -10
- aws_cdk/aws_entityresolution/__init__.py +7 -2
- aws_cdk/aws_events/__init__.py +41 -8
- aws_cdk/aws_lambda/__init__.py +1 -1
- aws_cdk/aws_mediapackagev2/__init__.py +50 -6
- aws_cdk/aws_memorydb/__init__.py +21 -11
- aws_cdk/aws_omics/__init__.py +5 -5
- aws_cdk/aws_qbusiness/__init__.py +2 -2
- aws_cdk/aws_quicksight/__init__.py +1 -1
- aws_cdk/aws_rds/__init__.py +46 -2
- aws_cdk/aws_redshiftserverless/__init__.py +20 -0
- aws_cdk/aws_route53resolver/__init__.py +41 -0
- aws_cdk/aws_s3/__init__.py +2 -4
- aws_cdk/aws_sagemaker/__init__.py +2 -4
- aws_cdk/aws_vpclattice/__init__.py +6 -2
- aws_cdk/aws_wisdom/__init__.py +25 -6
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/RECORD +35 -35
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.193.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_memorydb/__init__.py
CHANGED
|
@@ -430,11 +430,11 @@ class CfnCluster(
|
|
|
430
430
|
:param engine: The name of the engine used by the cluster.
|
|
431
431
|
:param engine_version: The Redis engine version used by the cluster .
|
|
432
432
|
: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.
|
|
433
|
-
:param ip_discovery:
|
|
433
|
+
:param ip_discovery: The mechanism that the cluster uses to discover IP addresses. Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or 'ipv6' when DNS endpoints resolve to IPv6 addresses.
|
|
434
434
|
:param kms_key_id: The ID of the KMS key used to encrypt the cluster .
|
|
435
435
|
:param maintenance_window: Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ``ddd:hh24:mi-ddd:hh24:mi`` (24H Clock UTC). The minimum maintenance window is a 60 minute period. *Pattern* : ``ddd:hh24:mi-ddd:hh24:mi``
|
|
436
436
|
:param multi_region_cluster_name: The name of the multi-Region cluster that this cluster belongs to.
|
|
437
|
-
:param network_type:
|
|
437
|
+
:param network_type: The IP address type for the cluster. Returns 'ipv4' for IPv4 only, 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports both IPv4 and IPv6 addressing.
|
|
438
438
|
:param num_replicas_per_shard: The number of replicas to apply to each shard. *Default value* : ``1`` *Maximum value* : ``5``
|
|
439
439
|
:param num_shards: The number of shards in the cluster .
|
|
440
440
|
:param parameter_group_name: The name of the parameter group used by the cluster .
|
|
@@ -719,6 +719,7 @@ class CfnCluster(
|
|
|
719
719
|
@builtins.property
|
|
720
720
|
@jsii.member(jsii_name="ipDiscovery")
|
|
721
721
|
def ip_discovery(self) -> typing.Optional[builtins.str]:
|
|
722
|
+
'''The mechanism that the cluster uses to discover IP addresses.'''
|
|
722
723
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "ipDiscovery"))
|
|
723
724
|
|
|
724
725
|
@ip_discovery.setter
|
|
@@ -770,6 +771,7 @@ class CfnCluster(
|
|
|
770
771
|
@builtins.property
|
|
771
772
|
@jsii.member(jsii_name="networkType")
|
|
772
773
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
774
|
+
'''The IP address type for the cluster.'''
|
|
773
775
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "networkType"))
|
|
774
776
|
|
|
775
777
|
@network_type.setter
|
|
@@ -1121,11 +1123,11 @@ class CfnClusterProps:
|
|
|
1121
1123
|
:param engine: The name of the engine used by the cluster.
|
|
1122
1124
|
:param engine_version: The Redis engine version used by the cluster .
|
|
1123
1125
|
: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.
|
|
1124
|
-
:param ip_discovery:
|
|
1126
|
+
:param ip_discovery: The mechanism that the cluster uses to discover IP addresses. Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or 'ipv6' when DNS endpoints resolve to IPv6 addresses.
|
|
1125
1127
|
:param kms_key_id: The ID of the KMS key used to encrypt the cluster .
|
|
1126
1128
|
:param maintenance_window: Specifies the weekly time range during which maintenance on the cluster is performed. It is specified as a range in the format ``ddd:hh24:mi-ddd:hh24:mi`` (24H Clock UTC). The minimum maintenance window is a 60 minute period. *Pattern* : ``ddd:hh24:mi-ddd:hh24:mi``
|
|
1127
1129
|
:param multi_region_cluster_name: The name of the multi-Region cluster that this cluster belongs to.
|
|
1128
|
-
:param network_type:
|
|
1130
|
+
:param network_type: The IP address type for the cluster. Returns 'ipv4' for IPv4 only, 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports both IPv4 and IPv6 addressing.
|
|
1129
1131
|
:param num_replicas_per_shard: The number of replicas to apply to each shard. *Default value* : ``1`` *Maximum value* : ``5``
|
|
1130
1132
|
:param num_shards: The number of shards in the cluster .
|
|
1131
1133
|
:param parameter_group_name: The name of the parameter group used by the cluster .
|
|
@@ -1382,7 +1384,10 @@ class CfnClusterProps:
|
|
|
1382
1384
|
|
|
1383
1385
|
@builtins.property
|
|
1384
1386
|
def ip_discovery(self) -> typing.Optional[builtins.str]:
|
|
1385
|
-
'''
|
|
1387
|
+
'''The mechanism that the cluster uses to discover IP addresses.
|
|
1388
|
+
|
|
1389
|
+
Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or 'ipv6' when DNS endpoints resolve to IPv6 addresses.
|
|
1390
|
+
|
|
1386
1391
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html#cfn-memorydb-cluster-ipdiscovery
|
|
1387
1392
|
'''
|
|
1388
1393
|
result = self._values.get("ip_discovery")
|
|
@@ -1421,7 +1426,10 @@ class CfnClusterProps:
|
|
|
1421
1426
|
|
|
1422
1427
|
@builtins.property
|
|
1423
1428
|
def network_type(self) -> typing.Optional[builtins.str]:
|
|
1424
|
-
'''
|
|
1429
|
+
'''The IP address type for the cluster.
|
|
1430
|
+
|
|
1431
|
+
Returns 'ipv4' for IPv4 only, 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports both IPv4 and IPv6 addressing.
|
|
1432
|
+
|
|
1425
1433
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-cluster.html#cfn-memorydb-cluster-networktype
|
|
1426
1434
|
'''
|
|
1427
1435
|
result = self._values.get("network_type")
|
|
@@ -1643,7 +1651,7 @@ class CfnMultiRegionCluster(
|
|
|
1643
1651
|
:param engine_version: The version of the engine used by the multi-Region cluster.
|
|
1644
1652
|
:param multi_region_cluster_name_suffix: A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
|
|
1645
1653
|
:param multi_region_parameter_group_name: The name of the multi-Region parameter group associated with the cluster.
|
|
1646
|
-
:param num_shards:
|
|
1654
|
+
:param num_shards: The number of shards in the multi-Region cluster.
|
|
1647
1655
|
:param tags: A list of tags to be applied to the multi-Region cluster.
|
|
1648
1656
|
:param tls_enabled: Indiciates if the multi-Region cluster is TLS enabled.
|
|
1649
1657
|
:param update_strategy: The strategy to use for the update operation. Supported values are "coordinated" or "uncoordinated".
|
|
@@ -1822,7 +1830,7 @@ class CfnMultiRegionCluster(
|
|
|
1822
1830
|
@builtins.property
|
|
1823
1831
|
@jsii.member(jsii_name="numShards")
|
|
1824
1832
|
def num_shards(self) -> typing.Optional[jsii.Number]:
|
|
1825
|
-
'''
|
|
1833
|
+
'''The number of shards in the multi-Region cluster.'''
|
|
1826
1834
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "numShards"))
|
|
1827
1835
|
|
|
1828
1836
|
@num_shards.setter
|
|
@@ -1916,7 +1924,7 @@ class CfnMultiRegionClusterProps:
|
|
|
1916
1924
|
:param engine_version: The version of the engine used by the multi-Region cluster.
|
|
1917
1925
|
:param multi_region_cluster_name_suffix: A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB automatically applies a prefix to the Multi-Region cluster Name when it is created. Each Amazon Region has its own prefix. For instance, a Multi-Region cluster Name created in the US-West-1 region will begin with "virxk", along with the suffix name you provide. The suffix guarantees uniqueness of the Multi-Region cluster name across multiple regions.
|
|
1918
1926
|
:param multi_region_parameter_group_name: The name of the multi-Region parameter group associated with the cluster.
|
|
1919
|
-
:param num_shards:
|
|
1927
|
+
:param num_shards: The number of shards in the multi-Region cluster.
|
|
1920
1928
|
:param tags: A list of tags to be applied to the multi-Region cluster.
|
|
1921
1929
|
:param tls_enabled: Indiciates if the multi-Region cluster is TLS enabled.
|
|
1922
1930
|
:param update_strategy: The strategy to use for the update operation. Supported values are "coordinated" or "uncoordinated".
|
|
@@ -2041,7 +2049,7 @@ class CfnMultiRegionClusterProps:
|
|
|
2041
2049
|
|
|
2042
2050
|
@builtins.property
|
|
2043
2051
|
def num_shards(self) -> typing.Optional[jsii.Number]:
|
|
2044
|
-
'''
|
|
2052
|
+
'''The number of shards in the multi-Region cluster.
|
|
2045
2053
|
|
|
2046
2054
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-multiregioncluster.html#cfn-memorydb-multiregioncluster-numshards
|
|
2047
2055
|
'''
|
|
@@ -2515,7 +2523,9 @@ class CfnSubnetGroup(
|
|
|
2515
2523
|
@builtins.property
|
|
2516
2524
|
@jsii.member(jsii_name="attrSupportedNetworkTypes")
|
|
2517
2525
|
def attr_supported_network_types(self) -> typing.List[builtins.str]:
|
|
2518
|
-
'''
|
|
2526
|
+
'''The network types supported by this subnet.
|
|
2527
|
+
|
|
2528
|
+
Returns an array of strings that can include 'ipv4', 'ipv6', or both, indicating whether the subnet supports IPv4 only, IPv6 only, or dual-stack deployments.
|
|
2519
2529
|
|
|
2520
2530
|
:cloudformationAttribute: SupportedNetworkTypes
|
|
2521
2531
|
'''
|
aws_cdk/aws_omics/__init__.py
CHANGED
|
@@ -2715,7 +2715,7 @@ class CfnWorkflow(
|
|
|
2715
2715
|
- *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository.
|
|
2716
2716
|
- (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow.
|
|
2717
2717
|
|
|
2718
|
-
For more information, see `Creating private
|
|
2718
|
+
For more information, see `Creating or updating a private workflow in AWS HealthOmics <https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html>`_ in the AWS HealthOmics User Guide.
|
|
2719
2719
|
|
|
2720
2720
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
|
|
2721
2721
|
:cloudformationResource: AWS::Omics::Workflow
|
|
@@ -2772,7 +2772,7 @@ class CfnWorkflow(
|
|
|
2772
2772
|
:param main: The path of the main definition file for the workflow.
|
|
2773
2773
|
:param name: The workflow's name.
|
|
2774
2774
|
:param parameter_template: The workflow's parameter template.
|
|
2775
|
-
:param storage_capacity: The default storage capacity for
|
|
2775
|
+
:param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
|
|
2776
2776
|
:param tags: Tags for the workflow.
|
|
2777
2777
|
'''
|
|
2778
2778
|
if __debug__:
|
|
@@ -2977,7 +2977,7 @@ class CfnWorkflow(
|
|
|
2977
2977
|
@builtins.property
|
|
2978
2978
|
@jsii.member(jsii_name="storageCapacity")
|
|
2979
2979
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
2980
|
-
'''The default storage capacity for
|
|
2980
|
+
'''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.'''
|
|
2981
2981
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "storageCapacity"))
|
|
2982
2982
|
|
|
2983
2983
|
@storage_capacity.setter
|
|
@@ -3114,7 +3114,7 @@ class CfnWorkflowProps:
|
|
|
3114
3114
|
:param main: The path of the main definition file for the workflow.
|
|
3115
3115
|
:param name: The workflow's name.
|
|
3116
3116
|
:param parameter_template: The workflow's parameter template.
|
|
3117
|
-
:param storage_capacity: The default storage capacity for
|
|
3117
|
+
:param storage_capacity: The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
|
|
3118
3118
|
:param tags: Tags for the workflow.
|
|
3119
3119
|
|
|
3120
3120
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html
|
|
@@ -3242,7 +3242,7 @@ class CfnWorkflowProps:
|
|
|
3242
3242
|
|
|
3243
3243
|
@builtins.property
|
|
3244
3244
|
def storage_capacity(self) -> typing.Optional[jsii.Number]:
|
|
3245
|
-
'''The default storage capacity for
|
|
3245
|
+
'''The default static storage capacity (in gibibytes) for runs that use this workflow or workflow version.
|
|
3246
3246
|
|
|
3247
3247
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html#cfn-omics-workflow-storagecapacity
|
|
3248
3248
|
'''
|
|
@@ -3510,7 +3510,7 @@ class CfnDataSource(
|
|
|
3510
3510
|
For more information, see `Custom document enrichment <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/custom-document-enrichment.html>`_ .
|
|
3511
3511
|
|
|
3512
3512
|
:param invocation_condition: The condition used for when a Lambda function should be invoked. For example, you can specify a condition that if there are empty date-time values, then Amazon Q Business should invoke a function that inserts the current date-time.
|
|
3513
|
-
:param lambda_arn: The Amazon Resource Name (ARN) of the Lambda function
|
|
3513
|
+
:param lambda_arn: The Amazon Resource Name (ARN) of the Lambda function during ingestion. For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
|
|
3514
3514
|
:param role_arn: The Amazon Resource Name (ARN) of a role with permission to run ``PreExtractionHookConfiguration`` and ``PostExtractionHookConfiguration`` for altering document metadata and content during the document ingestion process.
|
|
3515
3515
|
:param s3_bucket_name: Stores the original, raw documents or the structured, parsed documents before and after altering them. For more information, see `Data contracts for Lambda functions <https://docs.aws.amazon.com/amazonq/latest/business-use-dg/cde-lambda-operations.html#cde-lambda-operations-data-contracts>`_ .
|
|
3516
3516
|
|
|
@@ -3572,7 +3572,7 @@ class CfnDataSource(
|
|
|
3572
3572
|
|
|
3573
3573
|
@builtins.property
|
|
3574
3574
|
def lambda_arn(self) -> typing.Optional[builtins.str]:
|
|
3575
|
-
'''The Amazon Resource Name (ARN) of the Lambda function
|
|
3575
|
+
'''The Amazon Resource Name (ARN) of the Lambda function during ingestion.
|
|
3576
3576
|
|
|
3577
3577
|
For more information, see `Using Lambda functions for Amazon Q Business document enrichment <https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/cde-lambda-operations.html>`_ .
|
|
3578
3578
|
|
|
@@ -89687,7 +89687,7 @@ class CfnDashboard(
|
|
|
89687
89687
|
*,
|
|
89688
89688
|
availability_status: typing.Optional[builtins.str] = None,
|
|
89689
89689
|
) -> None:
|
|
89690
|
-
'''
|
|
89690
|
+
'''Enable/disable visual-level downloads option.
|
|
89691
89691
|
|
|
89692
89692
|
:param availability_status: Availability status.
|
|
89693
89693
|
|
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -8878,6 +8878,7 @@ class CfnDBInstance(
|
|
|
8878
8878
|
character_set_name="characterSetName",
|
|
8879
8879
|
copy_tags_to_snapshot=False,
|
|
8880
8880
|
custom_iam_instance_profile="customIamInstanceProfile",
|
|
8881
|
+
database_insights_mode="databaseInsightsMode",
|
|
8881
8882
|
db_cluster_identifier="dbClusterIdentifier",
|
|
8882
8883
|
db_cluster_snapshot_identifier="dbClusterSnapshotIdentifier",
|
|
8883
8884
|
db_instance_class="dbInstanceClass",
|
|
@@ -8974,6 +8975,7 @@ class CfnDBInstance(
|
|
|
8974
8975
|
character_set_name: typing.Optional[builtins.str] = None,
|
|
8975
8976
|
copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8976
8977
|
custom_iam_instance_profile: typing.Optional[builtins.str] = None,
|
|
8978
|
+
database_insights_mode: typing.Optional[builtins.str] = None,
|
|
8977
8979
|
db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
8978
8980
|
db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
|
|
8979
8981
|
db_instance_class: typing.Optional[builtins.str] = None,
|
|
@@ -9057,6 +9059,7 @@ class CfnDBInstance(
|
|
|
9057
9059
|
:param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
|
|
9058
9060
|
:param copy_tags_to_snapshot: Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
|
|
9059
9061
|
:param custom_iam_instance_profile: The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. This setting is required for RDS Custom. Constraints: - The profile must exist in your account. - The profile must have an IAM role that Amazon EC2 has permissions to assume. - The instance profile name and the associated IAM role name must start with the prefix ``AWSRDSCustom`` . For the list of permissions required for the IAM role, see `Configure IAM and your VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc>`_ in the *Amazon RDS User Guide* .
|
|
9062
|
+
:param database_insights_mode: The mode of Database Insights to enable for the DB instance. .. epigraph:: Aurora DB instances inherit this value from the DB cluster, so you can't change this value.
|
|
9060
9063
|
:param db_cluster_identifier: The identifier of the DB cluster that this DB instance will belong to. This setting doesn't apply to RDS Custom DB instances.
|
|
9061
9064
|
:param db_cluster_snapshot_identifier: The identifier for the Multi-AZ DB cluster snapshot to restore from. For more information on Multi-AZ DB clusters, see `Multi-AZ DB cluster deployments <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html>`_ in the *Amazon RDS User Guide* . Constraints: - Must match the identifier of an existing Multi-AZ DB cluster snapshot. - Can't be specified when ``DBSnapshotIdentifier`` is specified. - Must be specified when ``DBSnapshotIdentifier`` isn't specified. - If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the ``DBClusterSnapshotIdentifier`` must be the ARN of the shared snapshot. - Can't be the identifier of an Aurora DB cluster snapshot.
|
|
9062
9065
|
:param db_instance_class: The compute and memory capacity of the DB instance, for example ``db.m5.large`` . Not all DB instance classes are available in all AWS Regions , or for all database engines. For the full list of DB instance classes, and availability for your engine, see `DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon RDS User Guide* or `Aurora DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon Aurora User Guide* .
|
|
@@ -9142,6 +9145,7 @@ class CfnDBInstance(
|
|
|
9142
9145
|
character_set_name=character_set_name,
|
|
9143
9146
|
copy_tags_to_snapshot=copy_tags_to_snapshot,
|
|
9144
9147
|
custom_iam_instance_profile=custom_iam_instance_profile,
|
|
9148
|
+
database_insights_mode=database_insights_mode,
|
|
9145
9149
|
db_cluster_identifier=db_cluster_identifier,
|
|
9146
9150
|
db_cluster_snapshot_identifier=db_cluster_snapshot_identifier,
|
|
9147
9151
|
db_instance_class=db_instance_class,
|
|
@@ -9272,8 +9276,7 @@ class CfnDBInstance(
|
|
|
9272
9276
|
@builtins.property
|
|
9273
9277
|
@jsii.member(jsii_name="attrDatabaseInsightsMode")
|
|
9274
9278
|
def attr_database_insights_mode(self) -> builtins.str:
|
|
9275
|
-
'''
|
|
9276
|
-
|
|
9279
|
+
'''
|
|
9277
9280
|
:cloudformationAttribute: DatabaseInsightsMode
|
|
9278
9281
|
'''
|
|
9279
9282
|
return typing.cast(builtins.str, jsii.get(self, "attrDatabaseInsightsMode"))
|
|
@@ -9617,6 +9620,19 @@ class CfnDBInstance(
|
|
|
9617
9620
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9618
9621
|
jsii.set(self, "customIamInstanceProfile", value) # pyright: ignore[reportArgumentType]
|
|
9619
9622
|
|
|
9623
|
+
@builtins.property
|
|
9624
|
+
@jsii.member(jsii_name="databaseInsightsMode")
|
|
9625
|
+
def database_insights_mode(self) -> typing.Optional[builtins.str]:
|
|
9626
|
+
'''The mode of Database Insights to enable for the DB instance.'''
|
|
9627
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "databaseInsightsMode"))
|
|
9628
|
+
|
|
9629
|
+
@database_insights_mode.setter
|
|
9630
|
+
def database_insights_mode(self, value: typing.Optional[builtins.str]) -> None:
|
|
9631
|
+
if __debug__:
|
|
9632
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b46fcfbcf52de4fba0e79ef45cfd1f9b086be851a81f128b407d6e590bcc50de)
|
|
9633
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9634
|
+
jsii.set(self, "databaseInsightsMode", value) # pyright: ignore[reportArgumentType]
|
|
9635
|
+
|
|
9620
9636
|
@builtins.property
|
|
9621
9637
|
@jsii.member(jsii_name="dbClusterIdentifier")
|
|
9622
9638
|
def db_cluster_identifier(self) -> typing.Optional[builtins.str]:
|
|
@@ -10968,6 +10984,7 @@ class CfnDBInstance(
|
|
|
10968
10984
|
"character_set_name": "characterSetName",
|
|
10969
10985
|
"copy_tags_to_snapshot": "copyTagsToSnapshot",
|
|
10970
10986
|
"custom_iam_instance_profile": "customIamInstanceProfile",
|
|
10987
|
+
"database_insights_mode": "databaseInsightsMode",
|
|
10971
10988
|
"db_cluster_identifier": "dbClusterIdentifier",
|
|
10972
10989
|
"db_cluster_snapshot_identifier": "dbClusterSnapshotIdentifier",
|
|
10973
10990
|
"db_instance_class": "dbInstanceClass",
|
|
@@ -11053,6 +11070,7 @@ class CfnDBInstanceProps:
|
|
|
11053
11070
|
character_set_name: typing.Optional[builtins.str] = None,
|
|
11054
11071
|
copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
11055
11072
|
custom_iam_instance_profile: typing.Optional[builtins.str] = None,
|
|
11073
|
+
database_insights_mode: typing.Optional[builtins.str] = None,
|
|
11056
11074
|
db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
11057
11075
|
db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
|
|
11058
11076
|
db_instance_class: typing.Optional[builtins.str] = None,
|
|
@@ -11135,6 +11153,7 @@ class CfnDBInstanceProps:
|
|
|
11135
11153
|
:param character_set_name: For supported engines, indicates that the DB instance should be associated with the specified character set. *Amazon Aurora* Not applicable. The character set is managed by the DB cluster. For more information, see `AWS::RDS::DBCluster <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html>`_ .
|
|
11136
11154
|
:param copy_tags_to_snapshot: Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
|
|
11137
11155
|
:param custom_iam_instance_profile: The instance profile associated with the underlying Amazon EC2 instance of an RDS Custom DB instance. This setting is required for RDS Custom. Constraints: - The profile must exist in your account. - The profile must have an IAM role that Amazon EC2 has permissions to assume. - The instance profile name and the associated IAM role name must start with the prefix ``AWSRDSCustom`` . For the list of permissions required for the IAM role, see `Configure IAM and your VPC <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-setup-orcl.html#custom-setup-orcl.iam-vpc>`_ in the *Amazon RDS User Guide* .
|
|
11156
|
+
:param database_insights_mode: The mode of Database Insights to enable for the DB instance. .. epigraph:: Aurora DB instances inherit this value from the DB cluster, so you can't change this value.
|
|
11138
11157
|
:param db_cluster_identifier: The identifier of the DB cluster that this DB instance will belong to. This setting doesn't apply to RDS Custom DB instances.
|
|
11139
11158
|
:param db_cluster_snapshot_identifier: The identifier for the Multi-AZ DB cluster snapshot to restore from. For more information on Multi-AZ DB clusters, see `Multi-AZ DB cluster deployments <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/multi-az-db-clusters-concepts.html>`_ in the *Amazon RDS User Guide* . Constraints: - Must match the identifier of an existing Multi-AZ DB cluster snapshot. - Can't be specified when ``DBSnapshotIdentifier`` is specified. - Must be specified when ``DBSnapshotIdentifier`` isn't specified. - If you are restoring from a shared manual Multi-AZ DB cluster snapshot, the ``DBClusterSnapshotIdentifier`` must be the ARN of the shared snapshot. - Can't be the identifier of an Aurora DB cluster snapshot.
|
|
11140
11159
|
:param db_instance_class: The compute and memory capacity of the DB instance, for example ``db.m5.large`` . Not all DB instance classes are available in all AWS Regions , or for all database engines. For the full list of DB instance classes, and availability for your engine, see `DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon RDS User Guide* or `Aurora DB instance classes <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html>`_ in the *Amazon Aurora User Guide* .
|
|
@@ -11228,6 +11247,7 @@ class CfnDBInstanceProps:
|
|
|
11228
11247
|
character_set_name="characterSetName",
|
|
11229
11248
|
copy_tags_to_snapshot=False,
|
|
11230
11249
|
custom_iam_instance_profile="customIamInstanceProfile",
|
|
11250
|
+
database_insights_mode="databaseInsightsMode",
|
|
11231
11251
|
db_cluster_identifier="dbClusterIdentifier",
|
|
11232
11252
|
db_cluster_snapshot_identifier="dbClusterSnapshotIdentifier",
|
|
11233
11253
|
db_instance_class="dbInstanceClass",
|
|
@@ -11320,6 +11340,7 @@ class CfnDBInstanceProps:
|
|
|
11320
11340
|
check_type(argname="argument character_set_name", value=character_set_name, expected_type=type_hints["character_set_name"])
|
|
11321
11341
|
check_type(argname="argument copy_tags_to_snapshot", value=copy_tags_to_snapshot, expected_type=type_hints["copy_tags_to_snapshot"])
|
|
11322
11342
|
check_type(argname="argument custom_iam_instance_profile", value=custom_iam_instance_profile, expected_type=type_hints["custom_iam_instance_profile"])
|
|
11343
|
+
check_type(argname="argument database_insights_mode", value=database_insights_mode, expected_type=type_hints["database_insights_mode"])
|
|
11323
11344
|
check_type(argname="argument db_cluster_identifier", value=db_cluster_identifier, expected_type=type_hints["db_cluster_identifier"])
|
|
11324
11345
|
check_type(argname="argument db_cluster_snapshot_identifier", value=db_cluster_snapshot_identifier, expected_type=type_hints["db_cluster_snapshot_identifier"])
|
|
11325
11346
|
check_type(argname="argument db_instance_class", value=db_instance_class, expected_type=type_hints["db_instance_class"])
|
|
@@ -11415,6 +11436,8 @@ class CfnDBInstanceProps:
|
|
|
11415
11436
|
self._values["copy_tags_to_snapshot"] = copy_tags_to_snapshot
|
|
11416
11437
|
if custom_iam_instance_profile is not None:
|
|
11417
11438
|
self._values["custom_iam_instance_profile"] = custom_iam_instance_profile
|
|
11439
|
+
if database_insights_mode is not None:
|
|
11440
|
+
self._values["database_insights_mode"] = database_insights_mode
|
|
11418
11441
|
if db_cluster_identifier is not None:
|
|
11419
11442
|
self._values["db_cluster_identifier"] = db_cluster_identifier
|
|
11420
11443
|
if db_cluster_snapshot_identifier is not None:
|
|
@@ -11834,6 +11857,19 @@ class CfnDBInstanceProps:
|
|
|
11834
11857
|
result = self._values.get("custom_iam_instance_profile")
|
|
11835
11858
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
11836
11859
|
|
|
11860
|
+
@builtins.property
|
|
11861
|
+
def database_insights_mode(self) -> typing.Optional[builtins.str]:
|
|
11862
|
+
'''The mode of Database Insights to enable for the DB instance.
|
|
11863
|
+
|
|
11864
|
+
.. epigraph::
|
|
11865
|
+
|
|
11866
|
+
Aurora DB instances inherit this value from the DB cluster, so you can't change this value.
|
|
11867
|
+
|
|
11868
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-databaseinsightsmode
|
|
11869
|
+
'''
|
|
11870
|
+
result = self._values.get("database_insights_mode")
|
|
11871
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
11872
|
+
|
|
11837
11873
|
@builtins.property
|
|
11838
11874
|
def db_cluster_identifier(self) -> typing.Optional[builtins.str]:
|
|
11839
11875
|
'''The identifier of the DB cluster that this DB instance will belong to.
|
|
@@ -48424,6 +48460,7 @@ def _typecheckingstub__255b0779ca741853674876540bf77279f6293bea05de2cd18724d2b92
|
|
|
48424
48460
|
character_set_name: typing.Optional[builtins.str] = None,
|
|
48425
48461
|
copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
48426
48462
|
custom_iam_instance_profile: typing.Optional[builtins.str] = None,
|
|
48463
|
+
database_insights_mode: typing.Optional[builtins.str] = None,
|
|
48427
48464
|
db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
48428
48465
|
db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
|
|
48429
48466
|
db_instance_class: typing.Optional[builtins.str] = None,
|
|
@@ -48594,6 +48631,12 @@ def _typecheckingstub__226e820a1b504a7c3743da9e7c7340401e28197ad7bd4b0cb3f5526c4
|
|
|
48594
48631
|
"""Type checking stubs"""
|
|
48595
48632
|
pass
|
|
48596
48633
|
|
|
48634
|
+
def _typecheckingstub__b46fcfbcf52de4fba0e79ef45cfd1f9b086be851a81f128b407d6e590bcc50de(
|
|
48635
|
+
value: typing.Optional[builtins.str],
|
|
48636
|
+
) -> None:
|
|
48637
|
+
"""Type checking stubs"""
|
|
48638
|
+
pass
|
|
48639
|
+
|
|
48597
48640
|
def _typecheckingstub__47e201d1e2bcfacba9b2fdb9245c97a0850bff8695fda8e45cb8e1df70fbde73(
|
|
48598
48641
|
value: typing.Optional[builtins.str],
|
|
48599
48642
|
) -> None:
|
|
@@ -49036,6 +49079,7 @@ def _typecheckingstub__3bddb1be0bd1f1699e3a084c5859d94d8879ff15011f2f2eaac29ec16
|
|
|
49036
49079
|
character_set_name: typing.Optional[builtins.str] = None,
|
|
49037
49080
|
copy_tags_to_snapshot: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49038
49081
|
custom_iam_instance_profile: typing.Optional[builtins.str] = None,
|
|
49082
|
+
database_insights_mode: typing.Optional[builtins.str] = None,
|
|
49039
49083
|
db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
49040
49084
|
db_cluster_snapshot_identifier: typing.Optional[builtins.str] = None,
|
|
49041
49085
|
db_instance_class: typing.Optional[builtins.str] = None,
|
|
@@ -1434,6 +1434,15 @@ class CfnWorkgroup(
|
|
|
1434
1434
|
'''
|
|
1435
1435
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrWorkgroup"))
|
|
1436
1436
|
|
|
1437
|
+
@builtins.property
|
|
1438
|
+
@jsii.member(jsii_name="attrWorkgroupBaseCapacity")
|
|
1439
|
+
def attr_workgroup_base_capacity(self) -> jsii.Number:
|
|
1440
|
+
'''The base data warehouse capacity of the workgroup in Redshift Processing Units (RPUs).
|
|
1441
|
+
|
|
1442
|
+
:cloudformationAttribute: Workgroup.BaseCapacity
|
|
1443
|
+
'''
|
|
1444
|
+
return typing.cast(jsii.Number, jsii.get(self, "attrWorkgroupBaseCapacity"))
|
|
1445
|
+
|
|
1437
1446
|
@builtins.property
|
|
1438
1447
|
@jsii.member(jsii_name="attrWorkgroupConfigParameters")
|
|
1439
1448
|
def attr_workgroup_config_parameters(self) -> _IResolvable_da3f097b:
|
|
@@ -1496,6 +1505,17 @@ class CfnWorkgroup(
|
|
|
1496
1505
|
'''
|
|
1497
1506
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrWorkgroupEnhancedVpcRouting"))
|
|
1498
1507
|
|
|
1508
|
+
@builtins.property
|
|
1509
|
+
@jsii.member(jsii_name="attrWorkgroupMaxCapacity")
|
|
1510
|
+
def attr_workgroup_max_capacity(self) -> jsii.Number:
|
|
1511
|
+
'''The maximum data-warehouse capacity Amazon Redshift Serverless uses to serve queries.
|
|
1512
|
+
|
|
1513
|
+
The max capacity is specified in RPUs.
|
|
1514
|
+
|
|
1515
|
+
:cloudformationAttribute: Workgroup.MaxCapacity
|
|
1516
|
+
'''
|
|
1517
|
+
return typing.cast(jsii.Number, jsii.get(self, "attrWorkgroupMaxCapacity"))
|
|
1518
|
+
|
|
1499
1519
|
@builtins.property
|
|
1500
1520
|
@jsii.member(jsii_name="attrWorkgroupNamespaceName")
|
|
1501
1521
|
def attr_workgroup_namespace_name(self) -> builtins.str:
|
|
@@ -3480,6 +3480,7 @@ class CfnResolverRule(
|
|
|
3480
3480
|
rule_type="ruleType",
|
|
3481
3481
|
|
|
3482
3482
|
# the properties below are optional
|
|
3483
|
+
delegation_record="delegationRecord",
|
|
3483
3484
|
domain_name="domainName",
|
|
3484
3485
|
name="name",
|
|
3485
3486
|
resolver_endpoint_id="resolverEndpointId",
|
|
@@ -3503,6 +3504,7 @@ class CfnResolverRule(
|
|
|
3503
3504
|
id: builtins.str,
|
|
3504
3505
|
*,
|
|
3505
3506
|
rule_type: builtins.str,
|
|
3507
|
+
delegation_record: typing.Optional[builtins.str] = None,
|
|
3506
3508
|
domain_name: typing.Optional[builtins.str] = None,
|
|
3507
3509
|
name: typing.Optional[builtins.str] = None,
|
|
3508
3510
|
resolver_endpoint_id: typing.Optional[builtins.str] = None,
|
|
@@ -3513,6 +3515,7 @@ class CfnResolverRule(
|
|
|
3513
3515
|
:param scope: Scope in which this resource is defined.
|
|
3514
3516
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3515
3517
|
:param rule_type: When you want to forward DNS queries for specified domain name to resolvers on your network, specify ``FORWARD`` . When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify ``SYSTEM`` . For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify ``FORWARD`` for ``RuleType`` . To then have Resolver process queries for apex.example.com, you create a rule and specify ``SYSTEM`` for ``RuleType`` . Currently, only Resolver can create rules that have a value of ``RECURSIVE`` for ``RuleType`` .
|
|
3518
|
+
:param delegation_record: The name server domain for queries to be delegated to if a query matches the delegation record.
|
|
3516
3519
|
:param domain_name: DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` . If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).
|
|
3517
3520
|
:param name: The name for the Resolver rule, which you specified when you created the Resolver rule.
|
|
3518
3521
|
:param resolver_endpoint_id: The ID of the endpoint that the rule is associated with.
|
|
@@ -3525,6 +3528,7 @@ class CfnResolverRule(
|
|
|
3525
3528
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
3526
3529
|
props = CfnResolverRuleProps(
|
|
3527
3530
|
rule_type=rule_type,
|
|
3531
|
+
delegation_record=delegation_record,
|
|
3528
3532
|
domain_name=domain_name,
|
|
3529
3533
|
name=name,
|
|
3530
3534
|
resolver_endpoint_id=resolver_endpoint_id,
|
|
@@ -3648,6 +3652,19 @@ class CfnResolverRule(
|
|
|
3648
3652
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3649
3653
|
jsii.set(self, "ruleType", value) # pyright: ignore[reportArgumentType]
|
|
3650
3654
|
|
|
3655
|
+
@builtins.property
|
|
3656
|
+
@jsii.member(jsii_name="delegationRecord")
|
|
3657
|
+
def delegation_record(self) -> typing.Optional[builtins.str]:
|
|
3658
|
+
'''The name server domain for queries to be delegated to if a query matches the delegation record.'''
|
|
3659
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "delegationRecord"))
|
|
3660
|
+
|
|
3661
|
+
@delegation_record.setter
|
|
3662
|
+
def delegation_record(self, value: typing.Optional[builtins.str]) -> None:
|
|
3663
|
+
if __debug__:
|
|
3664
|
+
type_hints = typing.get_type_hints(_typecheckingstub__b1126d07ce449d0d6220e3fbf183f2d786e81574a4f131914dfe0914a55bb851)
|
|
3665
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
3666
|
+
jsii.set(self, "delegationRecord", value) # pyright: ignore[reportArgumentType]
|
|
3667
|
+
|
|
3651
3668
|
@builtins.property
|
|
3652
3669
|
@jsii.member(jsii_name="domainName")
|
|
3653
3670
|
def domain_name(self) -> typing.Optional[builtins.str]:
|
|
@@ -4106,6 +4123,7 @@ class CfnResolverRuleAssociationProps:
|
|
|
4106
4123
|
jsii_struct_bases=[],
|
|
4107
4124
|
name_mapping={
|
|
4108
4125
|
"rule_type": "ruleType",
|
|
4126
|
+
"delegation_record": "delegationRecord",
|
|
4109
4127
|
"domain_name": "domainName",
|
|
4110
4128
|
"name": "name",
|
|
4111
4129
|
"resolver_endpoint_id": "resolverEndpointId",
|
|
@@ -4118,6 +4136,7 @@ class CfnResolverRuleProps:
|
|
|
4118
4136
|
self,
|
|
4119
4137
|
*,
|
|
4120
4138
|
rule_type: builtins.str,
|
|
4139
|
+
delegation_record: typing.Optional[builtins.str] = None,
|
|
4121
4140
|
domain_name: typing.Optional[builtins.str] = None,
|
|
4122
4141
|
name: typing.Optional[builtins.str] = None,
|
|
4123
4142
|
resolver_endpoint_id: typing.Optional[builtins.str] = None,
|
|
@@ -4127,6 +4146,7 @@ class CfnResolverRuleProps:
|
|
|
4127
4146
|
'''Properties for defining a ``CfnResolverRule``.
|
|
4128
4147
|
|
|
4129
4148
|
:param rule_type: When you want to forward DNS queries for specified domain name to resolvers on your network, specify ``FORWARD`` . When you have a forwarding rule to forward DNS queries for a domain to your network and you want Resolver to process queries for a subdomain of that domain, specify ``SYSTEM`` . For example, to forward DNS queries for example.com to resolvers on your network, you create a rule and specify ``FORWARD`` for ``RuleType`` . To then have Resolver process queries for apex.example.com, you create a rule and specify ``SYSTEM`` for ``RuleType`` . Currently, only Resolver can create rules that have a value of ``RECURSIVE`` for ``RuleType`` .
|
|
4149
|
+
:param delegation_record: The name server domain for queries to be delegated to if a query matches the delegation record.
|
|
4130
4150
|
:param domain_name: DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` . If a query matches multiple Resolver rules (example.com and www.example.com), the query is routed using the Resolver rule that contains the most specific domain name (www.example.com).
|
|
4131
4151
|
:param name: The name for the Resolver rule, which you specified when you created the Resolver rule.
|
|
4132
4152
|
:param resolver_endpoint_id: The ID of the endpoint that the rule is associated with.
|
|
@@ -4146,6 +4166,7 @@ class CfnResolverRuleProps:
|
|
|
4146
4166
|
rule_type="ruleType",
|
|
4147
4167
|
|
|
4148
4168
|
# the properties below are optional
|
|
4169
|
+
delegation_record="delegationRecord",
|
|
4149
4170
|
domain_name="domainName",
|
|
4150
4171
|
name="name",
|
|
4151
4172
|
resolver_endpoint_id="resolverEndpointId",
|
|
@@ -4165,6 +4186,7 @@ class CfnResolverRuleProps:
|
|
|
4165
4186
|
if __debug__:
|
|
4166
4187
|
type_hints = typing.get_type_hints(_typecheckingstub__fdcaea1870aaf2dc13fe56b2d15a89d6adba2ad5884071fc618c9e4bb2c3ddec)
|
|
4167
4188
|
check_type(argname="argument rule_type", value=rule_type, expected_type=type_hints["rule_type"])
|
|
4189
|
+
check_type(argname="argument delegation_record", value=delegation_record, expected_type=type_hints["delegation_record"])
|
|
4168
4190
|
check_type(argname="argument domain_name", value=domain_name, expected_type=type_hints["domain_name"])
|
|
4169
4191
|
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
4170
4192
|
check_type(argname="argument resolver_endpoint_id", value=resolver_endpoint_id, expected_type=type_hints["resolver_endpoint_id"])
|
|
@@ -4173,6 +4195,8 @@ class CfnResolverRuleProps:
|
|
|
4173
4195
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
4174
4196
|
"rule_type": rule_type,
|
|
4175
4197
|
}
|
|
4198
|
+
if delegation_record is not None:
|
|
4199
|
+
self._values["delegation_record"] = delegation_record
|
|
4176
4200
|
if domain_name is not None:
|
|
4177
4201
|
self._values["domain_name"] = domain_name
|
|
4178
4202
|
if name is not None:
|
|
@@ -4200,6 +4224,15 @@ class CfnResolverRuleProps:
|
|
|
4200
4224
|
assert result is not None, "Required property 'rule_type' is missing"
|
|
4201
4225
|
return typing.cast(builtins.str, result)
|
|
4202
4226
|
|
|
4227
|
+
@builtins.property
|
|
4228
|
+
def delegation_record(self) -> typing.Optional[builtins.str]:
|
|
4229
|
+
'''The name server domain for queries to be delegated to if a query matches the delegation record.
|
|
4230
|
+
|
|
4231
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53resolver-resolverrule.html#cfn-route53resolver-resolverrule-delegationrecord
|
|
4232
|
+
'''
|
|
4233
|
+
result = self._values.get("delegation_record")
|
|
4234
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
4235
|
+
|
|
4203
4236
|
@builtins.property
|
|
4204
4237
|
def domain_name(self) -> typing.Optional[builtins.str]:
|
|
4205
4238
|
'''DNS queries for this domain name are forwarded to the IP addresses that are specified in ``TargetIps`` .
|
|
@@ -4838,6 +4871,7 @@ def _typecheckingstub__7253810e416357d129df95b3c7aa9aa0f08e68de7d465658e598912cf
|
|
|
4838
4871
|
id: builtins.str,
|
|
4839
4872
|
*,
|
|
4840
4873
|
rule_type: builtins.str,
|
|
4874
|
+
delegation_record: typing.Optional[builtins.str] = None,
|
|
4841
4875
|
domain_name: typing.Optional[builtins.str] = None,
|
|
4842
4876
|
name: typing.Optional[builtins.str] = None,
|
|
4843
4877
|
resolver_endpoint_id: typing.Optional[builtins.str] = None,
|
|
@@ -4865,6 +4899,12 @@ def _typecheckingstub__13530a5c4f7ce175ae03b85dc7d4550ae7a3cb68cb2be12c89a167e8d
|
|
|
4865
4899
|
"""Type checking stubs"""
|
|
4866
4900
|
pass
|
|
4867
4901
|
|
|
4902
|
+
def _typecheckingstub__b1126d07ce449d0d6220e3fbf183f2d786e81574a4f131914dfe0914a55bb851(
|
|
4903
|
+
value: typing.Optional[builtins.str],
|
|
4904
|
+
) -> None:
|
|
4905
|
+
"""Type checking stubs"""
|
|
4906
|
+
pass
|
|
4907
|
+
|
|
4868
4908
|
def _typecheckingstub__3e83136a81b10aed2481c602cdca3f63e1c2bcaed82fe69b1ab2413af7c0b7c0(
|
|
4869
4909
|
value: typing.Optional[builtins.str],
|
|
4870
4910
|
) -> None:
|
|
@@ -4959,6 +4999,7 @@ def _typecheckingstub__3b7cd1048ae30851b3480dc04a365c7bd487212f9328f80bc61e1bae1
|
|
|
4959
4999
|
def _typecheckingstub__fdcaea1870aaf2dc13fe56b2d15a89d6adba2ad5884071fc618c9e4bb2c3ddec(
|
|
4960
5000
|
*,
|
|
4961
5001
|
rule_type: builtins.str,
|
|
5002
|
+
delegation_record: typing.Optional[builtins.str] = None,
|
|
4962
5003
|
domain_name: typing.Optional[builtins.str] = None,
|
|
4963
5004
|
name: typing.Optional[builtins.str] = None,
|
|
4964
5005
|
resolver_endpoint_id: typing.Optional[builtins.str] = None,
|
aws_cdk/aws_s3/__init__.py
CHANGED
|
@@ -4381,7 +4381,7 @@ class CfnBucket(
|
|
|
4381
4381
|
:param inventory_configurations: Specifies the inventory configuration for an Amazon S3 bucket. For more information, see `GET Bucket inventory <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html>`_ in the *Amazon S3 API Reference* .
|
|
4382
4382
|
:param lifecycle_configuration: Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For more information, see `Object Lifecycle Management <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html>`_ in the *Amazon S3 User Guide* .
|
|
4383
4383
|
:param logging_configuration: Settings that define where logs are stored.
|
|
4384
|
-
:param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket.
|
|
4384
|
+
:param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket.
|
|
4385
4385
|
:param metrics_configurations: Specifies a metrics configuration for the CloudWatch request metrics (specified by the metrics configuration ID) from an Amazon S3 bucket. If you're updating an existing metrics configuration, note that this is a full replacement of the existing metrics configuration. If you don't include the elements you want to keep, they are erased. For more information, see `PutBucketMetricsConfiguration <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html>`_ .
|
|
4386
4386
|
:param notification_configuration: Configuration that defines how Amazon S3 handles bucket notifications.
|
|
4387
4387
|
:param object_lock_configuration: .. epigraph:: This operation is not supported for directory buckets. Places an Object Lock configuration on the specified bucket. The rule specified in the Object Lock configuration will be applied by default to every new object placed in the specified bucket. For more information, see `Locking Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html>`_ . .. epigraph:: - The ``DefaultRetention`` settings require both a mode and a period. - The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time. - You can enable Object Lock for new or existing buckets. For more information, see `Configuring Object Lock <https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-configure.html>`_ .
|
|
@@ -11188,7 +11188,7 @@ class CfnBucketProps:
|
|
|
11188
11188
|
:param inventory_configurations: Specifies the inventory configuration for an Amazon S3 bucket. For more information, see `GET Bucket inventory <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html>`_ in the *Amazon S3 API Reference* .
|
|
11189
11189
|
:param lifecycle_configuration: Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For more information, see `Object Lifecycle Management <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html>`_ in the *Amazon S3 User Guide* .
|
|
11190
11190
|
:param logging_configuration: Settings that define where logs are stored.
|
|
11191
|
-
:param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket.
|
|
11191
|
+
:param metadata_table_configuration: The metadata table configuration of an Amazon S3 general purpose bucket.
|
|
11192
11192
|
:param metrics_configurations: Specifies a metrics configuration for the CloudWatch request metrics (specified by the metrics configuration ID) from an Amazon S3 bucket. If you're updating an existing metrics configuration, note that this is a full replacement of the existing metrics configuration. If you don't include the elements you want to keep, they are erased. For more information, see `PutBucketMetricsConfiguration <https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTMetricConfiguration.html>`_ .
|
|
11193
11193
|
:param notification_configuration: Configuration that defines how Amazon S3 handles bucket notifications.
|
|
11194
11194
|
:param object_lock_configuration: .. epigraph:: This operation is not supported for directory buckets. Places an Object Lock configuration on the specified bucket. The rule specified in the Object Lock configuration will be applied by default to every new object placed in the specified bucket. For more information, see `Locking Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock.html>`_ . .. epigraph:: - The ``DefaultRetention`` settings require both a mode and a period. - The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time. - You can enable Object Lock for new or existing buckets. For more information, see `Configuring Object Lock <https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-configure.html>`_ .
|
|
@@ -11419,8 +11419,6 @@ class CfnBucketProps:
|
|
|
11419
11419
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnBucket.MetadataTableConfigurationProperty]]:
|
|
11420
11420
|
'''The metadata table configuration of an Amazon S3 general purpose bucket.
|
|
11421
11421
|
|
|
11422
|
-
For more information, see `Accelerating data discovery with S3 Metadata <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html>`_ and `Setting up permissions for configuring metadata tables <https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html>`_ .
|
|
11423
|
-
|
|
11424
11422
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-metadatatableconfiguration
|
|
11425
11423
|
'''
|
|
11426
11424
|
result = self._values.get("metadata_table_configuration")
|
|
@@ -1882,7 +1882,7 @@ class CfnCluster(
|
|
|
1882
1882
|
:param current_count: The number of instances that are currently in the instance group of a SageMaker HyperPod cluster.
|
|
1883
1883
|
:param instance_storage_configs: The configurations of additional storage specified to the instance group where the instance (node) is launched.
|
|
1884
1884
|
:param on_start_deep_health_checks: A flag indicating whether deep health checks should be performed when the HyperPod cluster instance group is created or updated. Deep health checks are comprehensive, invasive tests that validate the health of the underlying hardware and infrastructure components.
|
|
1885
|
-
:param override_vpc_config:
|
|
1885
|
+
:param override_vpc_config: The customized Amazon VPC configuration at the instance group level that overrides the default Amazon VPC configuration of the SageMaker HyperPod cluster.
|
|
1886
1886
|
:param threads_per_core: The number of threads per CPU core you specified under ``CreateCluster`` .
|
|
1887
1887
|
|
|
1888
1888
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html
|
|
@@ -2038,9 +2038,7 @@ class CfnCluster(
|
|
|
2038
2038
|
def override_vpc_config(
|
|
2039
2039
|
self,
|
|
2040
2040
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCluster.VpcConfigProperty"]]:
|
|
2041
|
-
'''
|
|
2042
|
-
|
|
2043
|
-
You can control access to and from your resources by configuring a VPC.
|
|
2041
|
+
'''The customized Amazon VPC configuration at the instance group level that overrides the default Amazon VPC configuration of the SageMaker HyperPod cluster.
|
|
2044
2042
|
|
|
2045
2043
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html#cfn-sagemaker-cluster-clusterinstancegroup-overridevpcconfig
|
|
2046
2044
|
'''
|
|
@@ -917,7 +917,7 @@ class CfnListener(
|
|
|
917
917
|
def __init__(self, *, status_code: jsii.Number) -> None:
|
|
918
918
|
'''Describes an action that returns a custom HTTP response.
|
|
919
919
|
|
|
920
|
-
:param status_code: The HTTP response code.
|
|
920
|
+
:param status_code: The HTTP response code. Only ``404`` and ``500`` status codes are supported.
|
|
921
921
|
|
|
922
922
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-fixedresponse.html
|
|
923
923
|
:exampleMetadata: fixture=_generated
|
|
@@ -943,6 +943,8 @@ class CfnListener(
|
|
|
943
943
|
def status_code(self) -> jsii.Number:
|
|
944
944
|
'''The HTTP response code.
|
|
945
945
|
|
|
946
|
+
Only ``404`` and ``500`` status codes are supported.
|
|
947
|
+
|
|
946
948
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-listener-fixedresponse.html#cfn-vpclattice-listener-fixedresponse-statuscode
|
|
947
949
|
'''
|
|
948
950
|
result = self._values.get("status_code")
|
|
@@ -2871,7 +2873,7 @@ class CfnRule(
|
|
|
2871
2873
|
def __init__(self, *, status_code: jsii.Number) -> None:
|
|
2872
2874
|
'''Describes an action that returns a custom HTTP response.
|
|
2873
2875
|
|
|
2874
|
-
:param status_code: The HTTP response code.
|
|
2876
|
+
:param status_code: The HTTP response code. Only ``404`` and ``500`` status codes are supported.
|
|
2875
2877
|
|
|
2876
2878
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-fixedresponse.html
|
|
2877
2879
|
:exampleMetadata: fixture=_generated
|
|
@@ -2897,6 +2899,8 @@ class CfnRule(
|
|
|
2897
2899
|
def status_code(self) -> jsii.Number:
|
|
2898
2900
|
'''The HTTP response code.
|
|
2899
2901
|
|
|
2902
|
+
Only ``404`` and ``500`` status codes are supported.
|
|
2903
|
+
|
|
2900
2904
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-rule-fixedresponse.html#cfn-vpclattice-rule-fixedresponse-statuscode
|
|
2901
2905
|
'''
|
|
2902
2906
|
result = self._values.get("status_code")
|