pulumi-aws-native 1.38.0a1760940079__py3-none-any.whl → 1.38.0a1762272920__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 pulumi-aws-native might be problematic. Click here for more details.

Files changed (187) hide show
  1. pulumi_aws_native/__init__.py +33 -1
  2. pulumi_aws_native/_enums.py +4 -0
  3. pulumi_aws_native/amazonmq/_enums.py +4 -12
  4. pulumi_aws_native/amazonmq/_inputs.py +21 -91
  5. pulumi_aws_native/amazonmq/broker.py +56 -67
  6. pulumi_aws_native/amazonmq/get_broker.py +6 -13
  7. pulumi_aws_native/amazonmq/outputs.py +14 -54
  8. pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
  9. pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
  10. pulumi_aws_native/appstream/get_image_builder.py +0 -4
  11. pulumi_aws_native/appstream/image_builder.py +0 -16
  12. pulumi_aws_native/aps/__init__.py +2 -0
  13. pulumi_aws_native/aps/_inputs.py +290 -0
  14. pulumi_aws_native/aps/anomaly_detector.py +318 -0
  15. pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
  16. pulumi_aws_native/aps/outputs.py +229 -0
  17. pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
  18. pulumi_aws_native/arcregionswitch/plan.py +0 -3
  19. pulumi_aws_native/batch/_inputs.py +34 -0
  20. pulumi_aws_native/batch/job_definition.py +29 -0
  21. pulumi_aws_native/batch/outputs.py +37 -0
  22. pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
  23. pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
  24. pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
  25. pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
  26. pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
  27. pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
  28. pulumi_aws_native/ce/_enums.py +3 -0
  29. pulumi_aws_native/cleanrooms/configured_table.py +4 -4
  30. pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
  31. pulumi_aws_native/cloudfront/_inputs.py +14 -1
  32. pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
  33. pulumi_aws_native/cloudfront/outputs.py +11 -1
  34. pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
  35. pulumi_aws_native/cognito/__init__.py +2 -0
  36. pulumi_aws_native/cognito/_enums.py +12 -0
  37. pulumi_aws_native/cognito/get_terms.py +117 -0
  38. pulumi_aws_native/cognito/terms.py +236 -0
  39. pulumi_aws_native/connect/_enums.py +68 -0
  40. pulumi_aws_native/connect/_inputs.py +581 -1
  41. pulumi_aws_native/connect/email_address.py +31 -0
  42. pulumi_aws_native/connect/get_email_address.py +16 -1
  43. pulumi_aws_native/connect/outputs.py +473 -3
  44. pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
  45. pulumi_aws_native/connectcampaignsv2/_inputs.py +127 -0
  46. pulumi_aws_native/connectcampaignsv2/outputs.py +118 -0
  47. pulumi_aws_native/datazone/_inputs.py +81 -0
  48. pulumi_aws_native/datazone/connection.py +83 -26
  49. pulumi_aws_native/datazone/outputs.py +84 -0
  50. pulumi_aws_native/ec2/__init__.py +2 -0
  51. pulumi_aws_native/ec2/_enums.py +19 -0
  52. pulumi_aws_native/ec2/_inputs.py +15 -12
  53. pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
  54. pulumi_aws_native/ec2/capacity_reservation.py +6 -6
  55. pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
  56. pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
  57. pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
  58. pulumi_aws_native/ec2/get_volume.py +37 -15
  59. pulumi_aws_native/ec2/nat_gateway.py +11 -0
  60. pulumi_aws_native/ec2/outputs.py +10 -8
  61. pulumi_aws_native/ec2/volume.py +115 -74
  62. pulumi_aws_native/ecr/_inputs.py +2 -2
  63. pulumi_aws_native/ecr/get_repository.py +3 -2
  64. pulumi_aws_native/ecr/outputs.py +2 -2
  65. pulumi_aws_native/ecr/repository.py +12 -8
  66. pulumi_aws_native/ecs/_enums.py +24 -0
  67. pulumi_aws_native/ecs/_inputs.py +230 -23
  68. pulumi_aws_native/ecs/outputs.py +195 -15
  69. pulumi_aws_native/ecs/service.py +4 -0
  70. pulumi_aws_native/eks/_enums.py +11 -0
  71. pulumi_aws_native/eks/_inputs.py +199 -1
  72. pulumi_aws_native/eks/get_nodegroup.py +1 -0
  73. pulumi_aws_native/eks/nodegroup.py +1 -0
  74. pulumi_aws_native/eks/outputs.py +169 -1
  75. pulumi_aws_native/elasticloadbalancingv2/_inputs.py +213 -34
  76. pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
  77. pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
  78. pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
  79. pulumi_aws_native/elasticloadbalancingv2/outputs.py +187 -24
  80. pulumi_aws_native/events/__init__.py +2 -0
  81. pulumi_aws_native/events/_inputs.py +78 -0
  82. pulumi_aws_native/events/event_bus_policy.py +275 -0
  83. pulumi_aws_native/events/get_event_bus_policy.py +85 -0
  84. pulumi_aws_native/events/outputs.py +48 -0
  85. pulumi_aws_native/gameliftstreams/application.py +4 -4
  86. pulumi_aws_native/glue/__init__.py +2 -0
  87. pulumi_aws_native/glue/_inputs.py +134 -0
  88. pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
  89. pulumi_aws_native/glue/integration_resource_property.py +229 -0
  90. pulumi_aws_native/glue/outputs.py +122 -0
  91. pulumi_aws_native/imagebuilder/_inputs.py +95 -0
  92. pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
  93. pulumi_aws_native/imagebuilder/image.py +58 -0
  94. pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
  95. pulumi_aws_native/imagebuilder/outputs.py +95 -0
  96. pulumi_aws_native/kendra/_inputs.py +21 -21
  97. pulumi_aws_native/kendra/outputs.py +14 -14
  98. pulumi_aws_native/lambda_/permission.py +4 -4
  99. pulumi_aws_native/mediapackagev2/_enums.py +15 -0
  100. pulumi_aws_native/mediapackagev2/_inputs.py +103 -0
  101. pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
  102. pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
  103. pulumi_aws_native/mediapackagev2/outputs.py +88 -0
  104. pulumi_aws_native/neptune/db_instance.py +29 -0
  105. pulumi_aws_native/neptune/get_db_instance.py +15 -1
  106. pulumi_aws_native/networkfirewall/_enums.py +2 -0
  107. pulumi_aws_native/networkfirewall/_inputs.py +20 -0
  108. pulumi_aws_native/networkfirewall/firewall.py +10 -0
  109. pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
  110. pulumi_aws_native/networkfirewall/outputs.py +14 -0
  111. pulumi_aws_native/observabilityadmin/_enums.py +9 -0
  112. pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
  113. pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
  114. pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
  115. pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
  116. pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
  117. pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
  118. pulumi_aws_native/observabilityadmin/outputs.py +150 -0
  119. pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
  120. pulumi_aws_native/organizations/_enums.py +13 -0
  121. pulumi_aws_native/organizations/account.py +10 -0
  122. pulumi_aws_native/organizations/get_account.py +15 -1
  123. pulumi_aws_native/osis/_inputs.py +24 -0
  124. pulumi_aws_native/osis/get_pipeline.py +26 -1
  125. pulumi_aws_native/osis/outputs.py +13 -0
  126. pulumi_aws_native/osis/pipeline.py +50 -0
  127. pulumi_aws_native/pulumi-plugin.json +1 -1
  128. pulumi_aws_native/qbusiness/_inputs.py +3 -3
  129. pulumi_aws_native/qbusiness/application.py +4 -4
  130. pulumi_aws_native/qbusiness/outputs.py +2 -2
  131. pulumi_aws_native/quicksight/_enums.py +1 -1
  132. pulumi_aws_native/quicksight/_inputs.py +12 -12
  133. pulumi_aws_native/quicksight/outputs.py +8 -8
  134. pulumi_aws_native/rds/db_cluster.py +24 -40
  135. pulumi_aws_native/route53/_inputs.py +21 -3
  136. pulumi_aws_native/route53/outputs.py +14 -2
  137. pulumi_aws_native/rtbfabric/__init__.py +17 -0
  138. pulumi_aws_native/rtbfabric/_enums.py +89 -0
  139. pulumi_aws_native/rtbfabric/_inputs.py +390 -0
  140. pulumi_aws_native/rtbfabric/get_link.py +199 -0
  141. pulumi_aws_native/rtbfabric/get_requester_gateway.py +217 -0
  142. pulumi_aws_native/rtbfabric/get_responder_gateway.py +255 -0
  143. pulumi_aws_native/rtbfabric/link.py +344 -0
  144. pulumi_aws_native/rtbfabric/outputs.py +363 -0
  145. pulumi_aws_native/rtbfabric/requester_gateway.py +303 -0
  146. pulumi_aws_native/rtbfabric/responder_gateway.py +431 -0
  147. pulumi_aws_native/s3/_enums.py +1 -1
  148. pulumi_aws_native/s3/_inputs.py +11 -5
  149. pulumi_aws_native/s3/access_grants_location.py +15 -13
  150. pulumi_aws_native/s3/outputs.py +10 -4
  151. pulumi_aws_native/s3vectors/__init__.py +17 -0
  152. pulumi_aws_native/s3vectors/_enums.py +39 -0
  153. pulumi_aws_native/s3vectors/_inputs.py +138 -0
  154. pulumi_aws_native/s3vectors/get_index.py +99 -0
  155. pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
  156. pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
  157. pulumi_aws_native/s3vectors/index.py +367 -0
  158. pulumi_aws_native/s3vectors/outputs.py +129 -0
  159. pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
  160. pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
  161. pulumi_aws_native/sagemaker/_enums.py +12 -171
  162. pulumi_aws_native/sagemaker/_inputs.py +81 -5
  163. pulumi_aws_native/sagemaker/cluster.py +21 -0
  164. pulumi_aws_native/sagemaker/get_cluster.py +15 -4
  165. pulumi_aws_native/sagemaker/outputs.py +67 -3
  166. pulumi_aws_native/ssm/_inputs.py +15 -3
  167. pulumi_aws_native/ssm/outputs.py +10 -2
  168. pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
  169. pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
  170. pulumi_aws_native/sso/_enums.py +1 -1
  171. pulumi_aws_native/sso/assignment.py +8 -8
  172. pulumi_aws_native/synthetics/_inputs.py +52 -12
  173. pulumi_aws_native/synthetics/outputs.py +35 -8
  174. pulumi_aws_native/transfer/_enums.py +15 -0
  175. pulumi_aws_native/transfer/_inputs.py +95 -3
  176. pulumi_aws_native/transfer/connector.py +86 -19
  177. pulumi_aws_native/transfer/get_connector.py +43 -1
  178. pulumi_aws_native/transfer/outputs.py +92 -2
  179. pulumi_aws_native/wafv2/_inputs.py +72 -0
  180. pulumi_aws_native/wafv2/get_web_acl.py +15 -1
  181. pulumi_aws_native/wafv2/outputs.py +45 -0
  182. pulumi_aws_native/wafv2/web_acl.py +29 -0
  183. pulumi_aws_native/wisdom/_enums.py +4 -0
  184. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
  185. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +187 -155
  186. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
  187. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
