aws-cdk-lib 2.184.1__py3-none-any.whl → 2.185.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.

Files changed (46) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.184.1.jsii.tgz → aws-cdk-lib@2.185.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_apigateway/__init__.py +1 -1
  4. aws_cdk/aws_applicationsignals/__init__.py +134 -0
  5. aws_cdk/aws_appsync/__init__.py +0 -8
  6. aws_cdk/aws_athena/__init__.py +143 -0
  7. aws_cdk/aws_backup/__init__.py +4 -2
  8. aws_cdk/aws_batch/__init__.py +9 -0
  9. aws_cdk/aws_bedrock/__init__.py +260 -185
  10. aws_cdk/aws_cassandra/__init__.py +3 -5
  11. aws_cdk/aws_chatbot/__init__.py +41 -0
  12. aws_cdk/aws_codebuild/__init__.py +10 -3
  13. aws_cdk/aws_config/__init__.py +1 -1
  14. aws_cdk/aws_datasync/__init__.py +12 -14
  15. aws_cdk/aws_ec2/__init__.py +148 -19
  16. aws_cdk/aws_ecr/__init__.py +84 -2
  17. aws_cdk/aws_ecs/__init__.py +5 -5
  18. aws_cdk/aws_eks/__init__.py +2 -0
  19. aws_cdk/aws_elasticloadbalancingv2/__init__.py +42 -5
  20. aws_cdk/aws_elasticsearch/__init__.py +1 -1
  21. aws_cdk/aws_events_targets/__init__.py +5 -5
  22. aws_cdk/aws_gamelift/__init__.py +162 -162
  23. aws_cdk/aws_gameliftstreams/__init__.py +199 -59
  24. aws_cdk/aws_iam/__init__.py +56 -25
  25. aws_cdk/aws_imagebuilder/__init__.py +42 -5
  26. aws_cdk/aws_iotfleetwise/__init__.py +15 -6
  27. aws_cdk/aws_kinesisfirehose/__init__.py +113 -110
  28. aws_cdk/aws_logs/__init__.py +21 -27
  29. aws_cdk/aws_msk/__init__.py +9 -48
  30. aws_cdk/aws_opensearchservice/__init__.py +1 -1
  31. aws_cdk/aws_pcs/__init__.py +33 -22
  32. aws_cdk/aws_rds/__init__.py +8 -4
  33. aws_cdk/aws_rum/__init__.py +148 -0
  34. aws_cdk/aws_s3/__init__.py +4 -6
  35. aws_cdk/aws_s3_deployment/__init__.py +2 -0
  36. aws_cdk/aws_sagemaker/__init__.py +524 -0
  37. aws_cdk/aws_ses/__init__.py +9 -9
  38. aws_cdk/aws_sns/__init__.py +12 -12
  39. aws_cdk/cx_api/__init__.py +30 -0
  40. aws_cdk/region_info/__init__.py +2 -2
  41. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/METADATA +1 -1
  42. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/RECORD +46 -46
  43. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/LICENSE +0 -0
  44. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/NOTICE +0 -0
  45. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/WHEEL +0 -0
  46. {aws_cdk_lib-2.184.1.dist-info → aws_cdk_lib-2.185.0.dist-info}/top_level.txt +0 -0
