pulumi-aws-native 1.38.0a1761286050__py3-none-any.whl → 1.38.0a1761329030__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.
- pulumi_aws_native/__init__.py +14 -0
- pulumi_aws_native/_enums.py +4 -0
- pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
- pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
- pulumi_aws_native/aps/__init__.py +2 -0
- pulumi_aws_native/aps/_inputs.py +232 -0
- pulumi_aws_native/aps/anomaly_detector.py +318 -0
- pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
- pulumi_aws_native/aps/outputs.py +193 -0
- pulumi_aws_native/cloudfront/_inputs.py +14 -1
- pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
- pulumi_aws_native/cloudfront/outputs.py +11 -1
- pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
- pulumi_aws_native/connect/_enums.py +68 -0
- pulumi_aws_native/connect/_inputs.py +581 -1
- pulumi_aws_native/connect/email_address.py +31 -0
- pulumi_aws_native/connect/get_email_address.py +16 -1
- pulumi_aws_native/connect/outputs.py +473 -3
- pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +99 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +102 -0
- pulumi_aws_native/ec2/capacity_reservation.py +6 -6
- pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
- pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
- pulumi_aws_native/ec2/nat_gateway.py +11 -0
- pulumi_aws_native/ecr/_inputs.py +2 -2
- pulumi_aws_native/ecr/get_repository.py +3 -2
- pulumi_aws_native/ecr/outputs.py +2 -2
- pulumi_aws_native/ecr/repository.py +12 -8
- pulumi_aws_native/ecs/_enums.py +1 -0
- pulumi_aws_native/ecs/service.py +4 -0
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +201 -22
- pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
- pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +179 -16
- pulumi_aws_native/events/__init__.py +2 -0
- pulumi_aws_native/events/_inputs.py +78 -0
- pulumi_aws_native/events/event_bus_policy.py +275 -0
- pulumi_aws_native/events/get_event_bus_policy.py +85 -0
- pulumi_aws_native/events/outputs.py +48 -0
- pulumi_aws_native/gameliftstreams/application.py +4 -4
- pulumi_aws_native/imagebuilder/_inputs.py +58 -0
- pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
- pulumi_aws_native/imagebuilder/outputs.py +55 -0
- pulumi_aws_native/lambda_/permission.py +4 -4
- pulumi_aws_native/mediapackagev2/_enums.py +15 -0
- pulumi_aws_native/mediapackagev2/_inputs.py +96 -0
- pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
- pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
- pulumi_aws_native/mediapackagev2/outputs.py +84 -0
- pulumi_aws_native/neptune/db_instance.py +29 -0
- pulumi_aws_native/neptune/get_db_instance.py +15 -1
- pulumi_aws_native/observabilityadmin/_enums.py +9 -0
- pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
- pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
- pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
- pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
- pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
- pulumi_aws_native/observabilityadmin/outputs.py +150 -0
- pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
- pulumi_aws_native/organizations/_enums.py +13 -0
- pulumi_aws_native/organizations/account.py +10 -0
- pulumi_aws_native/organizations/get_account.py +15 -1
- pulumi_aws_native/osis/_inputs.py +24 -0
- pulumi_aws_native/osis/get_pipeline.py +26 -1
- pulumi_aws_native/osis/outputs.py +13 -0
- pulumi_aws_native/osis/pipeline.py +50 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/quicksight/_enums.py +1 -1
- pulumi_aws_native/quicksight/_inputs.py +3 -3
- pulumi_aws_native/quicksight/outputs.py +2 -2
- pulumi_aws_native/rds/db_cluster.py +24 -40
- pulumi_aws_native/route53/_inputs.py +21 -3
- pulumi_aws_native/route53/outputs.py +14 -2
- pulumi_aws_native/rtbfabric/__init__.py +15 -0
- pulumi_aws_native/rtbfabric/_enums.py +45 -0
- pulumi_aws_native/rtbfabric/_inputs.py +60 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +202 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +225 -0
- pulumi_aws_native/rtbfabric/outputs.py +57 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +263 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +351 -0
- pulumi_aws_native/s3/access_grants_location.py +15 -13
- pulumi_aws_native/sagemaker/_enums.py +10 -0
- pulumi_aws_native/sagemaker/_inputs.py +64 -0
- pulumi_aws_native/sagemaker/cluster.py +21 -0
- pulumi_aws_native/sagemaker/get_cluster.py +15 -4
- pulumi_aws_native/sagemaker/outputs.py +56 -0
- pulumi_aws_native/ssm/_inputs.py +15 -3
- pulumi_aws_native/ssm/outputs.py +10 -2
- pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
- pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
- pulumi_aws_native/synthetics/_inputs.py +52 -12
- pulumi_aws_native/synthetics/outputs.py +35 -8
- pulumi_aws_native/transfer/_inputs.py +9 -3
- pulumi_aws_native/transfer/outputs.py +6 -2
- pulumi_aws_native/wisdom/_enums.py +4 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/RECORD +104 -92
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761286050.dist-info → pulumi_aws_native-1.38.0a1761329030.dist-info}/top_level.txt +0 -0
|
@@ -158,14 +158,22 @@ class CanaryBrowserConfigArgs:
|
|
|
158
158
|
|
|
159
159
|
if not MYPY:
|
|
160
160
|
class CanaryCodeArgsDict(TypedDict):
|
|
161
|
-
|
|
161
|
+
blueprint_types: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
|
162
162
|
"""
|
|
163
|
-
|
|
163
|
+
`BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
164
|
+
|
|
165
|
+
When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
164
166
|
"""
|
|
165
167
|
dependencies: NotRequired[pulumi.Input[Sequence[pulumi.Input['CanaryDependencyArgsDict']]]]
|
|
166
168
|
"""
|
|
167
169
|
List of Lambda layers to attach to the canary
|
|
168
170
|
"""
|
|
171
|
+
handler: NotRequired[pulumi.Input[_builtins.str]]
|
|
172
|
+
"""
|
|
173
|
+
The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
174
|
+
|
|
175
|
+
This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
176
|
+
"""
|
|
169
177
|
s3_bucket: NotRequired[pulumi.Input[_builtins.str]]
|
|
170
178
|
"""
|
|
171
179
|
If your canary script is located in S3, specify the bucket name here. The bucket must already exist.
|
|
@@ -192,25 +200,34 @@ elif False:
|
|
|
192
200
|
@pulumi.input_type
|
|
193
201
|
class CanaryCodeArgs:
|
|
194
202
|
def __init__(__self__, *,
|
|
195
|
-
|
|
203
|
+
blueprint_types: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
|
196
204
|
dependencies: Optional[pulumi.Input[Sequence[pulumi.Input['CanaryDependencyArgs']]]] = None,
|
|
205
|
+
handler: Optional[pulumi.Input[_builtins.str]] = None,
|
|
197
206
|
s3_bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
|
198
207
|
s3_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
199
208
|
s3_object_version: Optional[pulumi.Input[_builtins.str]] = None,
|
|
200
209
|
script: Optional[pulumi.Input[_builtins.str]] = None,
|
|
201
210
|
source_location_arn: Optional[pulumi.Input[_builtins.str]] = None):
|
|
202
211
|
"""
|
|
203
|
-
:param pulumi.Input[_builtins.str]
|
|
212
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] blueprint_types: `BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
213
|
+
|
|
214
|
+
When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
204
215
|
:param pulumi.Input[Sequence[pulumi.Input['CanaryDependencyArgs']]] dependencies: List of Lambda layers to attach to the canary
|
|
216
|
+
:param pulumi.Input[_builtins.str] handler: The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
217
|
+
|
|
218
|
+
This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
205
219
|
:param pulumi.Input[_builtins.str] s3_bucket: If your canary script is located in S3, specify the bucket name here. The bucket must already exist.
|
|
206
220
|
:param pulumi.Input[_builtins.str] s3_key: The Amazon S3 key of your script. For more information, see [Working with Amazon S3 Objects](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html) .
|
|
207
221
|
:param pulumi.Input[_builtins.str] s3_object_version: The Amazon S3 version ID of your script.
|
|
208
222
|
:param pulumi.Input[_builtins.str] script: If you input your canary script directly into the canary instead of referring to an S3 location, the value of this parameter is the script in plain text. It can be up to 5 MB.
|
|
209
223
|
:param pulumi.Input[_builtins.str] source_location_arn: The ARN of the Lambda layer where Synthetics stores the canary script code.
|
|
210
224
|
"""
|
|
211
|
-
|
|
225
|
+
if blueprint_types is not None:
|
|
226
|
+
pulumi.set(__self__, "blueprint_types", blueprint_types)
|
|
212
227
|
if dependencies is not None:
|
|
213
228
|
pulumi.set(__self__, "dependencies", dependencies)
|
|
229
|
+
if handler is not None:
|
|
230
|
+
pulumi.set(__self__, "handler", handler)
|
|
214
231
|
if s3_bucket is not None:
|
|
215
232
|
pulumi.set(__self__, "s3_bucket", s3_bucket)
|
|
216
233
|
if s3_key is not None:
|
|
@@ -223,16 +240,18 @@ class CanaryCodeArgs:
|
|
|
223
240
|
pulumi.set(__self__, "source_location_arn", source_location_arn)
|
|
224
241
|
|
|
225
242
|
@_builtins.property
|
|
226
|
-
@pulumi.getter
|
|
227
|
-
def
|
|
243
|
+
@pulumi.getter(name="blueprintTypes")
|
|
244
|
+
def blueprint_types(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
|
228
245
|
"""
|
|
229
|
-
|
|
246
|
+
`BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
247
|
+
|
|
248
|
+
When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
230
249
|
"""
|
|
231
|
-
return pulumi.get(self, "
|
|
250
|
+
return pulumi.get(self, "blueprint_types")
|
|
232
251
|
|
|
233
|
-
@
|
|
234
|
-
def
|
|
235
|
-
pulumi.set(self, "
|
|
252
|
+
@blueprint_types.setter
|
|
253
|
+
def blueprint_types(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
|
254
|
+
pulumi.set(self, "blueprint_types", value)
|
|
236
255
|
|
|
237
256
|
@_builtins.property
|
|
238
257
|
@pulumi.getter
|
|
@@ -246,6 +265,20 @@ class CanaryCodeArgs:
|
|
|
246
265
|
def dependencies(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CanaryDependencyArgs']]]]):
|
|
247
266
|
pulumi.set(self, "dependencies", value)
|
|
248
267
|
|
|
268
|
+
@_builtins.property
|
|
269
|
+
@pulumi.getter
|
|
270
|
+
def handler(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
271
|
+
"""
|
|
272
|
+
The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
273
|
+
|
|
274
|
+
This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
275
|
+
"""
|
|
276
|
+
return pulumi.get(self, "handler")
|
|
277
|
+
|
|
278
|
+
@handler.setter
|
|
279
|
+
def handler(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
280
|
+
pulumi.set(self, "handler", value)
|
|
281
|
+
|
|
249
282
|
@_builtins.property
|
|
250
283
|
@pulumi.getter(name="s3Bucket")
|
|
251
284
|
def s3_bucket(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -659,6 +692,9 @@ if not MYPY:
|
|
|
659
692
|
List of screenshots used as base reference for visual testing
|
|
660
693
|
"""
|
|
661
694
|
browser_type: NotRequired[pulumi.Input['CanaryBrowserType']]
|
|
695
|
+
"""
|
|
696
|
+
The browser type associated with this visual reference configuration. Valid values are `CHROME` and `FIREFOX` .
|
|
697
|
+
"""
|
|
662
698
|
elif False:
|
|
663
699
|
CanaryVisualReferenceArgsDict: TypeAlias = Mapping[str, Any]
|
|
664
700
|
|
|
@@ -671,6 +707,7 @@ class CanaryVisualReferenceArgs:
|
|
|
671
707
|
"""
|
|
672
708
|
:param pulumi.Input[_builtins.str] base_canary_run_id: Canary run id to be used as base reference for visual testing
|
|
673
709
|
:param pulumi.Input[Sequence[pulumi.Input['CanaryBaseScreenshotArgs']]] base_screenshots: List of screenshots used as base reference for visual testing
|
|
710
|
+
:param pulumi.Input['CanaryBrowserType'] browser_type: The browser type associated with this visual reference configuration. Valid values are `CHROME` and `FIREFOX` .
|
|
674
711
|
"""
|
|
675
712
|
pulumi.set(__self__, "base_canary_run_id", base_canary_run_id)
|
|
676
713
|
if base_screenshots is not None:
|
|
@@ -705,6 +742,9 @@ class CanaryVisualReferenceArgs:
|
|
|
705
742
|
@_builtins.property
|
|
706
743
|
@pulumi.getter(name="browserType")
|
|
707
744
|
def browser_type(self) -> Optional[pulumi.Input['CanaryBrowserType']]:
|
|
745
|
+
"""
|
|
746
|
+
The browser type associated with this visual reference configuration. Valid values are `CHROME` and `FIREFOX` .
|
|
747
|
+
"""
|
|
708
748
|
return pulumi.get(self, "browser_type")
|
|
709
749
|
|
|
710
750
|
@browser_type.setter
|
|
@@ -155,7 +155,9 @@ class CanaryCode(dict):
|
|
|
155
155
|
@staticmethod
|
|
156
156
|
def __key_warning(key: str):
|
|
157
157
|
suggest = None
|
|
158
|
-
if key == "
|
|
158
|
+
if key == "blueprintTypes":
|
|
159
|
+
suggest = "blueprint_types"
|
|
160
|
+
elif key == "s3Bucket":
|
|
159
161
|
suggest = "s3_bucket"
|
|
160
162
|
elif key == "s3Key":
|
|
161
163
|
suggest = "s3_key"
|
|
@@ -176,25 +178,34 @@ class CanaryCode(dict):
|
|
|
176
178
|
return super().get(key, default)
|
|
177
179
|
|
|
178
180
|
def __init__(__self__, *,
|
|
179
|
-
|
|
181
|
+
blueprint_types: Optional[Sequence[_builtins.str]] = None,
|
|
180
182
|
dependencies: Optional[Sequence['outputs.CanaryDependency']] = None,
|
|
183
|
+
handler: Optional[_builtins.str] = None,
|
|
181
184
|
s3_bucket: Optional[_builtins.str] = None,
|
|
182
185
|
s3_key: Optional[_builtins.str] = None,
|
|
183
186
|
s3_object_version: Optional[_builtins.str] = None,
|
|
184
187
|
script: Optional[_builtins.str] = None,
|
|
185
188
|
source_location_arn: Optional[_builtins.str] = None):
|
|
186
189
|
"""
|
|
187
|
-
:param _builtins.str
|
|
190
|
+
:param Sequence[_builtins.str] blueprint_types: `BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
191
|
+
|
|
192
|
+
When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
188
193
|
:param Sequence['CanaryDependency'] dependencies: List of Lambda layers to attach to the canary
|
|
194
|
+
:param _builtins.str handler: The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
195
|
+
|
|
196
|
+
This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
189
197
|
:param _builtins.str s3_bucket: If your canary script is located in S3, specify the bucket name here. The bucket must already exist.
|
|
190
198
|
:param _builtins.str s3_key: The Amazon S3 key of your script. For more information, see [Working with Amazon S3 Objects](https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html) .
|
|
191
199
|
:param _builtins.str s3_object_version: The Amazon S3 version ID of your script.
|
|
192
200
|
:param _builtins.str script: If you input your canary script directly into the canary instead of referring to an S3 location, the value of this parameter is the script in plain text. It can be up to 5 MB.
|
|
193
201
|
:param _builtins.str source_location_arn: The ARN of the Lambda layer where Synthetics stores the canary script code.
|
|
194
202
|
"""
|
|
195
|
-
|
|
203
|
+
if blueprint_types is not None:
|
|
204
|
+
pulumi.set(__self__, "blueprint_types", blueprint_types)
|
|
196
205
|
if dependencies is not None:
|
|
197
206
|
pulumi.set(__self__, "dependencies", dependencies)
|
|
207
|
+
if handler is not None:
|
|
208
|
+
pulumi.set(__self__, "handler", handler)
|
|
198
209
|
if s3_bucket is not None:
|
|
199
210
|
pulumi.set(__self__, "s3_bucket", s3_bucket)
|
|
200
211
|
if s3_key is not None:
|
|
@@ -207,12 +218,14 @@ class CanaryCode(dict):
|
|
|
207
218
|
pulumi.set(__self__, "source_location_arn", source_location_arn)
|
|
208
219
|
|
|
209
220
|
@_builtins.property
|
|
210
|
-
@pulumi.getter
|
|
211
|
-
def
|
|
221
|
+
@pulumi.getter(name="blueprintTypes")
|
|
222
|
+
def blueprint_types(self) -> Optional[Sequence[_builtins.str]]:
|
|
212
223
|
"""
|
|
213
|
-
|
|
224
|
+
`BlueprintTypes` are a list of templates that enable simplified canary creation. You can create canaries for common monitoring scenarios by providing only a JSON configuration file instead of writing custom scripts. `multi-checks` is the only supported value.
|
|
225
|
+
|
|
226
|
+
When you specify `BlueprintTypes` , the `Handler` field cannot be specified since the blueprint provides a pre-defined entry point.
|
|
214
227
|
"""
|
|
215
|
-
return pulumi.get(self, "
|
|
228
|
+
return pulumi.get(self, "blueprint_types")
|
|
216
229
|
|
|
217
230
|
@_builtins.property
|
|
218
231
|
@pulumi.getter
|
|
@@ -222,6 +235,16 @@ class CanaryCode(dict):
|
|
|
222
235
|
"""
|
|
223
236
|
return pulumi.get(self, "dependencies")
|
|
224
237
|
|
|
238
|
+
@_builtins.property
|
|
239
|
+
@pulumi.getter
|
|
240
|
+
def handler(self) -> Optional[_builtins.str]:
|
|
241
|
+
"""
|
|
242
|
+
The entry point to use for the source code when running the canary. For canaries that use the `syn-python-selenium-1.0` runtime or a `syn-nodejs.puppeteer` runtime earlier than `syn-nodejs.puppeteer-3.4` , the handler must be specified as `*fileName* .handler` . For `syn-python-selenium-1.1` , `syn-nodejs.puppeteer-3.4` , and later runtimes, the handler can be specified as `*fileName* . *functionName*` , or you can specify a folder where canary scripts reside as `*folder* / *fileName* . *functionName*` .
|
|
243
|
+
|
|
244
|
+
This field is required when you don't specify `BlueprintTypes` and is not allowed when you specify `BlueprintTypes` .
|
|
245
|
+
"""
|
|
246
|
+
return pulumi.get(self, "handler")
|
|
247
|
+
|
|
225
248
|
@_builtins.property
|
|
226
249
|
@pulumi.getter(name="s3Bucket")
|
|
227
250
|
def s3_bucket(self) -> Optional[_builtins.str]:
|
|
@@ -577,6 +600,7 @@ class CanaryVisualReference(dict):
|
|
|
577
600
|
"""
|
|
578
601
|
:param _builtins.str base_canary_run_id: Canary run id to be used as base reference for visual testing
|
|
579
602
|
:param Sequence['CanaryBaseScreenshot'] base_screenshots: List of screenshots used as base reference for visual testing
|
|
603
|
+
:param 'CanaryBrowserType' browser_type: The browser type associated with this visual reference configuration. Valid values are `CHROME` and `FIREFOX` .
|
|
580
604
|
"""
|
|
581
605
|
pulumi.set(__self__, "base_canary_run_id", base_canary_run_id)
|
|
582
606
|
if base_screenshots is not None:
|
|
@@ -603,6 +627,9 @@ class CanaryVisualReference(dict):
|
|
|
603
627
|
@_builtins.property
|
|
604
628
|
@pulumi.getter(name="browserType")
|
|
605
629
|
def browser_type(self) -> Optional['CanaryBrowserType']:
|
|
630
|
+
"""
|
|
631
|
+
The browser type associated with this visual reference configuration. Valid values are `CHROME` and `FIREFOX` .
|
|
632
|
+
"""
|
|
606
633
|
return pulumi.get(self, "browser_type")
|
|
607
634
|
|
|
608
635
|
|
|
@@ -728,7 +728,9 @@ if not MYPY:
|
|
|
728
728
|
|
|
729
729
|
Replace `0.0.0.0` in the example above with the actual IP address you want to use.
|
|
730
730
|
|
|
731
|
-
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
731
|
+
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
732
|
+
>
|
|
733
|
+
> Additionally, avoid placing Network Load Balancers (NLBs) or NAT gateways in front of AWS Transfer Family servers. This configuration increases costs and can cause performance issues. When NLBs or NATs are in the communication path, Transfer Family cannot accurately recognize client IP addresses, which impacts connection sharding and limits FTPS servers to only 300 simultaneous connections instead of 10,000. If you must use an NLB, use port 21 for health checks and enable TLS session resumption by setting `TlsSessionResumptionMode = ENFORCED` . For optimal performance, migrate to VPC endpoints with Elastic IP addresses instead of using NLBs. For more details, see [Avoid placing NLBs and NATs in front of AWS Transfer Family](https://docs.aws.amazon.com/transfer/latest/userguide/infrastructure-security.html#nlb-considerations) .
|
|
732
734
|
|
|
733
735
|
*Special values*
|
|
734
736
|
|
|
@@ -772,7 +774,9 @@ class ServerProtocolDetailsArgs:
|
|
|
772
774
|
|
|
773
775
|
Replace `0.0.0.0` in the example above with the actual IP address you want to use.
|
|
774
776
|
|
|
775
|
-
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
777
|
+
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
778
|
+
>
|
|
779
|
+
> Additionally, avoid placing Network Load Balancers (NLBs) or NAT gateways in front of AWS Transfer Family servers. This configuration increases costs and can cause performance issues. When NLBs or NATs are in the communication path, Transfer Family cannot accurately recognize client IP addresses, which impacts connection sharding and limits FTPS servers to only 300 simultaneous connections instead of 10,000. If you must use an NLB, use port 21 for health checks and enable TLS session resumption by setting `TlsSessionResumptionMode = ENFORCED` . For optimal performance, migrate to VPC endpoints with Elastic IP addresses instead of using NLBs. For more details, see [Avoid placing NLBs and NATs in front of AWS Transfer Family](https://docs.aws.amazon.com/transfer/latest/userguide/infrastructure-security.html#nlb-considerations) .
|
|
776
780
|
|
|
777
781
|
*Special values*
|
|
778
782
|
|
|
@@ -823,7 +827,9 @@ class ServerProtocolDetailsArgs:
|
|
|
823
827
|
|
|
824
828
|
Replace `0.0.0.0` in the example above with the actual IP address you want to use.
|
|
825
829
|
|
|
826
|
-
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
830
|
+
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
831
|
+
>
|
|
832
|
+
> Additionally, avoid placing Network Load Balancers (NLBs) or NAT gateways in front of AWS Transfer Family servers. This configuration increases costs and can cause performance issues. When NLBs or NATs are in the communication path, Transfer Family cannot accurately recognize client IP addresses, which impacts connection sharding and limits FTPS servers to only 300 simultaneous connections instead of 10,000. If you must use an NLB, use port 21 for health checks and enable TLS session resumption by setting `TlsSessionResumptionMode = ENFORCED` . For optimal performance, migrate to VPC endpoints with Elastic IP addresses instead of using NLBs. For more details, see [Avoid placing NLBs and NATs in front of AWS Transfer Family](https://docs.aws.amazon.com/transfer/latest/userguide/infrastructure-security.html#nlb-considerations) .
|
|
827
833
|
|
|
828
834
|
*Special values*
|
|
829
835
|
|
|
@@ -579,7 +579,9 @@ class ServerProtocolDetails(dict):
|
|
|
579
579
|
|
|
580
580
|
Replace `0.0.0.0` in the example above with the actual IP address you want to use.
|
|
581
581
|
|
|
582
|
-
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
582
|
+
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
583
|
+
>
|
|
584
|
+
> Additionally, avoid placing Network Load Balancers (NLBs) or NAT gateways in front of AWS Transfer Family servers. This configuration increases costs and can cause performance issues. When NLBs or NATs are in the communication path, Transfer Family cannot accurately recognize client IP addresses, which impacts connection sharding and limits FTPS servers to only 300 simultaneous connections instead of 10,000. If you must use an NLB, use port 21 for health checks and enable TLS session resumption by setting `TlsSessionResumptionMode = ENFORCED` . For optimal performance, migrate to VPC endpoints with Elastic IP addresses instead of using NLBs. For more details, see [Avoid placing NLBs and NATs in front of AWS Transfer Family](https://docs.aws.amazon.com/transfer/latest/userguide/infrastructure-security.html#nlb-considerations) .
|
|
583
585
|
|
|
584
586
|
*Special values*
|
|
585
587
|
|
|
@@ -626,7 +628,9 @@ class ServerProtocolDetails(dict):
|
|
|
626
628
|
|
|
627
629
|
Replace `0.0.0.0` in the example above with the actual IP address you want to use.
|
|
628
630
|
|
|
629
|
-
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
631
|
+
> If you change the `PassiveIp` value, you must stop and then restart your Transfer Family server for the change to take effect. For details on using passive mode (PASV) in a NAT environment, see [Configuring your FTPS server behind a firewall or NAT with AWS Transfer Family](https://docs.aws.amazon.com/storage/configuring-your-ftps-server-behind-a-firewall-or-nat-with-aws-transfer-family/) .
|
|
632
|
+
>
|
|
633
|
+
> Additionally, avoid placing Network Load Balancers (NLBs) or NAT gateways in front of AWS Transfer Family servers. This configuration increases costs and can cause performance issues. When NLBs or NATs are in the communication path, Transfer Family cannot accurately recognize client IP addresses, which impacts connection sharding and limits FTPS servers to only 300 simultaneous connections instead of 10,000. If you must use an NLB, use port 21 for health checks and enable TLS session resumption by setting `TlsSessionResumptionMode = ENFORCED` . For optimal performance, migrate to VPC endpoints with Elastic IP addresses instead of using NLBs. For more details, see [Avoid placing NLBs and NATs in front of AWS Transfer Family](https://docs.aws.amazon.com/transfer/latest/userguide/infrastructure-security.html#nlb-considerations) .
|
|
630
634
|
|
|
631
635
|
*Special values*
|
|
632
636
|
|
|
@@ -166,6 +166,10 @@ class AiPromptAiPromptType(_builtins.str, Enum):
|
|
|
166
166
|
QUERY_REFORMULATION = "QUERY_REFORMULATION"
|
|
167
167
|
SELF_SERVICE_PRE_PROCESSING = "SELF_SERVICE_PRE_PROCESSING"
|
|
168
168
|
SELF_SERVICE_ANSWER_GENERATION = "SELF_SERVICE_ANSWER_GENERATION"
|
|
169
|
+
EMAIL_RESPONSE = "EMAIL_RESPONSE"
|
|
170
|
+
EMAIL_OVERVIEW = "EMAIL_OVERVIEW"
|
|
171
|
+
EMAIL_GENERATIVE_ANSWER = "EMAIL_GENERATIVE_ANSWER"
|
|
172
|
+
EMAIL_QUERY_REFORMULATION = "EMAIL_QUERY_REFORMULATION"
|
|
169
173
|
|
|
170
174
|
|
|
171
175
|
@pulumi.type_token("aws-native:wisdom:AssistantAssociationAssociationType")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pulumi_aws_native
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.0a1761329030
|
|
4
4
|
Summary: A native Pulumi package for creating and managing Amazon Web Services (AWS) resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.com
|