@@ -23,9 +23,11 @@ __all__ = ['ImageArgs', 'Image']
23
23
  class ImageArgs:
24
24
  def __init__(__self__, *,
25
25
  container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
26
+ deletion_settings: Optional[pulumi.Input['ImageDeletionSettingsArgs']] = None,
26
27
  distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
27
28
  enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
28
29
  execution_role: Optional[pulumi.Input[_builtins.str]] = None,
30
+ image_pipeline_execution_settings: Optional[pulumi.Input['ImagePipelineExecutionSettingsArgs']] = None,
29
31
  image_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
30
32
  image_scanning_configuration: Optional[pulumi.Input['ImageScanningConfigurationArgs']] = None,
31
33
  image_tests_configuration: Optional[pulumi.Input['ImageTestsConfigurationArgs']] = None,
@@ -36,9 +38,11 @@ class ImageArgs:
36
38
  """
37
39
  The set of arguments for constructing a Image resource.
38
40
  :param pulumi.Input[_builtins.str] container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
41
+ :param pulumi.Input['ImageDeletionSettingsArgs'] deletion_settings: The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
39
42
  :param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
40
43
  :param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
41
44
  :param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
45
+ :param pulumi.Input['ImagePipelineExecutionSettingsArgs'] image_pipeline_execution_settings: The image pipeline execution settings of the image.
42
46
  :param pulumi.Input[_builtins.str] image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
43
47
  :param pulumi.Input['ImageScanningConfigurationArgs'] image_scanning_configuration: Contains settings for vulnerability scans.
44
48
  :param pulumi.Input['ImageTestsConfigurationArgs'] image_tests_configuration: The image tests configuration used when creating this image.
@@ -49,12 +53,16 @@ class ImageArgs:
49
53
  """
50
54
  if container_recipe_arn is not None:
51
55
  pulumi.set(__self__, "container_recipe_arn", container_recipe_arn)
56
+ if deletion_settings is not None:
57
+ pulumi.set(__self__, "deletion_settings", deletion_settings)
52
58
  if distribution_configuration_arn is not None:
53
59
  pulumi.set(__self__, "distribution_configuration_arn", distribution_configuration_arn)
54
60
  if enhanced_image_metadata_enabled is not None:
55
61
  pulumi.set(__self__, "enhanced_image_metadata_enabled", enhanced_image_metadata_enabled)
56
62
  if execution_role is not None:
57
63
  pulumi.set(__self__, "execution_role", execution_role)
64
+ if image_pipeline_execution_settings is not None:
65
+ pulumi.set(__self__, "image_pipeline_execution_settings", image_pipeline_execution_settings)
58
66
  if image_recipe_arn is not None:
59
67
  pulumi.set(__self__, "image_recipe_arn", image_recipe_arn)
60
68
  if image_scanning_configuration is not None:
@@ -82,6 +90,18 @@ class ImageArgs:
82
90
  def container_recipe_arn(self, value: Optional[pulumi.Input[_builtins.str]]):
83
91
  pulumi.set(self, "container_recipe_arn", value)
84
92
 
93
+ @_builtins.property
94
+ @pulumi.getter(name="deletionSettings")
95
+ def deletion_settings(self) -> Optional[pulumi.Input['ImageDeletionSettingsArgs']]:
96
+ """
97
+ The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
98
+ """
99
+ return pulumi.get(self, "deletion_settings")
100
+
101
+ @deletion_settings.setter
102
+ def deletion_settings(self, value: Optional[pulumi.Input['ImageDeletionSettingsArgs']]):
103
+ pulumi.set(self, "deletion_settings", value)
104
+
85
105
  @_builtins.property
86
106
  @pulumi.getter(name="distributionConfigurationArn")
87
107
  def distribution_configuration_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -118,6 +138,18 @@ class ImageArgs:
118
138
  def execution_role(self, value: Optional[pulumi.Input[_builtins.str]]):
119
139
  pulumi.set(self, "execution_role", value)
120
140
 
141
+ @_builtins.property
142
+ @pulumi.getter(name="imagePipelineExecutionSettings")
143
+ def image_pipeline_execution_settings(self) -> Optional[pulumi.Input['ImagePipelineExecutionSettingsArgs']]:
144
+ """
145
+ The image pipeline execution settings of the image.
146
+ """
147
+ return pulumi.get(self, "image_pipeline_execution_settings")
148
+
149
+ @image_pipeline_execution_settings.setter
150
+ def image_pipeline_execution_settings(self, value: Optional[pulumi.Input['ImagePipelineExecutionSettingsArgs']]):
151
+ pulumi.set(self, "image_pipeline_execution_settings", value)
152
+
121
153
  @_builtins.property
122
154
  @pulumi.getter(name="imageRecipeArn")
123
155
  def image_recipe_arn(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -210,9 +242,11 @@ class Image(pulumi.CustomResource):
210
242
  resource_name: str,
211
243
  opts: Optional[pulumi.ResourceOptions] = None,
212
244
  container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
245
+ deletion_settings: Optional[pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']]] = None,
213
246
  distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
214
247
  enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
215
248
  execution_role: Optional[pulumi.Input[_builtins.str]] = None,
249
+ image_pipeline_execution_settings: Optional[pulumi.Input[Union['ImagePipelineExecutionSettingsArgs', 'ImagePipelineExecutionSettingsArgsDict']]] = None,
216
250
  image_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
217
251
  image_scanning_configuration: Optional[pulumi.Input[Union['ImageScanningConfigurationArgs', 'ImageScanningConfigurationArgsDict']]] = None,
218
252
  image_tests_configuration: Optional[pulumi.Input[Union['ImageTestsConfigurationArgs', 'ImageTestsConfigurationArgsDict']]] = None,
@@ -227,9 +261,11 @@ class Image(pulumi.CustomResource):
227
261
  :param str resource_name: The name of the resource.
228
262
  :param pulumi.ResourceOptions opts: Options for the resource.
229
263
  :param pulumi.Input[_builtins.str] container_recipe_arn: The Amazon Resource Name (ARN) of the container recipe that defines how images are configured and tested.
264
+ :param pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']] deletion_settings: The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
230
265
  :param pulumi.Input[_builtins.str] distribution_configuration_arn: The Amazon Resource Name (ARN) of the distribution configuration.
231
266
  :param pulumi.Input[_builtins.bool] enhanced_image_metadata_enabled: Collects additional information about the image being created, including the operating system (OS) version and package list.
232
267
  :param pulumi.Input[_builtins.str] execution_role: The execution role name/ARN for the image build, if provided
268
+ :param pulumi.Input[Union['ImagePipelineExecutionSettingsArgs', 'ImagePipelineExecutionSettingsArgsDict']] image_pipeline_execution_settings: The image pipeline execution settings of the image.
233
269
  :param pulumi.Input[_builtins.str] image_recipe_arn: The Amazon Resource Name (ARN) of the image recipe that defines how images are configured, tested, and assessed.
234
270
  :param pulumi.Input[Union['ImageScanningConfigurationArgs', 'ImageScanningConfigurationArgsDict']] image_scanning_configuration: Contains settings for vulnerability scans.
235
271
  :param pulumi.Input[Union['ImageTestsConfigurationArgs', 'ImageTestsConfigurationArgsDict']] image_tests_configuration: The image tests configuration used when creating this image.
@@ -263,9 +299,11 @@ class Image(pulumi.CustomResource):
263
299
  resource_name: str,
264
300
  opts: Optional[pulumi.ResourceOptions] = None,
265
301
  container_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
302
+ deletion_settings: Optional[pulumi.Input[Union['ImageDeletionSettingsArgs', 'ImageDeletionSettingsArgsDict']]] = None,
266
303
  distribution_configuration_arn: Optional[pulumi.Input[_builtins.str]] = None,
267
304
  enhanced_image_metadata_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
268
305
  execution_role: Optional[pulumi.Input[_builtins.str]] = None,
306
+ image_pipeline_execution_settings: Optional[pulumi.Input[Union['ImagePipelineExecutionSettingsArgs', 'ImagePipelineExecutionSettingsArgsDict']]] = None,
269
307
  image_recipe_arn: Optional[pulumi.Input[_builtins.str]] = None,
270
308
  image_scanning_configuration: Optional[pulumi.Input[Union['ImageScanningConfigurationArgs', 'ImageScanningConfigurationArgsDict']]] = None,
271
309
  image_tests_configuration: Optional[pulumi.Input[Union['ImageTestsConfigurationArgs', 'ImageTestsConfigurationArgsDict']]] = None,
@@ -283,9 +321,11 @@ class Image(pulumi.CustomResource):
283
321
  __props__ = ImageArgs.__new__(ImageArgs)
284
322
 
285
323
  __props__.__dict__["container_recipe_arn"] = container_recipe_arn
324
+ __props__.__dict__["deletion_settings"] = deletion_settings
286
325
  __props__.__dict__["distribution_configuration_arn"] = distribution_configuration_arn
287
326
  __props__.__dict__["enhanced_image_metadata_enabled"] = enhanced_image_metadata_enabled
288
327
  __props__.__dict__["execution_role"] = execution_role
328
+ __props__.__dict__["image_pipeline_execution_settings"] = image_pipeline_execution_settings
289
329
  __props__.__dict__["image_recipe_arn"] = image_recipe_arn
290
330
  __props__.__dict__["image_scanning_configuration"] = image_scanning_configuration
291
331
  __props__.__dict__["image_tests_configuration"] = image_tests_configuration
@@ -324,10 +364,12 @@ class Image(pulumi.CustomResource):
324
364
 
325
365
  __props__.__dict__["arn"] = None
326
366
  __props__.__dict__["container_recipe_arn"] = None
367
+ __props__.__dict__["deletion_settings"] = None
327
368
  __props__.__dict__["distribution_configuration_arn"] = None
328
369
  __props__.__dict__["enhanced_image_metadata_enabled"] = None
329
370
  __props__.__dict__["execution_role"] = None
330
371
  __props__.__dict__["image_id"] = None
372
+ __props__.__dict__["image_pipeline_execution_settings"] = None
331
373
  __props__.__dict__["image_recipe_arn"] = None
332
374
  __props__.__dict__["image_scanning_configuration"] = None
333
375
  __props__.__dict__["image_tests_configuration"] = None
@@ -356,6 +398,14 @@ class Image(pulumi.CustomResource):
356
398
  """
357
399
  return pulumi.get(self, "container_recipe_arn")
358
400
 
401
+ @_builtins.property
402
+ @pulumi.getter(name="deletionSettings")
403
+ def deletion_settings(self) -> pulumi.Output[Optional['outputs.ImageDeletionSettings']]:
404
+ """
405
+ The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
406
+ """
407
+ return pulumi.get(self, "deletion_settings")
408
+
359
409
  @_builtins.property
360
410
  @pulumi.getter(name="distributionConfigurationArn")
361
411
  def distribution_configuration_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -388,6 +438,14 @@ class Image(pulumi.CustomResource):
388
438
  """
389
439
  return pulumi.get(self, "image_id")
390
440
 
441
+ @_builtins.property
442
+ @pulumi.getter(name="imagePipelineExecutionSettings")
443
+ def image_pipeline_execution_settings(self) -> pulumi.Output[Optional['outputs.ImagePipelineExecutionSettings']]:
444
+ """
445
+ The image pipeline execution settings of the image.
446
+ """
447
+ return pulumi.get(self, "image_pipeline_execution_settings")
448
+
391
449
  @_builtins.property
392
450
  @pulumi.getter(name="imageRecipeArn")
393
451
  def image_recipe_arn(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -374,6 +374,7 @@ class ImagePipeline(pulumi.CustomResource):
374
374
  __props__.__dict__["tags"] = tags
375
375
  __props__.__dict__["workflows"] = workflows
376
376
  __props__.__dict__["arn"] = None
377
+ __props__.__dict__["deployment_id"] = None
377
378
  replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["name"])
378
379
  opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
379
380
  super(ImagePipeline, __self__).__init__(
@@ -400,6 +401,7 @@ class ImagePipeline(pulumi.CustomResource):
400
401
 
401
402
  __props__.__dict__["arn"] = None
402
403
  __props__.__dict__["container_recipe_arn"] = None
404
+ __props__.__dict__["deployment_id"] = None
403
405
  __props__.__dict__["description"] = None
404
406
  __props__.__dict__["distribution_configuration_arn"] = None
405
407
  __props__.__dict__["enhanced_image_metadata_enabled"] = None
@@ -432,6 +434,14 @@ class ImagePipeline(pulumi.CustomResource):
432
434
  """
433
435
  return pulumi.get(self, "container_recipe_arn")
434
436
 
437
+ @_builtins.property
438
+ @pulumi.getter(name="deploymentId")
439
+ def deployment_id(self) -> pulumi.Output[_builtins.str]:
440
+ """
441
+ The deployment ID of the pipeline, used for resource create/update triggers.
442
+ """
443
+ return pulumi.get(self, "deployment_id")
444
+
435
445
  @_builtins.property
436
446
  @pulumi.getter
437
447
  def description(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -34,11 +34,13 @@ __all__ = [
34
34
  'DistributionConfigurationLaunchTemplateConfiguration',
35
35
  'DistributionConfigurationSsmParameterConfiguration',
36
36
  'DistributionConfigurationTargetContainerRepository',
37
+ 'ImageDeletionSettings',
37
38
  'ImageEcrConfiguration',
38
39
  'ImageLatestVersion',
39
40
  'ImageLoggingConfiguration',
40
41
  'ImagePipelineAutoDisablePolicy',
41
42
  'ImagePipelineEcrConfiguration',
43
+ 'ImagePipelineExecutionSettings',
42
44
  'ImagePipelineImageScanningConfiguration',
43
45
  'ImagePipelineImageTestsConfiguration',
44
46
  'ImagePipelinePipelineLoggingConfiguration',
@@ -1295,6 +1297,45 @@ class DistributionConfigurationTargetContainerRepository(dict):
1295
1297
  return pulumi.get(self, "service")
1296
1298
 
1297
1299
 
1300
+ @pulumi.output_type
1301
+ class ImageDeletionSettings(dict):
1302
+ """
1303
+ The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
1304
+ """
1305
+ @staticmethod
1306
+ def __key_warning(key: str):
1307
+ suggest = None
1308
+ if key == "executionRole":
1309
+ suggest = "execution_role"
1310
+
1311
+ if suggest:
1312
+ pulumi.log.warn(f"Key '{key}' not found in ImageDeletionSettings. Access the value via the '{suggest}' property getter instead.")
1313
+
1314
+ def __getitem__(self, key: str) -> Any:
1315
+ ImageDeletionSettings.__key_warning(key)
1316
+ return super().__getitem__(key)
1317
+
1318
+ def get(self, key: str, default = None) -> Any:
1319
+ ImageDeletionSettings.__key_warning(key)
1320
+ return super().get(key, default)
1321
+
1322
+ def __init__(__self__, *,
1323
+ execution_role: _builtins.str):
1324
+ """
1325
+ The deletion settings of the image, indicating whether to delete the underlying resources in addition to the image.
1326
+ :param _builtins.str execution_role: The execution role to use for deleting the image, as well as underlying resources.
1327
+ """
1328
+ pulumi.set(__self__, "execution_role", execution_role)
1329
+
1330
+ @_builtins.property
1331
+ @pulumi.getter(name="executionRole")
1332
+ def execution_role(self) -> _builtins.str:
1333
+ """
1334
+ The execution role to use for deleting the image, as well as underlying resources.
1335
+ """
1336
+ return pulumi.get(self, "execution_role")
1337
+
1338
+
1298
1339
  @pulumi.output_type
1299
1340
  class ImageEcrConfiguration(dict):
1300
1341
  """
@@ -1541,6 +1582,60 @@ class ImagePipelineEcrConfiguration(dict):
1541
1582
  return pulumi.get(self, "repository_name")
1542
1583
 
1543
1584
 
1585
+ @pulumi.output_type
1586
+ class ImagePipelineExecutionSettings(dict):
1587
+ """
1588
+ The settings for starting an image pipeline execution.
1589
+ """
1590
+ @staticmethod
1591
+ def __key_warning(key: str):
1592
+ suggest = None
1593
+ if key == "deploymentId":
1594
+ suggest = "deployment_id"
1595
+ elif key == "onUpdate":
1596
+ suggest = "on_update"
1597
+
1598
+ if suggest:
1599
+ pulumi.log.warn(f"Key '{key}' not found in ImagePipelineExecutionSettings. Access the value via the '{suggest}' property getter instead.")
1600
+
1601
+ def __getitem__(self, key: str) -> Any:
1602
+ ImagePipelineExecutionSettings.__key_warning(key)
1603
+ return super().__getitem__(key)
1604
+
1605
+ def get(self, key: str, default = None) -> Any:
1606
+ ImagePipelineExecutionSettings.__key_warning(key)
1607
+ return super().get(key, default)
1608
+
1609
+ def __init__(__self__, *,
1610
+ deployment_id: Optional[_builtins.str] = None,
1611
+ on_update: Optional[_builtins.bool] = None):
1612
+ """
1613
+ The settings for starting an image pipeline execution.
1614
+ :param _builtins.str deployment_id: The deployment ID of the pipeline, used to trigger new image pipeline executions.
1615
+ :param _builtins.bool on_update: Whether to trigger the image pipeline when the pipeline is updated. False by default.
1616
+ """
1617
+ if deployment_id is not None:
1618
+ pulumi.set(__self__, "deployment_id", deployment_id)
1619
+ if on_update is not None:
1620
+ pulumi.set(__self__, "on_update", on_update)
1621
+
1622
+ @_builtins.property
1623
+ @pulumi.getter(name="deploymentId")
1624
+ def deployment_id(self) -> Optional[_builtins.str]:
1625
+ """
1626
+ The deployment ID of the pipeline, used to trigger new image pipeline executions.
1627
+ """
1628
+ return pulumi.get(self, "deployment_id")
1629
+
1630
+ @_builtins.property
1631
+ @pulumi.getter(name="onUpdate")
1632
+ def on_update(self) -> Optional[_builtins.bool]:
1633
+ """
1634
+ Whether to trigger the image pipeline when the pipeline is updated. False by default.
1635
+ """
1636
+ return pulumi.get(self, "on_update")
1637
+
1638
+
1544
1639
  @pulumi.output_type
1545
1640
  class ImagePipelineImageScanningConfiguration(dict):
1546
1641
  """
@@ -364,7 +364,7 @@ if not MYPY:
364
364
  """
365
365
  work_docs_configuration: NotRequired[pulumi.Input['DataSourceWorkDocsConfigurationArgsDict']]
366
366
  """
367
- Provides the configuration information to connect to Amazon WorkDocs as your data source.
367
+ Provides the configuration information to connect to WorkDocs as your data source.
368
368
  """
369
369
  elif False:
370
370
  DataSourceConfigurationArgsDict: TypeAlias = Mapping[str, Any]
@@ -402,7 +402,7 @@ class DataSourceConfigurationArgs:
402
402
  :param pulumi.Input['DataSourceSharePointConfigurationArgs'] share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
403
403
  :param pulumi.Input['DataSourceTemplateConfigurationArgs'] template_configuration: Provides a template for the configuration information to connect to your data source.
404
404
  :param pulumi.Input['DataSourceWebCrawlerConfigurationArgs'] web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
405
- :param pulumi.Input['DataSourceWorkDocsConfigurationArgs'] work_docs_configuration: Provides the configuration information to connect to Amazon WorkDocs as your data source.
405
+ :param pulumi.Input['DataSourceWorkDocsConfigurationArgs'] work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
406
406
  """
407
407
  if confluence_configuration is not None:
408
408
  pulumi.set(__self__, "confluence_configuration", confluence_configuration)
@@ -559,7 +559,7 @@ class DataSourceConfigurationArgs:
559
559
  @pulumi.getter(name="workDocsConfiguration")
560
560
  def work_docs_configuration(self) -> Optional[pulumi.Input['DataSourceWorkDocsConfigurationArgs']]:
561
561
  """
562
- Provides the configuration information to connect to Amazon WorkDocs as your data source.
562
+ Provides the configuration information to connect to WorkDocs as your data source.
563
563
  """
564
564
  return pulumi.get(self, "work_docs_configuration")
565
565
 
@@ -4708,9 +4708,9 @@ if not MYPY:
4708
4708
  class DataSourceWorkDocsConfigurationArgsDict(TypedDict):
4709
4709
  organization_id: pulumi.Input[_builtins.str]
4710
4710
  """
4711
- The identifier of the directory corresponding to your Amazon WorkDocs site repository.
4711
+ The identifier of the directory corresponding to your WorkDocs site repository.
4712
4712
 
4713
- You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your Amazon WorkDocs site directory has an ID, which is the organization ID. You can also set up a new Amazon WorkDocs directory in the AWS Directory Service console and enable a Amazon WorkDocs site for the directory in the Amazon WorkDocs console.
4713
+ You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
4714
4714
  """
4715
4715
  crawl_comments: NotRequired[pulumi.Input[_builtins.bool]]
4716
4716
  """
@@ -4720,19 +4720,19 @@ if not MYPY:
4720
4720
  """
4721
4721
  exclusion_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
4722
4722
  """
4723
- A list of regular expression patterns to exclude certain files in your Amazon WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4723
+ A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4724
4724
  """
4725
4725
  field_mappings: NotRequired[pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgsDict']]]]
4726
4726
  """
4727
- A list of `DataSourceToIndexFieldMapping` objects that map Amazon WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to Amazon WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The Amazon WorkDocs data source field names must exist in your Amazon WorkDocs custom metadata.
4727
+ A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
4728
4728
  """
4729
4729
  inclusion_patterns: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
4730
4730
  """
4731
- A list of regular expression patterns to include certain files in your Amazon WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4731
+ A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4732
4732
  """
4733
4733
  use_change_log: NotRequired[pulumi.Input[_builtins.bool]]
4734
4734
  """
4735
- `TRUE` to use the Amazon WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in Amazon WorkDocs.
4735
+ `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
4736
4736
  """
4737
4737
  elif False:
4738
4738
  DataSourceWorkDocsConfigurationArgsDict: TypeAlias = Mapping[str, Any]
@@ -4747,16 +4747,16 @@ class DataSourceWorkDocsConfigurationArgs:
4747
4747
  inclusion_patterns: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
4748
4748
  use_change_log: Optional[pulumi.Input[_builtins.bool]] = None):
4749
4749
  """
4750
- :param pulumi.Input[_builtins.str] organization_id: The identifier of the directory corresponding to your Amazon WorkDocs site repository.
4750
+ :param pulumi.Input[_builtins.str] organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
4751
4751
 
4752
- You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your Amazon WorkDocs site directory has an ID, which is the organization ID. You can also set up a new Amazon WorkDocs directory in the AWS Directory Service console and enable a Amazon WorkDocs site for the directory in the Amazon WorkDocs console.
4752
+ You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
4753
4753
  :param pulumi.Input[_builtins.bool] crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
4754
4754
 
4755
4755
  The default is set to `FALSE` .
4756
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclusion_patterns: A list of regular expression patterns to exclude certain files in your Amazon WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4757
- :param pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map Amazon WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to Amazon WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The Amazon WorkDocs data source field names must exist in your Amazon WorkDocs custom metadata.
4758
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] inclusion_patterns: A list of regular expression patterns to include certain files in your Amazon WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4759
- :param pulumi.Input[_builtins.bool] use_change_log: `TRUE` to use the Amazon WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in Amazon WorkDocs.
4756
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4757
+ :param pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
4758
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4759
+ :param pulumi.Input[_builtins.bool] use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
4760
4760
  """
4761
4761
  pulumi.set(__self__, "organization_id", organization_id)
4762
4762
  if crawl_comments is not None:
@@ -4774,9 +4774,9 @@ class DataSourceWorkDocsConfigurationArgs:
4774
4774
  @pulumi.getter(name="organizationId")
4775
4775
  def organization_id(self) -> pulumi.Input[_builtins.str]:
4776
4776
  """
4777
- The identifier of the directory corresponding to your Amazon WorkDocs site repository.
4777
+ The identifier of the directory corresponding to your WorkDocs site repository.
4778
4778
 
4779
- You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your Amazon WorkDocs site directory has an ID, which is the organization ID. You can also set up a new Amazon WorkDocs directory in the AWS Directory Service console and enable a Amazon WorkDocs site for the directory in the Amazon WorkDocs console.
4779
+ You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
4780
4780
  """
4781
4781
  return pulumi.get(self, "organization_id")
4782
4782
 
@@ -4802,7 +4802,7 @@ class DataSourceWorkDocsConfigurationArgs:
4802
4802
  @pulumi.getter(name="exclusionPatterns")
4803
4803
  def exclusion_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
4804
4804
  """
4805
- A list of regular expression patterns to exclude certain files in your Amazon WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4805
+ A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4806
4806
  """
4807
4807
  return pulumi.get(self, "exclusion_patterns")
4808
4808
 
@@ -4814,7 +4814,7 @@ class DataSourceWorkDocsConfigurationArgs:
4814
4814
  @pulumi.getter(name="fieldMappings")
4815
4815
  def field_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DataSourceToIndexFieldMappingArgs']]]]:
4816
4816
  """
4817
- A list of `DataSourceToIndexFieldMapping` objects that map Amazon WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to Amazon WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The Amazon WorkDocs data source field names must exist in your Amazon WorkDocs custom metadata.
4817
+ A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
4818
4818
  """
4819
4819
  return pulumi.get(self, "field_mappings")
4820
4820
 
@@ -4826,7 +4826,7 @@ class DataSourceWorkDocsConfigurationArgs:
4826
4826
  @pulumi.getter(name="inclusionPatterns")
4827
4827
  def inclusion_patterns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
4828
4828
  """
4829
- A list of regular expression patterns to include certain files in your Amazon WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4829
+ A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
4830
4830
  """
4831
4831
  return pulumi.get(self, "inclusion_patterns")
4832
4832
 
@@ -4838,7 +4838,7 @@ class DataSourceWorkDocsConfigurationArgs:
4838
4838
  @pulumi.getter(name="useChangeLog")
4839
4839
  def use_change_log(self) -> Optional[pulumi.Input[_builtins.bool]]:
4840
4840
  """
4841
- `TRUE` to use the Amazon WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in Amazon WorkDocs.
4841
+ `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
4842
4842
  """
4843
4843
  return pulumi.get(self, "use_change_log")
4844
4844
 
@@ -309,7 +309,7 @@ class DataSourceConfiguration(dict):
309
309
  :param 'DataSourceSharePointConfiguration' share_point_configuration: Provides the configuration information to connect to Microsoft SharePoint as your data source.
310
310
  :param 'DataSourceTemplateConfiguration' template_configuration: Provides a template for the configuration information to connect to your data source.
311
311
  :param 'DataSourceWebCrawlerConfiguration' web_crawler_configuration: Provides the configuration information required for Amazon Kendra Web Crawler.
312
- :param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to Amazon WorkDocs as your data source.
312
+ :param 'DataSourceWorkDocsConfiguration' work_docs_configuration: Provides the configuration information to connect to WorkDocs as your data source.
313
313
  """
314
314
  if confluence_configuration is not None:
315
315
  pulumi.set(__self__, "confluence_configuration", confluence_configuration)
@@ -426,7 +426,7 @@ class DataSourceConfiguration(dict):
426
426
  @pulumi.getter(name="workDocsConfiguration")
427
427
  def work_docs_configuration(self) -> Optional['outputs.DataSourceWorkDocsConfiguration']:
428
428
  """
429
- Provides the configuration information to connect to Amazon WorkDocs as your data source.
429
+ Provides the configuration information to connect to WorkDocs as your data source.
430
430
  """
431
431
  return pulumi.get(self, "work_docs_configuration")
432
432
 
@@ -3875,16 +3875,16 @@ class DataSourceWorkDocsConfiguration(dict):
3875
3875
  inclusion_patterns: Optional[Sequence[_builtins.str]] = None,
3876
3876
  use_change_log: Optional[_builtins.bool] = None):
3877
3877
  """
3878
- :param _builtins.str organization_id: The identifier of the directory corresponding to your Amazon WorkDocs site repository.
3878
+ :param _builtins.str organization_id: The identifier of the directory corresponding to your WorkDocs site repository.
3879
3879
 
3880
- You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your Amazon WorkDocs site directory has an ID, which is the organization ID. You can also set up a new Amazon WorkDocs directory in the AWS Directory Service console and enable a Amazon WorkDocs site for the directory in the Amazon WorkDocs console.
3880
+ You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
3881
3881
  :param _builtins.bool crawl_comments: `TRUE` to include comments on documents in your index. Including comments in your index means each comment is a document that can be searched on.
3882
3882
 
3883
3883
  The default is set to `FALSE` .
3884
- :param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your Amazon WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3885
- :param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map Amazon WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to Amazon WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The Amazon WorkDocs data source field names must exist in your Amazon WorkDocs custom metadata.
3886
- :param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your Amazon WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3887
- :param _builtins.bool use_change_log: `TRUE` to use the Amazon WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in Amazon WorkDocs.
3884
+ :param Sequence[_builtins.str] exclusion_patterns: A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3885
+ :param Sequence['DataSourceToIndexFieldMapping'] field_mappings: A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
3886
+ :param Sequence[_builtins.str] inclusion_patterns: A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3887
+ :param _builtins.bool use_change_log: `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
3888
3888
  """
3889
3889
  pulumi.set(__self__, "organization_id", organization_id)
3890
3890
  if crawl_comments is not None:
@@ -3902,9 +3902,9 @@ class DataSourceWorkDocsConfiguration(dict):
3902
3902
  @pulumi.getter(name="organizationId")
3903
3903
  def organization_id(self) -> _builtins.str:
3904
3904
  """
3905
- The identifier of the directory corresponding to your Amazon WorkDocs site repository.
3905
+ The identifier of the directory corresponding to your WorkDocs site repository.
3906
3906
 
3907
- You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your Amazon WorkDocs site directory has an ID, which is the organization ID. You can also set up a new Amazon WorkDocs directory in the AWS Directory Service console and enable a Amazon WorkDocs site for the directory in the Amazon WorkDocs console.
3907
+ You can find the organization ID in the [AWS Directory Service](https://docs.aws.amazon.com/directoryservicev2/) by going to *Active Directory* , then *Directories* . Your WorkDocs site directory has an ID, which is the organization ID. You can also set up a new WorkDocs directory in the AWS Directory Service console and enable a WorkDocs site for the directory in the WorkDocs console.
3908
3908
  """
3909
3909
  return pulumi.get(self, "organization_id")
3910
3910
 
@@ -3922,7 +3922,7 @@ class DataSourceWorkDocsConfiguration(dict):
3922
3922
  @pulumi.getter(name="exclusionPatterns")
3923
3923
  def exclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
3924
3924
  """
3925
- A list of regular expression patterns to exclude certain files in your Amazon WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3925
+ A list of regular expression patterns to exclude certain files in your WorkDocs site repository. Files that match the patterns are excluded from the index. Files that don’t match the patterns are included in the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3926
3926
  """
3927
3927
  return pulumi.get(self, "exclusion_patterns")
3928
3928
 
@@ -3930,7 +3930,7 @@ class DataSourceWorkDocsConfiguration(dict):
3930
3930
  @pulumi.getter(name="fieldMappings")
3931
3931
  def field_mappings(self) -> Optional[Sequence['outputs.DataSourceToIndexFieldMapping']]:
3932
3932
  """
3933
- A list of `DataSourceToIndexFieldMapping` objects that map Amazon WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to Amazon WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The Amazon WorkDocs data source field names must exist in your Amazon WorkDocs custom metadata.
3933
+ A list of `DataSourceToIndexFieldMapping` objects that map WorkDocs data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the `UpdateIndex` API before you map to WorkDocs fields. For more information, see [Mapping data source fields](https://docs.aws.amazon.com/kendra/latest/dg/field-mapping.html) . The WorkDocs data source field names must exist in your WorkDocs custom metadata.
3934
3934
  """
3935
3935
  return pulumi.get(self, "field_mappings")
3936
3936
 
@@ -3938,7 +3938,7 @@ class DataSourceWorkDocsConfiguration(dict):
3938
3938
  @pulumi.getter(name="inclusionPatterns")
3939
3939
  def inclusion_patterns(self) -> Optional[Sequence[_builtins.str]]:
3940
3940
  """
3941
- A list of regular expression patterns to include certain files in your Amazon WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3941
+ A list of regular expression patterns to include certain files in your WorkDocs site repository. Files that match the patterns are included in the index. Files that don't match the patterns are excluded from the index. If a file matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the file isn't included in the index.
3942
3942
  """
3943
3943
  return pulumi.get(self, "inclusion_patterns")
3944
3944
 
@@ -3946,7 +3946,7 @@ class DataSourceWorkDocsConfiguration(dict):
3946
3946
  @pulumi.getter(name="useChangeLog")
3947
3947
  def use_change_log(self) -> Optional[_builtins.bool]:
3948
3948
  """
3949
- `TRUE` to use the Amazon WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in Amazon WorkDocs.
3949
+ `TRUE` to use the WorkDocs change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in WorkDocs.
3950
3950
  """
3951
3951
  return pulumi.get(self, "use_change_log")
3952
3952
 
@@ -42,7 +42,7 @@ class PermissionArgs:
42
42
  :param pulumi.Input[_builtins.str] principal: The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
43
43
  :param pulumi.Input[_builtins.str] event_source_token: For Alexa Smart Home functions, a token that the invoker must supply.
44
44
  :param pulumi.Input['PermissionFunctionUrlAuthType'] function_url_auth_type: The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
45
- :param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to calls coming from a function URL. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
45
+ :param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
46
46
  :param pulumi.Input[_builtins.str] principal_org_id: The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization.
47
47
  :param pulumi.Input[_builtins.str] source_account: For AWS-service, the ID of the AWS-account that owns the resource. Use this together with ``SourceArn`` to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
48
48
  :param pulumi.Input[_builtins.str] source_arn: For AWS-services, the ARN of the AWS resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.
@@ -134,7 +134,7 @@ class PermissionArgs:
134
134
  @pulumi.getter(name="invokedViaFunctionUrl")
135
135
  def invoked_via_function_url(self) -> Optional[pulumi.Input[_builtins.bool]]:
136
136
  """
137
- Restricts the `lambda:InvokeFunction` action to calls coming from a function URL. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
137
+ Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
138
138
  """
139
139
  return pulumi.get(self, "invoked_via_function_url")
140
140
 
@@ -214,7 +214,7 @@ class Permission(pulumi.CustomResource):
214
214
 
215
215
  You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
216
216
  :param pulumi.Input['PermissionFunctionUrlAuthType'] function_url_auth_type: The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
217
- :param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to calls coming from a function URL. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
217
+ :param pulumi.Input[_builtins.bool] invoked_via_function_url: Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
218
218
  :param pulumi.Input[_builtins.str] principal: The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
219
219
  :param pulumi.Input[_builtins.str] principal_org_id: The identifier for your organization in AOlong. Use this to grant permissions to all the AWS-accounts under this organization.
220
220
  :param pulumi.Input[_builtins.str] source_account: For AWS-service, the ID of the AWS-account that owns the resource. Use this together with ``SourceArn`` to ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.
@@ -365,7 +365,7 @@ class Permission(pulumi.CustomResource):
365
365
  @pulumi.getter(name="invokedViaFunctionUrl")
366
366
  def invoked_via_function_url(self) -> pulumi.Output[Optional[_builtins.bool]]:
367
367
  """
368
- Restricts the `lambda:InvokeFunction` action to calls coming from a function URL. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
368
+ Restricts the `lambda:InvokeFunction` action to function URL calls. When set to `true` , this prevents the principal from invoking the function by any means other than the function URL. For more information, see [Control access to Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html) .
369
369
  """
370
370
  return pulumi.get(self, "invoked_via_function_url")
371
371