@@ -117,7 +117,7 @@ class CfnKeyspace(
117
117
  :param scope: Scope in which this resource is defined.
118
118
  :param id: Construct identifier for this resource (unique in its scope).
119
119
  :param client_side_timestamps_enabled: Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you've enabled client-side timestamps for a table, you can’t disable it again.
120
- :param keyspace_name: The name of the keyspace to be created. The keyspace name is case sensitive. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the keyspace name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ . *Length constraints:* Minimum length of 3. Maximum length of 255. *Pattern:* ``^[a-zA-Z0-9][a-zA-Z0-9_]{1,47}$``
120
+ :param keyspace_name: The name of the keyspace to be created. The keyspace name is case sensitive. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the keyspace name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ . *Length constraints:* Minimum length of 1. Maximum length of 48.
121
121
  :param replication_specification: Specifies the ``ReplicationStrategy`` of a keyspace. The options are:. - ``SINGLE_REGION`` for a single Region keyspace (optional) or - ``MULTI_REGION`` for a multi-Region keyspace If no ``ReplicationStrategy`` is provided, the default is ``SINGLE_REGION`` . If you choose ``MULTI_REGION`` , you must also provide a ``RegionList`` with the AWS Regions that the keyspace is replicated in.
122
122
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
123
123
  '''
@@ -349,7 +349,7 @@ class CfnKeyspaceProps:
349
349
  '''Properties for defining a ``CfnKeyspace``.
350
350
 
351
351
  :param client_side_timestamps_enabled: Indicates whether client-side timestamps are enabled (true) or disabled (false) for all tables in the keyspace. To add a Region to a single-Region keyspace with at least one table, the value must be set to true. After you've enabled client-side timestamps for a table, you can’t disable it again.
352
- :param keyspace_name: The name of the keyspace to be created. The keyspace name is case sensitive. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the keyspace name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ . *Length constraints:* Minimum length of 3. Maximum length of 255. *Pattern:* ``^[a-zA-Z0-9][a-zA-Z0-9_]{1,47}$``
352
+ :param keyspace_name: The name of the keyspace to be created. The keyspace name is case sensitive. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the keyspace name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ . *Length constraints:* Minimum length of 1. Maximum length of 48.
353
353
  :param replication_specification: Specifies the ``ReplicationStrategy`` of a keyspace. The options are:. - ``SINGLE_REGION`` for a single Region keyspace (optional) or - ``MULTI_REGION`` for a multi-Region keyspace If no ``ReplicationStrategy`` is provided, the default is ``SINGLE_REGION`` . If you choose ``MULTI_REGION`` , you must also provide a ``RegionList`` with the AWS Regions that the keyspace is replicated in.
354
354
  :param tags: An array of key-value pairs to apply to this resource. For more information, see `Tag <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html>`_ .
355
355
 
@@ -410,9 +410,7 @@ class CfnKeyspaceProps:
410
410
 
411
411
  The keyspace name is case sensitive. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID for the keyspace name. For more information, see `Name type <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html>`_ .
412
412
 
413
- *Length constraints:* Minimum length of 3. Maximum length of 255.
414
-
415
- *Pattern:* ``^[a-zA-Z0-9][a-zA-Z0-9_]{1,47}$``
413
+ *Length constraints:* Minimum length of 1. Maximum length of 48.
416
414
 
417
415
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-keyspace.html#cfn-cassandra-keyspace-keyspacename
418
416
  '''
@@ -812,6 +812,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
812
812
  key="key",
813
813
  value="value"
814
814
  )],
815
+ teams_channel_name="teamsChannelName",
815
816
  user_role_required=False
816
817
  )
817
818
  '''
@@ -831,6 +832,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
831
832
  logging_level: typing.Optional[builtins.str] = None,
832
833
  sns_topic_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
833
834
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
835
+ teams_channel_name: typing.Optional[builtins.str] = None,
834
836
  user_role_required: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
835
837
  ) -> None:
836
838
  '''
@@ -846,6 +848,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
846
848
  :param logging_level: Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. Logging levels include ``ERROR`` , ``INFO`` , or ``NONE`` . Default: - "NONE"
847
849
  :param sns_topic_arns: The ARNs of the SNS topics that deliver notifications to .
848
850
  :param tags: The tags to add to the configuration.
851
+ :param teams_channel_name: The name of the Microsoft Teams channel.
849
852
  :param user_role_required: Enables use of a user role requirement in your chat configuration. Default: - false
850
853
  '''
851
854
  if __debug__:
@@ -863,6 +866,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
863
866
  logging_level=logging_level,
864
867
  sns_topic_arns=sns_topic_arns,
865
868
  tags=tags,
869
+ teams_channel_name=teams_channel_name,
866
870
  user_role_required=user_role_required,
867
871
  )
868
872
 
@@ -1057,6 +1061,19 @@ class CfnMicrosoftTeamsChannelConfiguration(
1057
1061
  check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1058
1062
  jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
1059
1063
 
1064
+ @builtins.property
1065
+ @jsii.member(jsii_name="teamsChannelName")
1066
+ def teams_channel_name(self) -> typing.Optional[builtins.str]:
1067
+ '''The name of the Microsoft Teams channel.'''
1068
+ return typing.cast(typing.Optional[builtins.str], jsii.get(self, "teamsChannelName"))
1069
+
1070
+ @teams_channel_name.setter
1071
+ def teams_channel_name(self, value: typing.Optional[builtins.str]) -> None:
1072
+ if __debug__:
1073
+ type_hints = typing.get_type_hints(_typecheckingstub__6b024a8c697915b8353191fc418871ddabafe006c942750d3ac38aa4c9d5c6c4)
1074
+ check_type(argname="argument value", value=value, expected_type=type_hints["value"])
1075
+ jsii.set(self, "teamsChannelName", value) # pyright: ignore[reportArgumentType]
1076
+
1060
1077
  @builtins.property
1061
1078
  @jsii.member(jsii_name="userRoleRequired")
1062
1079
  def user_role_required(
@@ -1090,6 +1107,7 @@ class CfnMicrosoftTeamsChannelConfiguration(
1090
1107
  "logging_level": "loggingLevel",
1091
1108
  "sns_topic_arns": "snsTopicArns",
1092
1109
  "tags": "tags",
1110
+ "teams_channel_name": "teamsChannelName",
1093
1111
  "user_role_required": "userRoleRequired",
1094
1112
  },
1095
1113
  )
@@ -1107,6 +1125,7 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
1107
1125
  logging_level: typing.Optional[builtins.str] = None,
1108
1126
  sns_topic_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
1109
1127
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
1128
+ teams_channel_name: typing.Optional[builtins.str] = None,
1110
1129
  user_role_required: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
1111
1130
  ) -> None:
