aws-cdk-lib 2.192.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.192.0.jsii.tgz → aws-cdk-lib@2.194.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +3 -1
- aws_cdk/aws_appsync/__init__.py +4367 -336
- 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_codepipeline_actions/__init__.py +526 -0
- 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_eks/__init__.py +170 -2
- 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_opensearchservice/__init__.py +45 -25
- 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.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/RECORD +39 -39
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.192.0.dist-info → aws_cdk_lib-2.194.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_events/__init__.py
CHANGED
|
@@ -1041,7 +1041,13 @@ class CfnApiDestination(
|
|
|
1041
1041
|
@builtins.property
|
|
1042
1042
|
@jsii.member(jsii_name="attrArnForPolicy")
|
|
1043
1043
|
def attr_arn_for_policy(self) -> builtins.str:
|
|
1044
|
-
'''
|
|
1044
|
+
'''Returns the Amazon Resource Name (ARN) of an API destination in resource format, so it can be used in the ``Resource`` element of IAM permission policy statements.
|
|
1045
|
+
|
|
1046
|
+
For more information, see `Resource types defined by Amazon EventBridge <https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridge.html#amazoneventbridge-resources-for-iam-policies>`_ in the *Service Authorization Reference* .
|
|
1047
|
+
|
|
1048
|
+
For example, the following resource defines an IAM policy that grants permission to update a specific API destination.
|
|
1049
|
+
|
|
1050
|
+
``Resources: ExamplePolicy: Type: AWS::IAM::Policy Properties: PolicyName: ExamplePolicy PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Action: - events:UpdateApiDestination Resource: - !GetAtt myApiDestination.ArnForPolicy``
|
|
1045
1051
|
|
|
1046
1052
|
:cloudformationAttribute: ArnForPolicy
|
|
1047
1053
|
'''
|
|
@@ -1335,7 +1341,7 @@ class CfnArchive(
|
|
|
1335
1341
|
:param archive_name: The name for the archive to create.
|
|
1336
1342
|
:param description: A description for the archive.
|
|
1337
1343
|
:param event_pattern: An event pattern to use to filter events sent to the archive.
|
|
1338
|
-
:param kms_key_identifier:
|
|
1344
|
+
:param kms_key_identifier: The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this archive. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN. If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the archive. For more information, see `Identify and view keys <https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html>`_ in the *AWS Key Management Service Developer Guide* . .. epigraph:: If you have specified that EventBridge use a customer managed key for encrypting the source event bus, we strongly recommend you also specify a customer managed key for any archives for the event bus as well. For more information, see `Encrypting archives <https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html>`_ in the *Amazon EventBridge User Guide* .
|
|
1339
1345
|
:param retention_days: The number of days to retain events for. Default value is 0. If set to 0, events are retained indefinitely
|
|
1340
1346
|
'''
|
|
1341
1347
|
if __debug__:
|
|
@@ -1452,6 +1458,7 @@ class CfnArchive(
|
|
|
1452
1458
|
@builtins.property
|
|
1453
1459
|
@jsii.member(jsii_name="kmsKeyIdentifier")
|
|
1454
1460
|
def kms_key_identifier(self) -> typing.Optional[builtins.str]:
|
|
1461
|
+
'''The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this archive.'''
|
|
1455
1462
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyIdentifier"))
|
|
1456
1463
|
|
|
1457
1464
|
@kms_key_identifier.setter
|
|
@@ -1504,7 +1511,7 @@ class CfnArchiveProps:
|
|
|
1504
1511
|
:param archive_name: The name for the archive to create.
|
|
1505
1512
|
:param description: A description for the archive.
|
|
1506
1513
|
:param event_pattern: An event pattern to use to filter events sent to the archive.
|
|
1507
|
-
:param kms_key_identifier:
|
|
1514
|
+
:param kms_key_identifier: The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this archive. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN. If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the archive. For more information, see `Identify and view keys <https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html>`_ in the *AWS Key Management Service Developer Guide* . .. epigraph:: If you have specified that EventBridge use a customer managed key for encrypting the source event bus, we strongly recommend you also specify a customer managed key for any archives for the event bus as well. For more information, see `Encrypting archives <https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html>`_ in the *Amazon EventBridge User Guide* .
|
|
1508
1515
|
:param retention_days: The number of days to retain events for. Default value is 0. If set to 0, events are retained indefinitely
|
|
1509
1516
|
|
|
1510
1517
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html
|
|
@@ -1590,7 +1597,19 @@ class CfnArchiveProps:
|
|
|
1590
1597
|
|
|
1591
1598
|
@builtins.property
|
|
1592
1599
|
def kms_key_identifier(self) -> typing.Optional[builtins.str]:
|
|
1593
|
-
'''
|
|
1600
|
+
'''The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this archive.
|
|
1601
|
+
|
|
1602
|
+
The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.
|
|
1603
|
+
|
|
1604
|
+
If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the archive.
|
|
1605
|
+
|
|
1606
|
+
For more information, see `Identify and view keys <https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html>`_ in the *AWS Key Management Service Developer Guide* .
|
|
1607
|
+
.. epigraph::
|
|
1608
|
+
|
|
1609
|
+
If you have specified that EventBridge use a customer managed key for encrypting the source event bus, we strongly recommend you also specify a customer managed key for any archives for the event bus as well.
|
|
1610
|
+
|
|
1611
|
+
For more information, see `Encrypting archives <https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html>`_ in the *Amazon EventBridge User Guide* .
|
|
1612
|
+
|
|
1594
1613
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-kmskeyidentifier
|
|
1595
1614
|
'''
|
|
1596
1615
|
result = self._values.get("kms_key_identifier")
|
|
@@ -1750,7 +1769,7 @@ class CfnConnection(
|
|
|
1750
1769
|
:param auth_parameters: The authorization parameters to use to authorize with the endpoint. You must include only authorization parameters for the ``AuthorizationType`` you specify.
|
|
1751
1770
|
:param description: A description for the connection to create.
|
|
1752
1771
|
:param invocation_connectivity_parameters: For connections to private APIs, the parameters to use for invoking the API. For more information, see `Connecting to private APIs <https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html>`_ in the **Amazon EventBridge User Guide** .
|
|
1753
|
-
:param kms_key_identifier:
|
|
1772
|
+
:param kms_key_identifier: The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this connection. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN. If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the connection. For more information, see `Identify and view keys <https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html>`_ in the *AWS Key Management Service Developer Guide* .
|
|
1754
1773
|
:param name: The name for the connection to create.
|
|
1755
1774
|
'''
|
|
1756
1775
|
if __debug__:
|
|
@@ -1810,7 +1829,13 @@ class CfnConnection(
|
|
|
1810
1829
|
@builtins.property
|
|
1811
1830
|
@jsii.member(jsii_name="attrArnForPolicy")
|
|
1812
1831
|
def attr_arn_for_policy(self) -> builtins.str:
|
|
1813
|
-
'''
|
|
1832
|
+
'''Returns the Amazon Resource Name (ARN) of a connection in resource format, so it can be used in the ``Resource`` element of IAM permission policy statements.
|
|
1833
|
+
|
|
1834
|
+
For more information, see `Resource types defined by Amazon EventBridge <https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazoneventbridge.html#amazoneventbridge-resources-for-iam-policies>`_ in the *Service Authorization Reference* .
|
|
1835
|
+
|
|
1836
|
+
For example, the following resource defines an IAM policy that grants permission to update a specific connection.
|
|
1837
|
+
|
|
1838
|
+
``Resources: ExamplePolicy: Type: AWS::IAM::Policy Properties: PolicyName: ExamplePolicy PolicyDocument: Version: '2012-10-17' Statement: - Effect: Allow Action: - events:UpdateConnection Resource: - !GetAtt myConnection.ArnForPolicy``
|
|
1814
1839
|
|
|
1815
1840
|
:cloudformationAttribute: ArnForPolicy
|
|
1816
1841
|
'''
|
|
@@ -1925,6 +1950,7 @@ class CfnConnection(
|
|
|
1925
1950
|
@builtins.property
|
|
1926
1951
|
@jsii.member(jsii_name="kmsKeyIdentifier")
|
|
1927
1952
|
def kms_key_identifier(self) -> typing.Optional[builtins.str]:
|
|
1953
|
+
'''The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this connection.'''
|
|
1928
1954
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsKeyIdentifier"))
|
|
1929
1955
|
|
|
1930
1956
|
@kms_key_identifier.setter
|
|
@@ -2943,7 +2969,7 @@ class CfnConnectionProps:
|
|
|
2943
2969
|
:param auth_parameters: The authorization parameters to use to authorize with the endpoint. You must include only authorization parameters for the ``AuthorizationType`` you specify.
|
|
2944
2970
|
:param description: A description for the connection to create.
|
|
2945
2971
|
:param invocation_connectivity_parameters: For connections to private APIs, the parameters to use for invoking the API. For more information, see `Connecting to private APIs <https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html>`_ in the **Amazon EventBridge User Guide** .
|
|
2946
|
-
:param kms_key_identifier:
|
|
2972
|
+
:param kms_key_identifier: The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this connection. The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN. If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the connection. For more information, see `Identify and view keys <https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html>`_ in the *AWS Key Management Service Developer Guide* .
|
|
2947
2973
|
:param name: The name for the connection to create.
|
|
2948
2974
|
|
|
2949
2975
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html
|
|
@@ -3116,7 +3142,14 @@ class CfnConnectionProps:
|
|
|
3116
3142
|
|
|
3117
3143
|
@builtins.property
|
|
3118
3144
|
def kms_key_identifier(self) -> typing.Optional[builtins.str]:
|
|
3119
|
-
'''
|
|
3145
|
+
'''The identifier of the AWS KMS customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt this connection.
|
|
3146
|
+
|
|
3147
|
+
The identifier can be the key Amazon Resource Name (ARN), KeyId, key alias, or key alias ARN.
|
|
3148
|
+
|
|
3149
|
+
If you do not specify a customer managed key identifier, EventBridge uses an AWS owned key to encrypt the connection.
|
|
3150
|
+
|
|
3151
|
+
For more information, see `Identify and view keys <https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html>`_ in the *AWS Key Management Service Developer Guide* .
|
|
3152
|
+
|
|
3120
3153
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-connection.html#cfn-events-connection-kmskeyidentifier
|
|
3121
3154
|
'''
|
|
3122
3155
|
result = self._values.get("kms_key_identifier")
|
aws_cdk/aws_lambda/__init__.py
CHANGED
|
@@ -7634,7 +7634,7 @@ class CfnFunction(
|
|
|
7634
7634
|
)
|
|
7635
7635
|
class DeadLetterConfigProperty:
|
|
7636
7636
|
def __init__(self, *, target_arn: typing.Optional[builtins.str] = None) -> None:
|
|
7637
|
-
'''The `dead-letter queue <https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq>`_ for failed asynchronous invocations.
|
|
7637
|
+
'''The `dead-letter queue <https://docs.aws.amazon.com/lambda/latest/dg/invocation-async-retain-records.html#invocation-dlq>`_ for failed asynchronous invocations.
|
|
7638
7638
|
|
|
7639
7639
|
:param target_arn: The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
|
|
7640
7640
|
|
|
@@ -1279,7 +1279,8 @@ class CfnOriginEndpoint(
|
|
|
1279
1279
|
# the properties below are optional
|
|
1280
1280
|
precise=False
|
|
1281
1281
|
),
|
|
1282
|
-
url="url"
|
|
1282
|
+
url="url",
|
|
1283
|
+
url_encode_child_manifest=False
|
|
1283
1284
|
)],
|
|
1284
1285
|
low_latency_hls_manifests=[mediapackagev2.CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty(
|
|
1285
1286
|
manifest_name="manifestName",
|
|
@@ -1304,7 +1305,8 @@ class CfnOriginEndpoint(
|
|
|
1304
1305
|
# the properties below are optional
|
|
1305
1306
|
precise=False
|
|
1306
1307
|
),
|
|
1307
|
-
url="url"
|
|
1308
|
+
url="url",
|
|
1309
|
+
url_encode_child_manifest=False
|
|
1308
1310
|
)],
|
|
1309
1311
|
segment=mediapackagev2.CfnOriginEndpoint.SegmentProperty(
|
|
1310
1312
|
encryption=mediapackagev2.CfnOriginEndpoint.EncryptionProperty(
|
|
@@ -2474,6 +2476,7 @@ class CfnOriginEndpoint(
|
|
|
2474
2476
|
"scte_hls": "scteHls",
|
|
2475
2477
|
"start_tag": "startTag",
|
|
2476
2478
|
"url": "url",
|
|
2479
|
+
"url_encode_child_manifest": "urlEncodeChildManifest",
|
|
2477
2480
|
},
|
|
2478
2481
|
)
|
|
2479
2482
|
class HlsManifestConfigurationProperty:
|
|
@@ -2488,6 +2491,7 @@ class CfnOriginEndpoint(
|
|
|
2488
2491
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteHlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2489
2492
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.StartTagProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2490
2493
|
url: typing.Optional[builtins.str] = None,
|
|
2494
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2491
2495
|
) -> None:
|
|
2492
2496
|
'''The HLS manfiest configuration associated with the origin endpoint.
|
|
2493
2497
|
|
|
@@ -2499,6 +2503,7 @@ class CfnOriginEndpoint(
|
|
|
2499
2503
|
:param scte_hls: THE SCTE-35 HLS configuration associated with the HLS manifest configuration.
|
|
2500
2504
|
:param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
|
|
2501
2505
|
:param url: The URL of the HLS manifest configuration.
|
|
2506
|
+
:param url_encode_child_manifest: For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2502
2507
|
|
|
2503
2508
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html
|
|
2504
2509
|
:exampleMetadata: fixture=_generated
|
|
@@ -2532,7 +2537,8 @@ class CfnOriginEndpoint(
|
|
|
2532
2537
|
# the properties below are optional
|
|
2533
2538
|
precise=False
|
|
2534
2539
|
),
|
|
2535
|
-
url="url"
|
|
2540
|
+
url="url",
|
|
2541
|
+
url_encode_child_manifest=False
|
|
2536
2542
|
)
|
|
2537
2543
|
'''
|
|
2538
2544
|
if __debug__:
|
|
@@ -2545,6 +2551,7 @@ class CfnOriginEndpoint(
|
|
|
2545
2551
|
check_type(argname="argument scte_hls", value=scte_hls, expected_type=type_hints["scte_hls"])
|
|
2546
2552
|
check_type(argname="argument start_tag", value=start_tag, expected_type=type_hints["start_tag"])
|
|
2547
2553
|
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
2554
|
+
check_type(argname="argument url_encode_child_manifest", value=url_encode_child_manifest, expected_type=type_hints["url_encode_child_manifest"])
|
|
2548
2555
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2549
2556
|
"manifest_name": manifest_name,
|
|
2550
2557
|
}
|
|
@@ -2562,6 +2569,8 @@ class CfnOriginEndpoint(
|
|
|
2562
2569
|
self._values["start_tag"] = start_tag
|
|
2563
2570
|
if url is not None:
|
|
2564
2571
|
self._values["url"] = url
|
|
2572
|
+
if url_encode_child_manifest is not None:
|
|
2573
|
+
self._values["url_encode_child_manifest"] = url_encode_child_manifest
|
|
2565
2574
|
|
|
2566
2575
|
@builtins.property
|
|
2567
2576
|
def manifest_name(self) -> builtins.str:
|
|
@@ -2643,6 +2652,18 @@ class CfnOriginEndpoint(
|
|
|
2643
2652
|
result = self._values.get("url")
|
|
2644
2653
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2645
2654
|
|
|
2655
|
+
@builtins.property
|
|
2656
|
+
def url_encode_child_manifest(
|
|
2657
|
+
self,
|
|
2658
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2659
|
+
'''
|
|
2660
|
+
For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2661
|
+
|
|
2662
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-urlencodechildmanifest
|
|
2663
|
+
'''
|
|
2664
|
+
result = self._values.get("url_encode_child_manifest")
|
|
2665
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2666
|
+
|
|
2646
2667
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2647
2668
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2648
2669
|
|
|
@@ -2666,6 +2687,7 @@ class CfnOriginEndpoint(
|
|
|
2666
2687
|
"scte_hls": "scteHls",
|
|
2667
2688
|
"start_tag": "startTag",
|
|
2668
2689
|
"url": "url",
|
|
2690
|
+
"url_encode_child_manifest": "urlEncodeChildManifest",
|
|
2669
2691
|
},
|
|
2670
2692
|
)
|
|
2671
2693
|
class LowLatencyHlsManifestConfigurationProperty:
|
|
@@ -2680,6 +2702,7 @@ class CfnOriginEndpoint(
|
|
|
2680
2702
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.ScteHlsProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2681
2703
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnOriginEndpoint.StartTagProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
2682
2704
|
url: typing.Optional[builtins.str] = None,
|
|
2705
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
2683
2706
|
) -> None:
|
|
2684
2707
|
'''Specify a low-latency HTTP live streaming (LL-HLS) manifest configuration.
|
|
2685
2708
|
|
|
@@ -2691,6 +2714,7 @@ class CfnOriginEndpoint(
|
|
|
2691
2714
|
:param scte_hls: The SCTE-35 HLS configuration associated with the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
|
|
2692
2715
|
:param start_tag: When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
|
|
2693
2716
|
:param url: The URL of the low-latency HLS (LL-HLS) manifest configuration of the origin endpoint.
|
|
2717
|
+
:param url_encode_child_manifest: For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2694
2718
|
|
|
2695
2719
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html
|
|
2696
2720
|
:exampleMetadata: fixture=_generated
|
|
@@ -2724,7 +2748,8 @@ class CfnOriginEndpoint(
|
|
|
2724
2748
|
# the properties below are optional
|
|
2725
2749
|
precise=False
|
|
2726
2750
|
),
|
|
2727
|
-
url="url"
|
|
2751
|
+
url="url",
|
|
2752
|
+
url_encode_child_manifest=False
|
|
2728
2753
|
)
|
|
2729
2754
|
'''
|
|
2730
2755
|
if __debug__:
|
|
@@ -2737,6 +2762,7 @@ class CfnOriginEndpoint(
|
|
|
2737
2762
|
check_type(argname="argument scte_hls", value=scte_hls, expected_type=type_hints["scte_hls"])
|
|
2738
2763
|
check_type(argname="argument start_tag", value=start_tag, expected_type=type_hints["start_tag"])
|
|
2739
2764
|
check_type(argname="argument url", value=url, expected_type=type_hints["url"])
|
|
2765
|
+
check_type(argname="argument url_encode_child_manifest", value=url_encode_child_manifest, expected_type=type_hints["url_encode_child_manifest"])
|
|
2740
2766
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
2741
2767
|
"manifest_name": manifest_name,
|
|
2742
2768
|
}
|
|
@@ -2754,6 +2780,8 @@ class CfnOriginEndpoint(
|
|
|
2754
2780
|
self._values["start_tag"] = start_tag
|
|
2755
2781
|
if url is not None:
|
|
2756
2782
|
self._values["url"] = url
|
|
2783
|
+
if url_encode_child_manifest is not None:
|
|
2784
|
+
self._values["url_encode_child_manifest"] = url_encode_child_manifest
|
|
2757
2785
|
|
|
2758
2786
|
@builtins.property
|
|
2759
2787
|
def manifest_name(self) -> builtins.str:
|
|
@@ -2841,6 +2869,18 @@ class CfnOriginEndpoint(
|
|
|
2841
2869
|
result = self._values.get("url")
|
|
2842
2870
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2843
2871
|
|
|
2872
|
+
@builtins.property
|
|
2873
|
+
def url_encode_child_manifest(
|
|
2874
|
+
self,
|
|
2875
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2876
|
+
'''
|
|
2877
|
+
For more information, see Amazon Web Services Signature Version 4 for API requests in Identity and Access Management User Guide.
|
|
2878
|
+
|
|
2879
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-urlencodechildmanifest
|
|
2880
|
+
'''
|
|
2881
|
+
result = self._values.get("url_encode_child_manifest")
|
|
2882
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
2883
|
+
|
|
2844
2884
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
2845
2885
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
2846
2886
|
|
|
@@ -3800,7 +3840,8 @@ class CfnOriginEndpointProps:
|
|
|
3800
3840
|
# the properties below are optional
|
|
3801
3841
|
precise=False
|
|
3802
3842
|
),
|
|
3803
|
-
url="url"
|
|
3843
|
+
url="url",
|
|
3844
|
+
url_encode_child_manifest=False
|
|
3804
3845
|
)],
|
|
3805
3846
|
low_latency_hls_manifests=[mediapackagev2.CfnOriginEndpoint.LowLatencyHlsManifestConfigurationProperty(
|
|
3806
3847
|
manifest_name="manifestName",
|
|
@@ -3825,7 +3866,8 @@ class CfnOriginEndpointProps:
|
|
|
3825
3866
|
# the properties below are optional
|
|
3826
3867
|
precise=False
|
|
3827
3868
|
),
|
|
3828
|
-
url="url"
|
|
3869
|
+
url="url",
|
|
3870
|
+
url_encode_child_manifest=False
|
|
3829
3871
|
)],
|
|
3830
3872
|
segment=mediapackagev2.CfnOriginEndpoint.SegmentProperty(
|
|
3831
3873
|
encryption=mediapackagev2.CfnOriginEndpoint.EncryptionProperty(
|
|
@@ -4439,6 +4481,7 @@ def _typecheckingstub__b59520e6fbce62f410265deeb9cc043e1cf408c2c3cc498907eb73fcc
|
|
|
4439
4481
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteHlsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4440
4482
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.StartTagProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4441
4483
|
url: typing.Optional[builtins.str] = None,
|
|
4484
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4442
4485
|
) -> None:
|
|
4443
4486
|
"""Type checking stubs"""
|
|
4444
4487
|
pass
|
|
@@ -4453,6 +4496,7 @@ def _typecheckingstub__7ba3db62514b88b8da1b21ec0b9459116f857508c0670adb698a120b3
|
|
|
4453
4496
|
scte_hls: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.ScteHlsProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4454
4497
|
start_tag: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnOriginEndpoint.StartTagProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
4455
4498
|
url: typing.Optional[builtins.str] = None,
|
|
4499
|
+
url_encode_child_manifest: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
4456
4500
|
) -> None:
|
|
4457
4501
|
"""Type checking stubs"""
|
|
4458
4502
|
pass
|
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
|
'''
|
|
@@ -806,14 +806,22 @@ class CapacityConfig:
|
|
|
806
806
|
|
|
807
807
|
Example::
|
|
808
808
|
|
|
809
|
+
import aws_cdk.aws_opensearchservice as opensearch
|
|
810
|
+
|
|
811
|
+
|
|
809
812
|
domain = Domain(self, "Domain",
|
|
810
|
-
version=EngineVersion.
|
|
811
|
-
capacity=CapacityConfig(
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
813
|
+
version=EngineVersion.OPENSEARCH_1_3,
|
|
814
|
+
capacity=opensearch.CapacityConfig(
|
|
815
|
+
node_options=[opensearch.NodeOptions(
|
|
816
|
+
node_type=opensearch.NodeType.COORDINATOR,
|
|
817
|
+
node_config=opensearch.NodeConfig(
|
|
818
|
+
enabled=True,
|
|
819
|
+
count=2,
|
|
820
|
+
type="m5.large.search"
|
|
821
|
+
)
|
|
822
|
+
)
|
|
823
|
+
]
|
|
824
|
+
)
|
|
817
825
|
)
|
|
818
826
|
'''
|
|
819
827
|
if __debug__:
|
|
@@ -6269,14 +6277,19 @@ class EbsOptions:
|
|
|
6269
6277
|
Example::
|
|
6270
6278
|
|
|
6271
6279
|
domain = Domain(self, "Domain",
|
|
6272
|
-
version=EngineVersion.
|
|
6280
|
+
version=EngineVersion.OPENSEARCH_1_3,
|
|
6273
6281
|
ebs=EbsOptions(
|
|
6274
|
-
volume_size=
|
|
6275
|
-
volume_type=ec2.EbsDeviceVolumeType.
|
|
6282
|
+
volume_size=10,
|
|
6283
|
+
volume_type=ec2.EbsDeviceVolumeType.GENERAL_PURPOSE_SSD_GP3
|
|
6276
6284
|
),
|
|
6277
|
-
|
|
6278
|
-
|
|
6279
|
-
|
|
6285
|
+
zone_awareness=ZoneAwarenessConfig(
|
|
6286
|
+
enabled=True,
|
|
6287
|
+
availability_zone_count=3
|
|
6288
|
+
),
|
|
6289
|
+
capacity=CapacityConfig(
|
|
6290
|
+
multi_az_with_standby_enabled=True,
|
|
6291
|
+
master_nodes=3,
|
|
6292
|
+
data_nodes=3
|
|
6280
6293
|
)
|
|
6281
6294
|
)
|
|
6282
6295
|
'''
|
|
@@ -6391,22 +6404,29 @@ class EncryptionAtRestOptions:
|
|
|
6391
6404
|
|
|
6392
6405
|
Example::
|
|
6393
6406
|
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
6407
|
+
import aws_cdk.aws_opensearchservice as opensearch
|
|
6408
|
+
|
|
6409
|
+
|
|
6410
|
+
domain = opensearch.Domain(self, "Domain",
|
|
6411
|
+
version=opensearch.EngineVersion.OPENSEARCH_2_17,
|
|
6412
|
+
encryption_at_rest=opensearch.EncryptionAtRestOptions(
|
|
6399
6413
|
enabled=True
|
|
6400
6414
|
),
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6404
|
-
|
|
6405
|
-
|
|
6406
|
-
|
|
6407
|
-
|
|
6415
|
+
node_to_node_encryption=True,
|
|
6416
|
+
enforce_https=True,
|
|
6417
|
+
capacity=opensearch.CapacityConfig(
|
|
6418
|
+
multi_az_with_standby_enabled=False
|
|
6419
|
+
),
|
|
6420
|
+
ebs=opensearch.EbsOptions(
|
|
6421
|
+
enabled=True,
|
|
6422
|
+
volume_size=10
|
|
6408
6423
|
)
|
|
6409
6424
|
)
|
|
6425
|
+
api = appsync.EventApi(self, "EventApiOpenSearch",
|
|
6426
|
+
api_name="OpenSearchEventApi"
|
|
6427
|
+
)
|
|
6428
|
+
|
|
6429
|
+
data_source = api.add_open_search_data_source("opensearchds", domain)
|
|
6410
6430
|
'''
|
|
6411
6431
|
if __debug__:
|
|
6412
6432
|
type_hints = typing.get_type_hints(_typecheckingstub__b5973f04ac98b9a2d9bddce35a01a16416d58b7f8a10bd553cfabe3909eb2523)
|
|
@@ -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
|
|