aws-cdk-lib 2.128.0__py3-none-any.whl → 2.129.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aws-cdk-lib might be problematic. Click here for more details.
- aws_cdk/__init__.py +2 -10
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.128.0.jsii.tgz → aws-cdk-lib@2.129.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +6 -24
- aws_cdk/aws_amplify/__init__.py +1 -2
- aws_cdk/aws_appconfig/__init__.py +0 -16
- aws_cdk/aws_applicationautoscaling/__init__.py +55 -22
- aws_cdk/aws_appstream/__init__.py +14 -14
- aws_cdk/aws_appsync/__init__.py +334 -3
- aws_cdk/aws_autoscaling/__init__.py +11 -7
- aws_cdk/aws_batch/__init__.py +137 -16
- aws_cdk/aws_cleanrooms/__init__.py +1 -2
- aws_cdk/aws_cloudformation/__init__.py +2 -10
- aws_cdk/aws_cloudfront/__init__.py +15 -8
- aws_cdk/aws_cloudfront/experimental/__init__.py +22 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +332 -0
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +4 -0
- aws_cdk/aws_codepipeline/__init__.py +463 -11
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_config/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +6 -1
- aws_cdk/aws_controltower/__init__.py +527 -7
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_directoryservice/__init__.py +2 -3
- aws_cdk/aws_dynamodb/__init__.py +7 -0
- aws_cdk/aws_ec2/__init__.py +117 -210
- aws_cdk/aws_ecs/__init__.py +537 -3
- aws_cdk/aws_eks/__init__.py +1 -1
- aws_cdk/aws_elasticache/__init__.py +27 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +3 -4
- aws_cdk/aws_emr/__init__.py +23 -3
- aws_cdk/aws_events_targets/__init__.py +64 -20
- aws_cdk/aws_fis/__init__.py +4 -4
- aws_cdk/aws_frauddetector/__init__.py +3 -3
- aws_cdk/aws_globalaccelerator/__init__.py +2 -6
- aws_cdk/aws_glue/__init__.py +84 -55
- aws_cdk/aws_groundstation/__init__.py +8 -12
- aws_cdk/aws_guardduty/__init__.py +74 -70
- aws_cdk/aws_iam/__init__.py +16 -23
- aws_cdk/aws_imagebuilder/__init__.py +178 -156
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +17 -10
- aws_cdk/aws_iotevents/__init__.py +4 -4
- aws_cdk/aws_iotfleetwise/__init__.py +10 -5
- aws_cdk/aws_iottwinmaker/__init__.py +3 -5
- aws_cdk/aws_iotwireless/__init__.py +35 -23
- aws_cdk/aws_kendra/__init__.py +36 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +155 -114
- aws_cdk/aws_lambda/__init__.py +157 -12
- aws_cdk/aws_lambda_nodejs/__init__.py +22 -0
- aws_cdk/aws_lightsail/__init__.py +14 -18
- aws_cdk/aws_logs/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +5 -3
- aws_cdk/aws_medialive/__init__.py +3 -12
- aws_cdk/aws_mediapackagev2/__init__.py +287 -286
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +6 -3
- aws_cdk/aws_mwaa/__init__.py +10 -5
- aws_cdk/aws_neptunegraph/__init__.py +84 -66
- aws_cdk/aws_networkfirewall/__init__.py +5 -8
- aws_cdk/aws_networkmanager/__init__.py +3 -3
- aws_cdk/aws_nimblestudio/__init__.py +2 -4
- aws_cdk/aws_opensearchservice/__init__.py +6 -7
- aws_cdk/aws_osis/__init__.py +1 -3
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +5 -5
- aws_cdk/aws_quicksight/__init__.py +5 -10
- aws_cdk/aws_rds/__init__.py +38 -21
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_redshiftserverless/__init__.py +62 -38
- aws_cdk/aws_rolesanywhere/__init__.py +41 -53
- aws_cdk/aws_route53/__init__.py +532 -6
- aws_cdk/aws_route53recoverycontrol/__init__.py +1 -3
- aws_cdk/aws_route53recoveryreadiness/__init__.py +2 -2
- aws_cdk/aws_route53resolver/__init__.py +1 -4
- aws_cdk/aws_s3/__init__.py +3 -1
- aws_cdk/aws_s3objectlambda/__init__.py +7 -4
- aws_cdk/aws_s3outposts/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +111 -11
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_sns/__init__.py +185 -38
- aws_cdk/aws_ssm/__init__.py +16 -16
- aws_cdk/aws_ssmincidents/__init__.py +1 -1
- aws_cdk/aws_synthetics/__init__.py +94 -21
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -2
- aws_cdk/aws_vpclattice/__init__.py +8 -4
- aws_cdk/aws_wafv2/__init__.py +14 -59
- aws_cdk/aws_workspaces/__init__.py +5 -4
- aws_cdk/aws_workspacesweb/__init__.py +6 -12
- aws_cdk/triggers/__init__.py +22 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/RECORD +98 -98
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/top_level.txt +0 -0
|
@@ -537,7 +537,7 @@ class CfnMonitor(
|
|
|
537
537
|
) -> None:
|
|
538
538
|
'''Publish internet measurements to an Amazon S3 bucket in addition to CloudWatch Logs.
|
|
539
539
|
|
|
540
|
-
:param s3_config: The configuration
|
|
540
|
+
:param s3_config: The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
541
541
|
|
|
542
542
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-internetmeasurementslogdelivery.html
|
|
543
543
|
:exampleMetadata: fixture=_generated
|
|
@@ -567,9 +567,7 @@ class CfnMonitor(
|
|
|
567
567
|
def s3_config(
|
|
568
568
|
self,
|
|
569
569
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnMonitor.S3ConfigProperty"]]:
|
|
570
|
-
'''The configuration
|
|
571
|
-
|
|
572
|
-
The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` or ``DISABLED`` , depending on whether you choose to deliver internet measurements to S3 logs.
|
|
570
|
+
'''The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
573
571
|
|
|
574
572
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-internetmeasurementslogdelivery.html#cfn-internetmonitor-monitor-internetmeasurementslogdelivery-s3config
|
|
575
573
|
'''
|
|
@@ -705,11 +703,13 @@ class CfnMonitor(
|
|
|
705
703
|
) -> None:
|
|
706
704
|
'''The configuration for publishing Amazon CloudWatch Internet Monitor internet measurements to Amazon S3.
|
|
707
705
|
|
|
708
|
-
The configuration includes the bucket name and (optionally) prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED``
|
|
706
|
+
The configuration includes the bucket name and (optionally) bucket prefix for the S3 bucket to store the measurements, and the delivery status. The delivery status is ``ENABLED`` if you choose to deliver internet measurements to S3 logs, and ``DISABLED`` otherwise.
|
|
709
707
|
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
:param
|
|
708
|
+
The measurements are also published to Amazon CloudWatch Logs.
|
|
709
|
+
|
|
710
|
+
:param bucket_name: The Amazon S3 bucket name for internet measurements publishing.
|
|
711
|
+
:param bucket_prefix: An optional Amazon S3 bucket prefix for internet measurements publishing.
|
|
712
|
+
:param log_delivery_status: The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket. The delivery status is ``ENABLED`` if you choose to deliver internet measurements to an S3 bucket, and ``DISABLED`` otherwise.
|
|
713
713
|
|
|
714
714
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html
|
|
715
715
|
:exampleMetadata: fixture=_generated
|
|
@@ -741,7 +741,7 @@ class CfnMonitor(
|
|
|
741
741
|
|
|
742
742
|
@builtins.property
|
|
743
743
|
def bucket_name(self) -> typing.Optional[builtins.str]:
|
|
744
|
-
'''The Amazon S3 bucket name.
|
|
744
|
+
'''The Amazon S3 bucket name for internet measurements publishing.
|
|
745
745
|
|
|
746
746
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-bucketname
|
|
747
747
|
'''
|
|
@@ -750,7 +750,7 @@ class CfnMonitor(
|
|
|
750
750
|
|
|
751
751
|
@builtins.property
|
|
752
752
|
def bucket_prefix(self) -> typing.Optional[builtins.str]:
|
|
753
|
-
'''
|
|
753
|
+
'''An optional Amazon S3 bucket prefix for internet measurements publishing.
|
|
754
754
|
|
|
755
755
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-bucketprefix
|
|
756
756
|
'''
|
|
@@ -761,6 +761,8 @@ class CfnMonitor(
|
|
|
761
761
|
def log_delivery_status(self) -> typing.Optional[builtins.str]:
|
|
762
762
|
'''The status of publishing Internet Monitor internet measurements to an Amazon S3 bucket.
|
|
763
763
|
|
|
764
|
+
The delivery status is ``ENABLED`` if you choose to deliver internet measurements to an S3 bucket, and ``DISABLED`` otherwise.
|
|
765
|
+
|
|
764
766
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-internetmonitor-monitor-s3config.html#cfn-internetmonitor-monitor-s3config-logdeliverystatus
|
|
765
767
|
'''
|
|
766
768
|
result = self._values.get("log_delivery_status")
|
aws_cdk/aws_iot/__init__.py
CHANGED
|
@@ -3584,7 +3584,7 @@ class CfnDomainConfiguration(
|
|
|
3584
3584
|
:param domain_configuration_status: The status to which the domain configuration should be updated. Valid values: ``ENABLED`` | ``DISABLED``
|
|
3585
3585
|
:param domain_name: The name of the domain.
|
|
3586
3586
|
:param server_certificate_arns: The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for AWS -managed domains.
|
|
3587
|
-
:param server_certificate_config:
|
|
3587
|
+
:param server_certificate_config: The server certificate configuration. For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
3588
3588
|
:param service_type: The type of service delivered by the endpoint. .. epigraph:: AWS IoT Core currently supports only the ``DATA`` service type.
|
|
3589
3589
|
:param tags: Metadata which can be used to manage the domain configuration. .. epigraph:: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
|
|
3590
3590
|
:param tls_config: An object that specifies the TLS configuration for a domain.
|
|
@@ -3660,10 +3660,7 @@ class CfnDomainConfiguration(
|
|
|
3660
3660
|
@builtins.property
|
|
3661
3661
|
@jsii.member(jsii_name="attrServerCertificates")
|
|
3662
3662
|
def attr_server_certificates(self) -> _IResolvable_da3f097b:
|
|
3663
|
-
'''
|
|
3664
|
-
|
|
3665
|
-
Currently you can specify only one certificate ARN. This value is not required for AWS -managed domains.
|
|
3666
|
-
|
|
3663
|
+
'''
|
|
3667
3664
|
:cloudformationAttribute: ServerCertificates
|
|
3668
3665
|
'''
|
|
3669
3666
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrServerCertificates"))
|
|
@@ -3757,6 +3754,7 @@ class CfnDomainConfiguration(
|
|
|
3757
3754
|
def server_certificate_config(
|
|
3758
3755
|
self,
|
|
3759
3756
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomainConfiguration.ServerCertificateConfigProperty"]]:
|
|
3757
|
+
'''The server certificate configuration.'''
|
|
3760
3758
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDomainConfiguration.ServerCertificateConfigProperty"]], jsii.get(self, "serverCertificateConfig"))
|
|
3761
3759
|
|
|
3762
3760
|
@server_certificate_config.setter
|
|
@@ -3912,8 +3910,11 @@ class CfnDomainConfiguration(
|
|
|
3912
3910
|
*,
|
|
3913
3911
|
enable_ocsp_check: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
3914
3912
|
) -> None:
|
|
3915
|
-
'''
|
|
3916
|
-
|
|
3913
|
+
'''The server certificate configuration.
|
|
3914
|
+
|
|
3915
|
+
For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
3916
|
+
|
|
3917
|
+
:param enable_ocsp_check: A Boolean value that indicates whether Online Certificate Status Protocol (OCSP) server certificate check is enabled or not. For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
3917
3918
|
|
|
3918
3919
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html
|
|
3919
3920
|
:exampleMetadata: fixture=_generated
|
|
@@ -3939,7 +3940,10 @@ class CfnDomainConfiguration(
|
|
|
3939
3940
|
def enable_ocsp_check(
|
|
3940
3941
|
self,
|
|
3941
3942
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
3942
|
-
'''
|
|
3943
|
+
'''A Boolean value that indicates whether Online Certificate Status Protocol (OCSP) server certificate check is enabled or not.
|
|
3944
|
+
|
|
3945
|
+
For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
3946
|
+
|
|
3943
3947
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html#cfn-iot-domainconfiguration-servercertificateconfig-enableocspcheck
|
|
3944
3948
|
'''
|
|
3945
3949
|
result = self._values.get("enable_ocsp_check")
|
|
@@ -4141,7 +4145,7 @@ class CfnDomainConfigurationProps:
|
|
|
4141
4145
|
:param domain_configuration_status: The status to which the domain configuration should be updated. Valid values: ``ENABLED`` | ``DISABLED``
|
|
4142
4146
|
:param domain_name: The name of the domain.
|
|
4143
4147
|
:param server_certificate_arns: The ARNs of the certificates that AWS IoT passes to the device during the TLS handshake. Currently you can specify only one certificate ARN. This value is not required for AWS -managed domains.
|
|
4144
|
-
:param server_certificate_config:
|
|
4148
|
+
:param server_certificate_config: The server certificate configuration. For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
4145
4149
|
:param service_type: The type of service delivered by the endpoint. .. epigraph:: AWS IoT Core currently supports only the ``DATA`` service type.
|
|
4146
4150
|
:param tags: Metadata which can be used to manage the domain configuration. .. epigraph:: For URI Request parameters use format: ...key1=value1&key2=value2... For the CLI command-line parameter use format: &&tags "key1=value1&key2=value2..." For the cli-input-json file use format: "tags": "key1=value1&key2=value2..."
|
|
4147
4151
|
:param tls_config: An object that specifies the TLS configuration for a domain.
|
|
@@ -4270,7 +4274,10 @@ class CfnDomainConfigurationProps:
|
|
|
4270
4274
|
def server_certificate_config(
|
|
4271
4275
|
self,
|
|
4272
4276
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnDomainConfiguration.ServerCertificateConfigProperty]]:
|
|
4273
|
-
'''
|
|
4277
|
+
'''The server certificate configuration.
|
|
4278
|
+
|
|
4279
|
+
For more information, see `Configurable endpoints <https://docs.aws.amazon.com//iot/latest/developerguide/iot-custom-endpoints-configurable.html>`_ from the AWS IoT Core Developer Guide.
|
|
4280
|
+
|
|
4274
4281
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html#cfn-iot-domainconfiguration-servercertificateconfig
|
|
4275
4282
|
'''
|
|
4276
4283
|
result = self._values.get("server_certificate_config")
|
|
@@ -1882,7 +1882,7 @@ class CfnAlarmModel(
|
|
|
1882
1882
|
'''Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
|
|
1883
1883
|
|
|
1884
1884
|
:param delivery_stream_name: The name of the Kinesis Data Firehose delivery stream where the data is written.
|
|
1885
|
-
:param payload: You can configure the action payload when you send a message to an Amazon
|
|
1885
|
+
:param payload: You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.
|
|
1886
1886
|
:param separator: A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: '\\n' (newline), '\\t' (tab), '\\r\\n' (Windows newline), ',' (comma).
|
|
1887
1887
|
|
|
1888
1888
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-alarmmodel-firehose.html
|
|
@@ -1932,7 +1932,7 @@ class CfnAlarmModel(
|
|
|
1932
1932
|
def payload(
|
|
1933
1933
|
self,
|
|
1934
1934
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnAlarmModel.PayloadProperty"]]:
|
|
1935
|
-
'''You can configure the action payload when you send a message to an Amazon
|
|
1935
|
+
'''You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.
|
|
1936
1936
|
|
|
1937
1937
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-alarmmodel-firehose.html#cfn-iotevents-alarmmodel-firehose-payload
|
|
1938
1938
|
'''
|
|
@@ -4749,7 +4749,7 @@ class CfnDetectorModel(
|
|
|
4749
4749
|
'''Sends information about the detector model instance and the event that triggered the action to an Amazon Kinesis Data Firehose delivery stream.
|
|
4750
4750
|
|
|
4751
4751
|
:param delivery_stream_name: The name of the Kinesis Data Firehose delivery stream where the data is written.
|
|
4752
|
-
:param payload: You can configure the action payload when you send a message to an Amazon
|
|
4752
|
+
:param payload: You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.
|
|
4753
4753
|
:param separator: A character separator that is used to separate records written to the Kinesis Data Firehose delivery stream. Valid values are: '\\n' (newline), '\\t' (tab), '\\r\\n' (Windows newline), ',' (comma).
|
|
4754
4754
|
|
|
4755
4755
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-firehose.html
|
|
@@ -4799,7 +4799,7 @@ class CfnDetectorModel(
|
|
|
4799
4799
|
def payload(
|
|
4800
4800
|
self,
|
|
4801
4801
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDetectorModel.PayloadProperty"]]:
|
|
4802
|
-
'''You can configure the action payload when you send a message to an Amazon
|
|
4802
|
+
'''You can configure the action payload when you send a message to an Amazon Data Firehose delivery stream.
|
|
4803
4803
|
|
|
4804
4804
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-firehose.html#cfn-iotevents-detectormodel-firehose-payload
|
|
4805
4805
|
'''
|
|
@@ -4271,7 +4271,8 @@ class CfnSignalCatalog(
|
|
|
4271
4271
|
@builtins.property
|
|
4272
4272
|
@jsii.member(jsii_name="attrNodeCountsTotalActuators")
|
|
4273
4273
|
def attr_node_counts_total_actuators(self) -> _IResolvable_da3f097b:
|
|
4274
|
-
'''
|
|
4274
|
+
'''The total number of nodes in a vehicle network that represent actuators.
|
|
4275
|
+
|
|
4275
4276
|
:cloudformationAttribute: NodeCounts.TotalActuators
|
|
4276
4277
|
'''
|
|
4277
4278
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrNodeCountsTotalActuators"))
|
|
@@ -4279,7 +4280,8 @@ class CfnSignalCatalog(
|
|
|
4279
4280
|
@builtins.property
|
|
4280
4281
|
@jsii.member(jsii_name="attrNodeCountsTotalAttributes")
|
|
4281
4282
|
def attr_node_counts_total_attributes(self) -> _IResolvable_da3f097b:
|
|
4282
|
-
'''
|
|
4283
|
+
'''The total number of nodes in a vehicle network that represent attributes.
|
|
4284
|
+
|
|
4283
4285
|
:cloudformationAttribute: NodeCounts.TotalAttributes
|
|
4284
4286
|
'''
|
|
4285
4287
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrNodeCountsTotalAttributes"))
|
|
@@ -4287,7 +4289,8 @@ class CfnSignalCatalog(
|
|
|
4287
4289
|
@builtins.property
|
|
4288
4290
|
@jsii.member(jsii_name="attrNodeCountsTotalBranches")
|
|
4289
4291
|
def attr_node_counts_total_branches(self) -> _IResolvable_da3f097b:
|
|
4290
|
-
'''
|
|
4292
|
+
'''The total number of nodes in a vehicle network that represent branches.
|
|
4293
|
+
|
|
4291
4294
|
:cloudformationAttribute: NodeCounts.TotalBranches
|
|
4292
4295
|
'''
|
|
4293
4296
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrNodeCountsTotalBranches"))
|
|
@@ -4295,7 +4298,8 @@ class CfnSignalCatalog(
|
|
|
4295
4298
|
@builtins.property
|
|
4296
4299
|
@jsii.member(jsii_name="attrNodeCountsTotalNodes")
|
|
4297
4300
|
def attr_node_counts_total_nodes(self) -> _IResolvable_da3f097b:
|
|
4298
|
-
'''
|
|
4301
|
+
'''The total number of nodes in a vehicle network.
|
|
4302
|
+
|
|
4299
4303
|
:cloudformationAttribute: NodeCounts.TotalNodes
|
|
4300
4304
|
'''
|
|
4301
4305
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrNodeCountsTotalNodes"))
|
|
@@ -4303,7 +4307,8 @@ class CfnSignalCatalog(
|
|
|
4303
4307
|
@builtins.property
|
|
4304
4308
|
@jsii.member(jsii_name="attrNodeCountsTotalSensors")
|
|
4305
4309
|
def attr_node_counts_total_sensors(self) -> _IResolvable_da3f097b:
|
|
4306
|
-
'''
|
|
4310
|
+
'''The total number of nodes in a vehicle network that represent sensors.
|
|
4311
|
+
|
|
4307
4312
|
:cloudformationAttribute: NodeCounts.TotalSensors
|
|
4308
4313
|
'''
|
|
4309
4314
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrNodeCountsTotalSensors"))
|
|
@@ -275,8 +275,7 @@ class CfnComponentType(
|
|
|
275
275
|
@builtins.property
|
|
276
276
|
@jsii.member(jsii_name="attrStatus")
|
|
277
277
|
def attr_status(self) -> _IResolvable_da3f097b:
|
|
278
|
-
'''
|
|
279
|
-
|
|
278
|
+
'''
|
|
280
279
|
:cloudformationAttribute: Status
|
|
281
280
|
'''
|
|
282
281
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrStatus"))
|
|
@@ -2199,8 +2198,7 @@ class CfnEntity(
|
|
|
2199
2198
|
@builtins.property
|
|
2200
2199
|
@jsii.member(jsii_name="attrStatus")
|
|
2201
2200
|
def attr_status(self) -> _IResolvable_da3f097b:
|
|
2202
|
-
'''
|
|
2203
|
-
|
|
2201
|
+
'''
|
|
2204
2202
|
:cloudformationAttribute: Status
|
|
2205
2203
|
'''
|
|
2206
2204
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrStatus"))
|
|
@@ -4195,7 +4193,7 @@ class CfnScene(
|
|
|
4195
4193
|
@builtins.property
|
|
4196
4194
|
@jsii.member(jsii_name="attrGeneratedSceneMetadata")
|
|
4197
4195
|
def attr_generated_scene_metadata(self) -> _IResolvable_da3f097b:
|
|
4198
|
-
'''
|
|
4196
|
+
'''A key-value pair of generated scene metadata for the scene.
|
|
4199
4197
|
|
|
4200
4198
|
:cloudformationAttribute: GeneratedSceneMetadata
|
|
4201
4199
|
'''
|
|
@@ -1195,7 +1195,7 @@ class CfnFuotaTask(
|
|
|
1195
1195
|
@builtins.property
|
|
1196
1196
|
@jsii.member(jsii_name="attrLoRaWanStartTime")
|
|
1197
1197
|
def attr_lo_ra_wan_start_time(self) -> builtins.str:
|
|
1198
|
-
'''
|
|
1198
|
+
'''Start time of a FUOTA task.
|
|
1199
1199
|
|
|
1200
1200
|
:cloudformationAttribute: LoRaWAN.StartTime
|
|
1201
1201
|
'''
|
|
@@ -1772,9 +1772,7 @@ class CfnMulticastGroup(
|
|
|
1772
1772
|
@builtins.property
|
|
1773
1773
|
@jsii.member(jsii_name="attrLoRaWanNumberOfDevicesInGroup")
|
|
1774
1774
|
def attr_lo_ra_wan_number_of_devices_in_group(self) -> jsii.Number:
|
|
1775
|
-
'''
|
|
1776
|
-
|
|
1777
|
-
Returned after successful read.
|
|
1775
|
+
'''The number of devices that are associated to the multicast group.
|
|
1778
1776
|
|
|
1779
1777
|
:cloudformationAttribute: LoRaWAN.NumberOfDevicesInGroup
|
|
1780
1778
|
'''
|
|
@@ -1783,9 +1781,7 @@ class CfnMulticastGroup(
|
|
|
1783
1781
|
@builtins.property
|
|
1784
1782
|
@jsii.member(jsii_name="attrLoRaWanNumberOfDevicesRequested")
|
|
1785
1783
|
def attr_lo_ra_wan_number_of_devices_requested(self) -> jsii.Number:
|
|
1786
|
-
'''
|
|
1787
|
-
|
|
1788
|
-
Returned after successful read.
|
|
1784
|
+
'''The number of devices that are requested to be associated with the multicast group.
|
|
1789
1785
|
|
|
1790
1786
|
:cloudformationAttribute: LoRaWAN.NumberOfDevicesRequested
|
|
1791
1787
|
'''
|
|
@@ -3348,7 +3344,8 @@ class CfnServiceProfile(
|
|
|
3348
3344
|
@builtins.property
|
|
3349
3345
|
@jsii.member(jsii_name="attrLoRaWanChannelMask")
|
|
3350
3346
|
def attr_lo_ra_wan_channel_mask(self) -> builtins.str:
|
|
3351
|
-
'''
|
|
3347
|
+
'''The ChannelMask value.
|
|
3348
|
+
|
|
3352
3349
|
:cloudformationAttribute: LoRaWAN.ChannelMask
|
|
3353
3350
|
'''
|
|
3354
3351
|
return typing.cast(builtins.str, jsii.get(self, "attrLoRaWanChannelMask"))
|
|
@@ -3356,7 +3353,8 @@ class CfnServiceProfile(
|
|
|
3356
3353
|
@builtins.property
|
|
3357
3354
|
@jsii.member(jsii_name="attrLoRaWanDevStatusReqFreq")
|
|
3358
3355
|
def attr_lo_ra_wan_dev_status_req_freq(self) -> jsii.Number:
|
|
3359
|
-
'''
|
|
3356
|
+
'''The DevStatusReqFreq value.
|
|
3357
|
+
|
|
3360
3358
|
:cloudformationAttribute: LoRaWAN.DevStatusReqFreq
|
|
3361
3359
|
'''
|
|
3362
3360
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanDevStatusReqFreq"))
|
|
@@ -3364,7 +3362,8 @@ class CfnServiceProfile(
|
|
|
3364
3362
|
@builtins.property
|
|
3365
3363
|
@jsii.member(jsii_name="attrLoRaWanDlBucketSize")
|
|
3366
3364
|
def attr_lo_ra_wan_dl_bucket_size(self) -> jsii.Number:
|
|
3367
|
-
'''
|
|
3365
|
+
'''The DLBucketSize value.
|
|
3366
|
+
|
|
3368
3367
|
:cloudformationAttribute: LoRaWAN.DlBucketSize
|
|
3369
3368
|
'''
|
|
3370
3369
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanDlBucketSize"))
|
|
@@ -3372,7 +3371,8 @@ class CfnServiceProfile(
|
|
|
3372
3371
|
@builtins.property
|
|
3373
3372
|
@jsii.member(jsii_name="attrLoRaWanDlRate")
|
|
3374
3373
|
def attr_lo_ra_wan_dl_rate(self) -> jsii.Number:
|
|
3375
|
-
'''
|
|
3374
|
+
'''The DLRate value.
|
|
3375
|
+
|
|
3376
3376
|
:cloudformationAttribute: LoRaWAN.DlRate
|
|
3377
3377
|
'''
|
|
3378
3378
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanDlRate"))
|
|
@@ -3380,7 +3380,8 @@ class CfnServiceProfile(
|
|
|
3380
3380
|
@builtins.property
|
|
3381
3381
|
@jsii.member(jsii_name="attrLoRaWanDlRatePolicy")
|
|
3382
3382
|
def attr_lo_ra_wan_dl_rate_policy(self) -> builtins.str:
|
|
3383
|
-
'''
|
|
3383
|
+
'''The DLRatePolicy value.
|
|
3384
|
+
|
|
3384
3385
|
:cloudformationAttribute: LoRaWAN.DlRatePolicy
|
|
3385
3386
|
'''
|
|
3386
3387
|
return typing.cast(builtins.str, jsii.get(self, "attrLoRaWanDlRatePolicy"))
|
|
@@ -3388,7 +3389,8 @@ class CfnServiceProfile(
|
|
|
3388
3389
|
@builtins.property
|
|
3389
3390
|
@jsii.member(jsii_name="attrLoRaWanDrMax")
|
|
3390
3391
|
def attr_lo_ra_wan_dr_max(self) -> jsii.Number:
|
|
3391
|
-
'''
|
|
3392
|
+
'''The DRMax value.
|
|
3393
|
+
|
|
3392
3394
|
:cloudformationAttribute: LoRaWAN.DrMax
|
|
3393
3395
|
'''
|
|
3394
3396
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanDrMax"))
|
|
@@ -3396,7 +3398,8 @@ class CfnServiceProfile(
|
|
|
3396
3398
|
@builtins.property
|
|
3397
3399
|
@jsii.member(jsii_name="attrLoRaWanDrMin")
|
|
3398
3400
|
def attr_lo_ra_wan_dr_min(self) -> jsii.Number:
|
|
3399
|
-
'''
|
|
3401
|
+
'''The DRMin value.
|
|
3402
|
+
|
|
3400
3403
|
:cloudformationAttribute: LoRaWAN.DrMin
|
|
3401
3404
|
'''
|
|
3402
3405
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanDrMin"))
|
|
@@ -3404,7 +3407,8 @@ class CfnServiceProfile(
|
|
|
3404
3407
|
@builtins.property
|
|
3405
3408
|
@jsii.member(jsii_name="attrLoRaWanHrAllowed")
|
|
3406
3409
|
def attr_lo_ra_wan_hr_allowed(self) -> _IResolvable_da3f097b:
|
|
3407
|
-
'''
|
|
3410
|
+
'''The HRAllowed value that describes whether handover roaming is allowed.
|
|
3411
|
+
|
|
3408
3412
|
:cloudformationAttribute: LoRaWAN.HrAllowed
|
|
3409
3413
|
'''
|
|
3410
3414
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrLoRaWanHrAllowed"))
|
|
@@ -3412,7 +3416,8 @@ class CfnServiceProfile(
|
|
|
3412
3416
|
@builtins.property
|
|
3413
3417
|
@jsii.member(jsii_name="attrLoRaWanMinGwDiversity")
|
|
3414
3418
|
def attr_lo_ra_wan_min_gw_diversity(self) -> jsii.Number:
|
|
3415
|
-
'''
|
|
3419
|
+
'''The MinGwDiversity value.
|
|
3420
|
+
|
|
3416
3421
|
:cloudformationAttribute: LoRaWAN.MinGwDiversity
|
|
3417
3422
|
'''
|
|
3418
3423
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanMinGwDiversity"))
|
|
@@ -3420,7 +3425,8 @@ class CfnServiceProfile(
|
|
|
3420
3425
|
@builtins.property
|
|
3421
3426
|
@jsii.member(jsii_name="attrLoRaWanNwkGeoLoc")
|
|
3422
3427
|
def attr_lo_ra_wan_nwk_geo_loc(self) -> _IResolvable_da3f097b:
|
|
3423
|
-
'''
|
|
3428
|
+
'''The NwkGeoLoc value.
|
|
3429
|
+
|
|
3424
3430
|
:cloudformationAttribute: LoRaWAN.NwkGeoLoc
|
|
3425
3431
|
'''
|
|
3426
3432
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrLoRaWanNwkGeoLoc"))
|
|
@@ -3428,7 +3434,8 @@ class CfnServiceProfile(
|
|
|
3428
3434
|
@builtins.property
|
|
3429
3435
|
@jsii.member(jsii_name="attrLoRaWanReportDevStatusBattery")
|
|
3430
3436
|
def attr_lo_ra_wan_report_dev_status_battery(self) -> _IResolvable_da3f097b:
|
|
3431
|
-
'''
|
|
3437
|
+
'''The ReportDevStatusBattery value.
|
|
3438
|
+
|
|
3432
3439
|
:cloudformationAttribute: LoRaWAN.ReportDevStatusBattery
|
|
3433
3440
|
'''
|
|
3434
3441
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrLoRaWanReportDevStatusBattery"))
|
|
@@ -3436,7 +3443,8 @@ class CfnServiceProfile(
|
|
|
3436
3443
|
@builtins.property
|
|
3437
3444
|
@jsii.member(jsii_name="attrLoRaWanReportDevStatusMargin")
|
|
3438
3445
|
def attr_lo_ra_wan_report_dev_status_margin(self) -> _IResolvable_da3f097b:
|
|
3439
|
-
'''
|
|
3446
|
+
'''The ReportDevStatusMargin value.
|
|
3447
|
+
|
|
3440
3448
|
:cloudformationAttribute: LoRaWAN.ReportDevStatusMargin
|
|
3441
3449
|
'''
|
|
3442
3450
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrLoRaWanReportDevStatusMargin"))
|
|
@@ -3452,7 +3460,8 @@ class CfnServiceProfile(
|
|
|
3452
3460
|
@builtins.property
|
|
3453
3461
|
@jsii.member(jsii_name="attrLoRaWanTargetPer")
|
|
3454
3462
|
def attr_lo_ra_wan_target_per(self) -> jsii.Number:
|
|
3455
|
-
'''
|
|
3463
|
+
'''The TargetPer value.
|
|
3464
|
+
|
|
3456
3465
|
:cloudformationAttribute: LoRaWAN.TargetPer
|
|
3457
3466
|
'''
|
|
3458
3467
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanTargetPer"))
|
|
@@ -3460,7 +3469,8 @@ class CfnServiceProfile(
|
|
|
3460
3469
|
@builtins.property
|
|
3461
3470
|
@jsii.member(jsii_name="attrLoRaWanUlBucketSize")
|
|
3462
3471
|
def attr_lo_ra_wan_ul_bucket_size(self) -> jsii.Number:
|
|
3463
|
-
'''
|
|
3472
|
+
'''The UlBucketSize value.
|
|
3473
|
+
|
|
3464
3474
|
:cloudformationAttribute: LoRaWAN.UlBucketSize
|
|
3465
3475
|
'''
|
|
3466
3476
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanUlBucketSize"))
|
|
@@ -3468,7 +3478,8 @@ class CfnServiceProfile(
|
|
|
3468
3478
|
@builtins.property
|
|
3469
3479
|
@jsii.member(jsii_name="attrLoRaWanUlRate")
|
|
3470
3480
|
def attr_lo_ra_wan_ul_rate(self) -> jsii.Number:
|
|
3471
|
-
'''
|
|
3481
|
+
'''The ULRate value.
|
|
3482
|
+
|
|
3472
3483
|
:cloudformationAttribute: LoRaWAN.UlRate
|
|
3473
3484
|
'''
|
|
3474
3485
|
return typing.cast(jsii.Number, jsii.get(self, "attrLoRaWanUlRate"))
|
|
@@ -3476,7 +3487,8 @@ class CfnServiceProfile(
|
|
|
3476
3487
|
@builtins.property
|
|
3477
3488
|
@jsii.member(jsii_name="attrLoRaWanUlRatePolicy")
|
|
3478
3489
|
def attr_lo_ra_wan_ul_rate_policy(self) -> builtins.str:
|
|
3479
|
-
'''
|
|
3490
|
+
'''The ULRatePolicy value.
|
|
3491
|
+
|
|
3480
3492
|
:cloudformationAttribute: LoRaWAN.UlRatePolicy
|
|
3481
3493
|
'''
|
|
3482
3494
|
return typing.cast(builtins.str, jsii.get(self, "attrLoRaWanUlRatePolicy"))
|
aws_cdk/aws_kendra/__init__.py
CHANGED
|
@@ -2369,7 +2369,7 @@ class CfnDataSource(
|
|
|
2369
2369
|
:param database_configuration: Provides the configuration information to connect to a database as your data source.
|
|
2370
2370
|
:param google_drive_configuration: Provides the configuration information to connect to Google Drive as your data source.
|
|
2371
2371
|
:param one_drive_configuration: Provides the configuration information to connect to Microsoft OneDrive as your data source.
|
|
2372
|
-
:param s3_configuration: Provides the configuration information to connect to an Amazon S3 bucket as your data source.
|
|
2372
|
+
:param s3_configuration: Provides the configuration information to connect to an Amazon S3 bucket as your data source. .. epigraph:: Amazon Kendra now supports an upgraded Amazon S3 connector. You must now use the `TemplateConfiguration <https://docs.aws.amazon.com/kendra/latest/APIReference/API_TemplateConfiguration.html>`_ object instead of the ``S3DataSourceConfiguration`` object to configure your connector. Connectors configured using the older console and API architecture will continue to function as configured. However, you won't be able to edit or update them. If you want to edit or update your connector configuration, you must create a new connector. We recommended migrating your connector workflow to the upgraded version. Support for connectors configured using the older architecture is scheduled to end by June 2024.
|
|
2373
2373
|
:param salesforce_configuration: Provides the configuration information to connect to Salesforce as your data source.
|
|
2374
2374
|
:param service_now_configuration: Provides the configuration information to connect to ServiceNow as your data source.
|
|
2375
2375
|
:param share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
|
|
@@ -2823,6 +2823,16 @@ class CfnDataSource(
|
|
|
2823
2823
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnDataSource.S3DataSourceConfigurationProperty"]]:
|
|
2824
2824
|
'''Provides the configuration information to connect to an Amazon S3 bucket as your data source.
|
|
2825
2825
|
|
|
2826
|
+
.. epigraph::
|
|
2827
|
+
|
|
2828
|
+
Amazon Kendra now supports an upgraded Amazon S3 connector.
|
|
2829
|
+
|
|
2830
|
+
You must now use the `TemplateConfiguration <https://docs.aws.amazon.com/kendra/latest/APIReference/API_TemplateConfiguration.html>`_ object instead of the ``S3DataSourceConfiguration`` object to configure your connector.
|
|
2831
|
+
|
|
2832
|
+
Connectors configured using the older console and API architecture will continue to function as configured. However, you won't be able to edit or update them. If you want to edit or update your connector configuration, you must create a new connector.
|
|
2833
|
+
|
|
2834
|
+
We recommended migrating your connector workflow to the upgraded version. Support for connectors configured using the older architecture is scheduled to end by June 2024.
|
|
2835
|
+
|
|
2826
2836
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-s3configuration
|
|
2827
2837
|
'''
|
|
2828
2838
|
result = self._values.get("s3_configuration")
|
|
@@ -4454,13 +4464,19 @@ class CfnDataSource(
|
|
|
4454
4464
|
|
|
4455
4465
|
.. epigraph::
|
|
4456
4466
|
|
|
4457
|
-
|
|
4467
|
+
Amazon Kendra now supports an upgraded Amazon S3 connector.
|
|
4468
|
+
|
|
4469
|
+
You must now use the `TemplateConfiguration <https://docs.aws.amazon.com/kendra/latest/APIReference/API_TemplateConfiguration.html>`_ object instead of the ``S3DataSourceConfiguration`` object to configure your connector.
|
|
4470
|
+
|
|
4471
|
+
Connectors configured using the older console and API architecture will continue to function as configured. However, you won't be able to edit or update them. If you want to edit or update your connector configuration, you must create a new connector.
|
|
4472
|
+
|
|
4473
|
+
We recommended migrating your connector workflow to the upgraded version. Support for connectors configured using the older architecture is scheduled to end by June 2024.
|
|
4458
4474
|
|
|
4459
4475
|
:param bucket_name: The name of the bucket that contains the documents.
|
|
4460
4476
|
:param access_control_list_configuration: Provides the path to the S3 bucket that contains the user context filtering files for the data source. For the format of the file, see `Access control for S3 data sources <https://docs.aws.amazon.com/kendra/latest/dg/s3-acl.html>`_ .
|
|
4461
4477
|
:param documents_metadata_configuration: Specifies document metadata files that contain information such as the document access control information, source URI, document author, and custom attributes. Each metadata file contains metadata about a single document.
|
|
4462
|
-
:param exclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for file names and file types
|
|
4463
|
-
:param inclusion_patterns: A list of glob patterns
|
|
4478
|
+
:param exclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to exclude from your index. If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include: - ``/myapp/config/*`` - All files inside config directory - ``/** /*.png`` - All .png files in all directories - ``/** /*.{png,ico,md}`` - All .png, .ico or .md files in all directories - ``/myapp/src/** /*.ts`` - All .ts files inside src directory (and all its subdirectories) - ``** /!(*.module).ts`` - All .ts files but not .module.ts - **.png , *.jpg* excludes all PNG and JPEG image files in a directory (files with the extensions .png and .jpg). - **internal** excludes all files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'. - *** /*internal** excludes all internal-related files in a directory and its subdirectories. For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4479
|
+
:param inclusion_patterns: A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to include in your index. If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include: - ``/myapp/config/*`` - All files inside config directory - ``/** /*.png`` - All .png files in all directories - ``/** /*.{png,ico,md}`` - All .png, .ico or .md files in all directories - ``/myapp/src/** /*.ts`` - All .ts files inside src directory (and all its subdirectories) - ``** /!(*.module).ts`` - All .ts files but not .module.ts - **.png , *.jpg* includes all PNG and JPEG image files in a directory (files with the extensions .png and .jpg). - **internal** includes all files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'. - *** /*internal** includes all internal-related files in a directory and its subdirectories. For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4464
4480
|
:param inclusion_prefixes: A list of S3 prefixes for the documents that should be included in the index.
|
|
4465
4481
|
|
|
4466
4482
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html
|
|
@@ -4547,18 +4563,18 @@ class CfnDataSource(
|
|
|
4547
4563
|
|
|
4548
4564
|
@builtins.property
|
|
4549
4565
|
def exclusion_patterns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4550
|
-
'''A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for file names and file types
|
|
4566
|
+
'''A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to exclude from your index.
|
|
4551
4567
|
|
|
4552
|
-
If a document
|
|
4568
|
+
If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include:
|
|
4553
4569
|
|
|
4554
4570
|
- ``/myapp/config/*`` - All files inside config directory
|
|
4555
4571
|
- ``/** /*.png`` - All .png files in all directories
|
|
4556
4572
|
- ``/** /*.{png,ico,md}`` - All .png, .ico or .md files in all directories
|
|
4557
4573
|
- ``/myapp/src/** /*.ts`` - All .ts files inside src directory (and all its subdirectories)
|
|
4558
4574
|
- ``** /!(*.module).ts`` - All .ts files but not .module.ts
|
|
4559
|
-
- **.png , *.jpg*
|
|
4560
|
-
- **internal**
|
|
4561
|
-
- *** /*internal**
|
|
4575
|
+
- **.png , *.jpg* excludes all PNG and JPEG image files in a directory (files with the extensions .png and .jpg).
|
|
4576
|
+
- **internal** excludes all files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'.
|
|
4577
|
+
- *** /*internal** excludes all internal-related files in a directory and its subdirectories.
|
|
4562
4578
|
|
|
4563
4579
|
For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4564
4580
|
|
|
@@ -4569,15 +4585,20 @@ class CfnDataSource(
|
|
|
4569
4585
|
|
|
4570
4586
|
@builtins.property
|
|
4571
4587
|
def inclusion_patterns(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
4572
|
-
'''A list of glob patterns
|
|
4588
|
+
'''A list of glob patterns (patterns that can expand a wildcard pattern into a list of path names that match the given pattern) for certain file names and file types to include in your index.
|
|
4573
4589
|
|
|
4574
|
-
If a document
|
|
4590
|
+
If a document matches both an inclusion and exclusion prefix or pattern, the exclusion prefix takes precendence and the document is not indexed. Examples of glob patterns include:
|
|
4575
4591
|
|
|
4576
|
-
|
|
4592
|
+
- ``/myapp/config/*`` - All files inside config directory
|
|
4593
|
+
- ``/** /*.png`` - All .png files in all directories
|
|
4594
|
+
- ``/** /*.{png,ico,md}`` - All .png, .ico or .md files in all directories
|
|
4595
|
+
- ``/myapp/src/** /*.ts`` - All .ts files inside src directory (and all its subdirectories)
|
|
4596
|
+
- ``** /!(*.module).ts`` - All .ts files but not .module.ts
|
|
4597
|
+
- **.png , *.jpg* includes all PNG and JPEG image files in a directory (files with the extensions .png and .jpg).
|
|
4598
|
+
- **internal** includes all files in a directory that contain 'internal' in the file name, such as 'internal', 'internal_only', 'company_internal'.
|
|
4599
|
+
- *** /*internal** includes all internal-related files in a directory and its subdirectories.
|
|
4577
4600
|
|
|
4578
|
-
|
|
4579
|
-
- *** /*.txt* will include all text files in a directory and its subdirectories.
|
|
4580
|
-
- **tax** will include all files in a directory that contain 'tax' in the file name, such as 'tax', 'taxes', 'income_tax'.
|
|
4601
|
+
For more examples, see `Use of Exclude and Include Filters <https://docs.aws.amazon.com/cli/latest/reference/s3/#use-of-exclude-and-include-filters>`_ in the AWS CLI Command Reference.
|
|
4581
4602
|
|
|
4582
4603
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-inclusionpatterns
|
|
4583
4604
|
'''
|