1112
1131
  '''Properties for defining a ``CfnMicrosoftTeamsChannelConfiguration``.
@@ -1121,6 +1140,7 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
1121
1140
  :param logging_level: Specifies the logging level for this configuration. This property affects the log entries pushed to Amazon CloudWatch Logs. Logging levels include ``ERROR`` , ``INFO`` , or ``NONE`` . Default: - "NONE"
1122
1141
  :param sns_topic_arns: The ARNs of the SNS topics that deliver notifications to .
1123
1142
  :param tags: The tags to add to the configuration.
1143
+ :param teams_channel_name: The name of the Microsoft Teams channel.
1124
1144
  :param user_role_required: Enables use of a user role requirement in your chat configuration. Default: - false
1125
1145
 
1126
1146
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-microsoftteamschannelconfiguration.html
@@ -1148,6 +1168,7 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
1148
1168
  key="key",
1149
1169
  value="value"
1150
1170
  )],
1171
+ teams_channel_name="teamsChannelName",
1151
1172
  user_role_required=False
1152
1173
  )
1153
1174
  '''
@@ -1163,6 +1184,7 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
1163
1184
  check_type(argname="argument logging_level", value=logging_level, expected_type=type_hints["logging_level"])
1164
1185
  check_type(argname="argument sns_topic_arns", value=sns_topic_arns, expected_type=type_hints["sns_topic_arns"])
1165
1186
  check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
1187
+ check_type(argname="argument teams_channel_name", value=teams_channel_name, expected_type=type_hints["teams_channel_name"])
1166
1188
  check_type(argname="argument user_role_required", value=user_role_required, expected_type=type_hints["user_role_required"])
1167
1189
  self._values: typing.Dict[builtins.str, typing.Any] = {
1168
1190
  "configuration_name": configuration_name,
@@ -1181,6 +1203,8 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
1181
1203
  self._values["sns_topic_arns"] = sns_topic_arns
1182
1204
  if tags is not None:
1183
1205
  self._values["tags"] = tags
1206
+ if teams_channel_name is not None:
1207
+ self._values["teams_channel_name"] = teams_channel_name
1184
1208
  if user_role_required is not None:
1185
1209
  self._values["user_role_required"] = user_role_required
1186
1210
 
@@ -1293,6 +1317,15 @@ class CfnMicrosoftTeamsChannelConfigurationProps:
1293
1317
  result = self._values.get("tags")
1294
1318
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], result)
1295
1319
 
1320
+ @builtins.property
1321
+ def teams_channel_name(self) -> typing.Optional[builtins.str]:
1322
+ '''The name of the Microsoft Teams channel.
1323
+
1324
+ :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-microsoftteamschannelconfiguration.html#cfn-chatbot-microsoftteamschannelconfiguration-teamschannelname
1325
+ '''
1326
+ result = self._values.get("teams_channel_name")
1327
+ return typing.cast(typing.Optional[builtins.str], result)
1328
+
1296
1329
  @builtins.property
1297
1330
  def user_role_required(
1298
1331
  self,
@@ -2630,6 +2663,7 @@ def _typecheckingstub__62f6b943071fca79376376fd20660d7b707a1026a9039a0c12c88895d
2630
2663
  logging_level: typing.Optional[builtins.str] = None,
2631
2664
  sns_topic_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
2632
2665
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2666
+ teams_channel_name: typing.Optional[builtins.str] = None,
2633
2667
  user_role_required: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2634
2668
  ) -> None:
2635
2669
  """Type checking stubs"""
@@ -2707,6 +2741,12 @@ def _typecheckingstub__85a622952d9fea475beb11aa3753f5147c076bc04254dc91a4dbc14ee
2707
2741
  """Type checking stubs"""
2708
2742
  pass
2709
2743
 
2744
+ def _typecheckingstub__6b024a8c697915b8353191fc418871ddabafe006c942750d3ac38aa4c9d5c6c4(
2745
+ value: typing.Optional[builtins.str],
2746
+ ) -> None:
2747
+ """Type checking stubs"""
2748
+ pass
2749
+
2710
2750
  def _typecheckingstub__0a5171a48ffb0d6c3dc8bec2e5eb8774e5e34370819690e508928a264f6e7eda(
2711
2751
  value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
2712
2752
  ) -> None:
@@ -2725,6 +2765,7 @@ def _typecheckingstub__2750e06a244ed0f59003e9954924d4cdea272b2fc67dda92574fc40bd
2725
2765
  logging_level: typing.Optional[builtins.str] = None,
2726
2766
  sns_topic_arns: typing.Optional[typing.Sequence[builtins.str]] = None,
2727
2767
  tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
2768
+ teams_channel_name: typing.Optional[builtins.str] = None,
2728
2769
  user_role_required: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
2729
2770
  ) -> None:
2730
2771
  """Type checking stubs"""
@@ -6478,7 +6478,7 @@ class CfnProject(
6478
6478
  The Webhook feature isn't available in AWS CloudFormation for GitHub Enterprise projects. Use the AWS CLI or AWS CodeBuild console to create the webhook.
6479
6479
 
6480
6480
  :param pattern: For a ``WebHookFilter`` that uses ``EVENT`` type, a comma-separated string that specifies one or more events. For example, the webhook filter ``PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED`` allows all push, pull request created, and pull request updated events to trigger a build. For a ``WebHookFilter`` that uses any of the other filter types, a regular expression pattern. For example, a ``WebHookFilter`` that uses ``HEAD_REF`` for its ``type`` and the pattern ``^refs/heads/`` triggers a build when the head reference is a branch with a reference name ``refs/heads/branch-name`` .
6481
- :param type: The type of webhook filter. There are nine webhook filter types: ``EVENT`` , ``ACTOR_ACCOUNT_ID`` , ``HEAD_REF`` , ``BASE_REF`` , ``FILE_PATH`` , ``COMMIT_MESSAGE`` , ``TAG_NAME`` , ``RELEASE_NAME`` , and ``WORKFLOW_NAME`` . - EVENT - A webhook event triggers a build when the provided ``pattern`` matches one of nine event types: ``PUSH`` , ``PULL_REQUEST_CREATED`` , ``PULL_REQUEST_UPDATED`` , ``PULL_REQUEST_CLOSED`` , ``PULL_REQUEST_REOPENED`` , ``PULL_REQUEST_MERGED`` , ``RELEASED`` , ``PRERELEASED`` , and ``WORKFLOW_JOB_QUEUED`` . The ``EVENT`` patterns are specified as a comma-separated string. For example, ``PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED`` filters all push, pull request created, and pull request updated events. .. epigraph:: Types ``PULL_REQUEST_REOPENED`` and ``WORKFLOW_JOB_QUEUED`` work with GitHub and GitHub Enterprise only. Types ``RELEASED`` and ``PRERELEASED`` work with GitHub only. - ACTOR_ACCOUNT_ID - A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression ``pattern`` . - HEAD_REF - A webhook event triggers a build when the head reference matches the regular expression ``pattern`` . For example, ``refs/heads/branch-name`` and ``refs/tags/tag-name`` . .. epigraph:: Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events. - BASE_REF - A webhook event triggers a build when the base reference matches the regular expression ``pattern`` . For example, ``refs/heads/branch-name`` . .. epigraph:: Works with pull request events only. - FILE_PATH - A webhook triggers a build when the path of a changed file matches the regular expression ``pattern`` . .. epigraph:: Works with push and pull request events only. - COMMIT_MESSAGE - A webhook triggers a build when the head commit message matches the regular expression ``pattern`` . .. epigraph:: Works with push and pull request events only. - TAG_NAME - A webhook triggers a build when the tag name of the release matches the regular expression ``pattern`` . .. epigraph:: Works with ``RELEASED`` and ``PRERELEASED`` events only. - RELEASE_NAME - A webhook triggers a build when the release name matches the regular expression ``pattern`` . .. epigraph:: Works with ``RELEASED`` and ``PRERELEASED`` events only. - REPOSITORY_NAME - A webhook triggers a build when the repository name matches the regular expression pattern. .. epigraph:: Works with GitHub global or organization webhooks only. - WORKFLOW_NAME - A webhook triggers a build when the workflow name matches the regular expression ``pattern`` . .. epigraph:: Works with ``WORKFLOW_JOB_QUEUED`` events only. > For CodeBuild-hosted Buildkite runner builds, WORKFLOW_NAME filters will filter by pipeline name.
6481
+ :param type: The type of webhook filter. There are 11 webhook filter types: ``EVENT`` , ``ACTOR_ACCOUNT_ID`` , ``HEAD_REF`` , ``BASE_REF`` , ``FILE_PATH`` , ``COMMIT_MESSAGE`` , ``TAG_NAME`` , ``RELEASE_NAME`` , ``REPOSITORY_NAME`` , ``ORGANIZATION_NAME`` , and ``WORKFLOW_NAME`` . - EVENT - A webhook event triggers a build when the provided ``pattern`` matches one of nine event types: ``PUSH`` , ``PULL_REQUEST_CREATED`` , ``PULL_REQUEST_UPDATED`` , ``PULL_REQUEST_CLOSED`` , ``PULL_REQUEST_REOPENED`` , ``PULL_REQUEST_MERGED`` , ``RELEASED`` , ``PRERELEASED`` , and ``WORKFLOW_JOB_QUEUED`` . The ``EVENT`` patterns are specified as a comma-separated string. For example, ``PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED`` filters all push, pull request created, and pull request updated events. .. epigraph:: Types ``PULL_REQUEST_REOPENED`` and ``WORKFLOW_JOB_QUEUED`` work with GitHub and GitHub Enterprise only. Types ``RELEASED`` and ``PRERELEASED`` work with GitHub only. - ACTOR_ACCOUNT_ID - A webhook event triggers a build when a GitHub, GitHub Enterprise, or Bitbucket account ID matches the regular expression ``pattern`` . - HEAD_REF - A webhook event triggers a build when the head reference matches the regular expression ``pattern`` . For example, ``refs/heads/branch-name`` and ``refs/tags/tag-name`` . .. epigraph:: Works with GitHub and GitHub Enterprise push, GitHub and GitHub Enterprise pull request, Bitbucket push, and Bitbucket pull request events. - BASE_REF - A webhook event triggers a build when the base reference matches the regular expression ``pattern`` . For example, ``refs/heads/branch-name`` . .. epigraph:: Works with pull request events only. - FILE_PATH - A webhook triggers a build when the path of a changed file matches the regular expression ``pattern`` . .. epigraph:: Works with push and pull request events only. - COMMIT_MESSAGE - A webhook triggers a build when the head commit message matches the regular expression ``pattern`` . .. epigraph:: Works with push and pull request events only. - TAG_NAME - A webhook triggers a build when the tag name of the release matches the regular expression ``pattern`` . .. epigraph:: Works with ``RELEASED`` and ``PRERELEASED`` events only. - RELEASE_NAME - A webhook triggers a build when the release name matches the regular expression ``pattern`` . .. epigraph:: Works with ``RELEASED`` and ``PRERELEASED`` events only. - REPOSITORY_NAME - A webhook triggers a build when the repository name matches the regular expression ``pattern`` . .. epigraph:: Works with GitHub global or organization webhooks only. - ORGANIZATION_NAME - A webhook triggers a build when the organization name matches the regular expression ``pattern`` . .. epigraph:: Works with GitHub global webhooks only. - WORKFLOW_NAME - A webhook triggers a build when the workflow name matches the regular expression ``pattern`` . .. epigraph:: Works with ``WORKFLOW_JOB_QUEUED`` events only. > For CodeBuild-hosted Buildkite runner builds, WORKFLOW_NAME filters will filter by pipeline name.
6482
6482
  :param exclude_matched_pattern: Used to indicate that the ``pattern`` determines which webhook events do not trigger a build. If true, then a webhook event that does not match the ``pattern`` triggers a build. If false, then a webhook event that matches the ``pattern`` triggers a build.
6483
6483
 
6484
6484
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-webhookfilter.html
@@ -6528,7 +6528,7 @@ class CfnProject(
6528
6528
  def type(self) -> builtins.str:
6529
6529
  '''The type of webhook filter.
6530
6530
 
6531
- There are nine webhook filter types: ``EVENT`` , ``ACTOR_ACCOUNT_ID`` , ``HEAD_REF`` , ``BASE_REF`` , ``FILE_PATH`` , ``COMMIT_MESSAGE`` , ``TAG_NAME`` , ``RELEASE_NAME`` , and ``WORKFLOW_NAME`` .
6531
+ There are 11 webhook filter types: ``EVENT`` , ``ACTOR_ACCOUNT_ID`` , ``HEAD_REF`` , ``BASE_REF`` , ``FILE_PATH`` , ``COMMIT_MESSAGE`` , ``TAG_NAME`` , ``RELEASE_NAME`` , ``REPOSITORY_NAME`` , ``ORGANIZATION_NAME`` , and ``WORKFLOW_NAME`` .
6532
6532
 
6533
6533
  - EVENT
6534
6534
  - A webhook event triggers a build when the provided ``pattern`` matches one of nine event types: ``PUSH`` , ``PULL_REQUEST_CREATED`` , ``PULL_REQUEST_UPDATED`` , ``PULL_REQUEST_CLOSED`` , ``PULL_REQUEST_REOPENED`` , ``PULL_REQUEST_MERGED`` , ``RELEASED`` , ``PRERELEASED`` , and ``WORKFLOW_JOB_QUEUED`` . The ``EVENT`` patterns are specified as a comma-separated string. For example, ``PUSH, PULL_REQUEST_CREATED, PULL_REQUEST_UPDATED`` filters all push, pull request created, and pull request updated events.
@@ -6582,12 +6582,19 @@ class CfnProject(
6582
6582
  Works with ``RELEASED`` and ``PRERELEASED`` events only.
6583
6583
 
6584
6584
  - REPOSITORY_NAME
6585
- - A webhook triggers a build when the repository name matches the regular expression pattern.
6585
+ - A webhook triggers a build when the repository name matches the regular expression ``pattern`` .
6586
6586
 
6587
6587
  .. epigraph::
6588
6588
 
6589
6589
  Works with GitHub global or organization webhooks only.
6590
6590
 
6591
+ - ORGANIZATION_NAME
6592
+ - A webhook triggers a build when the organization name matches the regular expression ``pattern`` .
6593
+
6594
+ .. epigraph::
6595
+
6596
+ Works with GitHub global webhooks only.
6597
+
6591
6598
  - WORKFLOW_NAME
6592
6599
  - A webhook triggers a build when the workflow name matches the regular expression ``pattern`` .
6593
6600
 
@@ -11570,7 +11570,7 @@ class ResourceType(
11570
11570
  @jsii.python.classproperty
11571
11571
  @jsii.member(jsii_name="KINESIS_FIREHOSE_DELIVERY_STREAM")
11572
11572
  def KINESIS_FIREHOSE_DELIVERY_STREAM(cls) -> "ResourceType":
11573
- '''Amazon Kinesis Firehose DeliveryStream.'''
11573
+ '''Amazon Data Firehose DeliveryStream.'''
11574
11574
  return typing.cast("ResourceType", jsii.sget(cls, "KINESIS_FIREHOSE_DELIVERY_STREAM"))
11575
11575
 
11576
11576
  @jsii.python.classproperty
@@ -4300,7 +4300,7 @@ class CfnLocationNFS(
4300
4300
  :param id: Construct identifier for this resource (unique in its scope).
4301
4301
  :param on_prem_config: Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect to your NFS file server. You can specify more than one agent. For more information, see `Using multiple DataSync agents <https://docs.aws.amazon.com/datasync/latest/userguide/do-i-need-datasync-agent.html#multiple-agents>`_ .
4302
4302
  :param mount_options: Specifies the options that DataSync can use to mount your NFS file server.
4303
- :param server_hostname: Specifies the Domain Name System (DNS) name or IP version 4 address of the NFS file server that your DataSync agent connects to.
4303
+ :param server_hostname: Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.
4304
4304
  :param subdirectory: Specifies the export path in your NFS file server that you want DataSync to mount. This path (or a subdirectory of the path) is where DataSync transfers data to or from. For information on configuring an export for DataSync, see `Accessing NFS file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs>`_ .
4305
4305
  :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
4306
4306
  '''
@@ -4416,7 +4416,7 @@ class CfnLocationNFS(
4416
4416
  @builtins.property
4417
4417
  @jsii.member(jsii_name="serverHostname")
4418
4418
  def server_hostname(self) -> typing.Optional[builtins.str]:
4419
- '''Specifies the Domain Name System (DNS) name or IP version 4 address of the NFS file server that your DataSync agent connects to.'''
4419
+ '''Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.'''
4420
4420
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverHostname"))
4421
4421
 
4422
4422
  @server_hostname.setter
@@ -4596,7 +4596,7 @@ class CfnLocationNFSProps:
4596
4596
 
4597
4597
  :param on_prem_config: Specifies the Amazon Resource Name (ARN) of the DataSync agent that can connect to your NFS file server. You can specify more than one agent. For more information, see `Using multiple DataSync agents <https://docs.aws.amazon.com/datasync/latest/userguide/do-i-need-datasync-agent.html#multiple-agents>`_ .
4598
4598
  :param mount_options: Specifies the options that DataSync can use to mount your NFS file server.
4599
- :param server_hostname: Specifies the Domain Name System (DNS) name or IP version 4 address of the NFS file server that your DataSync agent connects to.
4599
+ :param server_hostname: Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.
4600
4600
  :param subdirectory: Specifies the export path in your NFS file server that you want DataSync to mount. This path (or a subdirectory of the path) is where DataSync transfers data to or from. For information on configuring an export for DataSync, see `Accessing NFS file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-nfs-location.html#accessing-nfs>`_ .
4601
4601
  :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
4602
4602
 
@@ -4672,7 +4672,7 @@ class CfnLocationNFSProps:
4672
4672
 
4673
4673
  @builtins.property
4674
4674
  def server_hostname(self) -> typing.Optional[builtins.str]:
4675
- '''Specifies the Domain Name System (DNS) name or IP version 4 address of the NFS file server that your DataSync agent connects to.
4675
+ '''Specifies the DNS name or IP version 4 address of the NFS file server that your DataSync agent connects to.
4676
4676
 
4677
4677
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationnfs.html#cfn-datasync-locationnfs-serverhostname
4678
4678
  '''
@@ -4776,7 +4776,7 @@ class CfnLocationObjectStorage(
4776
4776
  :param bucket_name: Specifies the name of the object storage bucket involved in the transfer.
4777
4777
  :param secret_key: Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
4778
4778
  :param server_certificate: Specifies a certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA). You must specify a single ``.pem`` file with a full certificate chain (for example, ``file:///home/user/.ssh/object_storage_certificates.pem`` ). The certificate chain might include: - The object storage system's certificate - All intermediate certificates (if there are any) - The root certificate of the signing CA You can concatenate your certificates into a ``.pem`` file (which can be up to 32768 bytes before base64 encoding). The following example ``cat`` command creates an ``object_storage_certificates.pem`` file that includes three certificates: ``cat object_server_certificate.pem intermediate_certificate.pem ca_root_certificate.pem > object_storage_certificates.pem`` To use this parameter, configure ``ServerProtocol`` to ``HTTPS`` .
4779
- :param server_hostname: Specifies the domain name or IP address of the object storage server. A DataSync agent uses this hostname to mount the object storage server in a network.
4779
+ :param server_hostname: Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.
4780
4780
  :param server_port: Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
4781
4781
  :param server_protocol: Specifies the protocol that your object storage server uses to communicate.
4782
4782
  :param subdirectory: Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
@@ -4928,7 +4928,7 @@ class CfnLocationObjectStorage(
4928
4928
  @builtins.property
4929
4929
  @jsii.member(jsii_name="serverHostname")
4930
4930
  def server_hostname(self) -> typing.Optional[builtins.str]:
4931
- '''Specifies the domain name or IP address of the object storage server.'''
4931
+ '''Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.'''
4932
4932
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverHostname"))
4933
4933
 
4934
4934
  @server_hostname.setter
@@ -5029,7 +5029,7 @@ class CfnLocationObjectStorageProps:
5029
5029
  :param bucket_name: Specifies the name of the object storage bucket involved in the transfer.
5030
5030
  :param secret_key: Specifies the secret key (for example, a password) if credentials are required to authenticate with the object storage server.
5031
5031
  :param server_certificate: Specifies a certificate chain for DataSync to authenticate with your object storage system if the system uses a private or self-signed certificate authority (CA). You must specify a single ``.pem`` file with a full certificate chain (for example, ``file:///home/user/.ssh/object_storage_certificates.pem`` ). The certificate chain might include: - The object storage system's certificate - All intermediate certificates (if there are any) - The root certificate of the signing CA You can concatenate your certificates into a ``.pem`` file (which can be up to 32768 bytes before base64 encoding). The following example ``cat`` command creates an ``object_storage_certificates.pem`` file that includes three certificates: ``cat object_server_certificate.pem intermediate_certificate.pem ca_root_certificate.pem > object_storage_certificates.pem`` To use this parameter, configure ``ServerProtocol`` to ``HTTPS`` .
5032
- :param server_hostname: Specifies the domain name or IP address of the object storage server. A DataSync agent uses this hostname to mount the object storage server in a network.
5032
+ :param server_hostname: Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.
5033
5033
  :param server_port: Specifies the port that your object storage server accepts inbound network traffic on (for example, port 443).
5034
5034
  :param server_protocol: Specifies the protocol that your object storage server uses to communicate.
5035
5035
  :param subdirectory: Specifies the object prefix for your object storage server. If this is a source location, DataSync only copies objects with this prefix. If this is a destination location, DataSync writes all objects with this prefix.
@@ -5158,9 +5158,7 @@ class CfnLocationObjectStorageProps:
5158
5158
 
5159
5159
  @builtins.property
5160
5160
  def server_hostname(self) -> typing.Optional[builtins.str]:
5161
- '''Specifies the domain name or IP address of the object storage server.
5162
-
5163
- A DataSync agent uses this hostname to mount the object storage server in a network.
5161
+ '''Specifies the domain name or IP version 4 (IPv4) address of the object storage server that your DataSync agent connects to.
5164
5162
 
5165
5163
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datasync-locationobjectstorage.html#cfn-datasync-locationobjectstorage-serverhostname
5166
5164
  '''
@@ -5697,7 +5695,7 @@ class CfnLocationSMB(
5697
5695
  :param kerberos_principal: Specifies a Kerberos prinicpal, which is an identity in your Kerberos realm that has permission to access the files, folders, and file metadata in your SMB file server. A Kerberos principal might look like ``HOST/kerberosuser@MYDOMAIN.ORG`` . Principal names are case sensitive. Your DataSync task execution will fail if the principal that you specify for this parameter doesn’t exactly match the principal that you use to create the keytab file.
5698
5696
  :param mount_options: Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.
5699
5697
  :param password: Specifies the password of the user who can mount your SMB file server and has permission to access the files and folders involved in your transfer. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` .
5700
- :param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent will mount. Remember the following when configuring this parameter: - You can't specify an IP version 6 (IPv6) address. - If you're using Kerberos authentication, you must specify a domain name.
5698
+ :param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to. Remember the following when configuring this parameter: - You can't specify an IP version 6 (IPv6) address. - If you're using Kerberos authentication, you must specify a domain name.
5701
5699
  :param subdirectory: Specifies the name of the share exported by your SMB file server where DataSync will read or write data. You can include a subdirectory in the share path (for example, ``/path/to/subdirectory`` ). Make sure that other SMB clients in your network can also mount this path. To copy all data in the subdirectory, DataSync must be able to mount the SMB share and access all of its data. For more information, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
5702
5700
  :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
5703
5701
  :param user: Specifies the user that can mount and access the files, folders, and file metadata in your SMB file server. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` . For information about choosing a user with the right level of access for your transfer, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
@@ -5911,7 +5909,7 @@ class CfnLocationSMB(
5911
5909
  @builtins.property
5912
5910
  @jsii.member(jsii_name="serverHostname")
5913
5911
  def server_hostname(self) -> typing.Optional[builtins.str]:
5914
- '''Specifies the domain name or IP address of the SMB file server that your DataSync agent will mount.'''
5912
+ '''Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to.'''
5915
5913
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "serverHostname"))
5916
5914
 
5917
5915
  @server_hostname.setter
@@ -6077,7 +6075,7 @@ class CfnLocationSMBProps:
6077
6075
  :param kerberos_principal: Specifies a Kerberos prinicpal, which is an identity in your Kerberos realm that has permission to access the files, folders, and file metadata in your SMB file server. A Kerberos principal might look like ``HOST/kerberosuser@MYDOMAIN.ORG`` . Principal names are case sensitive. Your DataSync task execution will fail if the principal that you specify for this parameter doesn’t exactly match the principal that you use to create the keytab file.
6078
6076
  :param mount_options: Specifies the version of the SMB protocol that DataSync uses to access your SMB file server.
6079
6077
  :param password: Specifies the password of the user who can mount your SMB file server and has permission to access the files and folders involved in your transfer. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` .
6080
- :param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent will mount. Remember the following when configuring this parameter: - You can't specify an IP version 6 (IPv6) address. - If you're using Kerberos authentication, you must specify a domain name.
6078
+ :param server_hostname: Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to. Remember the following when configuring this parameter: - You can't specify an IP version 6 (IPv6) address. - If you're using Kerberos authentication, you must specify a domain name.
6081
6079
  :param subdirectory: Specifies the name of the share exported by your SMB file server where DataSync will read or write data. You can include a subdirectory in the share path (for example, ``/path/to/subdirectory`` ). Make sure that other SMB clients in your network can also mount this path. To copy all data in the subdirectory, DataSync must be able to mount the SMB share and access all of its data. For more information, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
6082
6080
  :param tags: Specifies labels that help you categorize, filter, and search for your AWS resources. We recommend creating at least a name tag for your location.
6083
6081
  :param user: Specifies the user that can mount and access the files, folders, and file metadata in your SMB file server. This parameter applies only if ``AuthenticationType`` is set to ``NTLM`` . For information about choosing a user with the right level of access for your transfer, see `Providing DataSync access to SMB file servers <https://docs.aws.amazon.com/datasync/latest/userguide/create-smb-location.html#configuring-smb-permissions>`_ .
@@ -6269,7 +6267,7 @@ class CfnLocationSMBProps:
6269
6267
 
6270
6268
  @builtins.property
6271
6269
  def server_hostname(self) -> typing.Optional[builtins.str]:
6272
- '''Specifies the domain name or IP address of the SMB file server that your DataSync agent will mount.
6270
+ '''Specifies the domain name or IP address of the SMB file server that your DataSync agent connects to.
6273
6271
 
6274
6272
  Remember the following when configuring this parameter:
6275
6273