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
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from .. import outputs as _root_outputs
|
|
18
|
+
|
|
19
|
+
__all__ = [
|
|
20
|
+
'GetAnomalyDetectorResult',
|
|
21
|
+
'AwaitableGetAnomalyDetectorResult',
|
|
22
|
+
'get_anomaly_detector',
|
|
23
|
+
'get_anomaly_detector_output',
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
@pulumi.output_type
|
|
27
|
+
class GetAnomalyDetectorResult:
|
|
28
|
+
def __init__(__self__, arn=None, configuration=None, evaluation_interval_in_seconds=None, labels=None, missing_data_action=None, tags=None):
|
|
29
|
+
if arn and not isinstance(arn, str):
|
|
30
|
+
raise TypeError("Expected argument 'arn' to be a str")
|
|
31
|
+
pulumi.set(__self__, "arn", arn)
|
|
32
|
+
if configuration and not isinstance(configuration, dict):
|
|
33
|
+
raise TypeError("Expected argument 'configuration' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "configuration", configuration)
|
|
35
|
+
if evaluation_interval_in_seconds and not isinstance(evaluation_interval_in_seconds, int):
|
|
36
|
+
raise TypeError("Expected argument 'evaluation_interval_in_seconds' to be a int")
|
|
37
|
+
pulumi.set(__self__, "evaluation_interval_in_seconds", evaluation_interval_in_seconds)
|
|
38
|
+
if labels and not isinstance(labels, list):
|
|
39
|
+
raise TypeError("Expected argument 'labels' to be a list")
|
|
40
|
+
pulumi.set(__self__, "labels", labels)
|
|
41
|
+
if missing_data_action and not isinstance(missing_data_action, dict):
|
|
42
|
+
raise TypeError("Expected argument 'missing_data_action' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "missing_data_action", missing_data_action)
|
|
44
|
+
if tags and not isinstance(tags, list):
|
|
45
|
+
raise TypeError("Expected argument 'tags' to be a list")
|
|
46
|
+
pulumi.set(__self__, "tags", tags)
|
|
47
|
+
|
|
48
|
+
@_builtins.property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def arn(self) -> Optional[_builtins.str]:
|
|
51
|
+
"""
|
|
52
|
+
The AnomalyDetector ARN.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "arn")
|
|
55
|
+
|
|
56
|
+
@_builtins.property
|
|
57
|
+
@pulumi.getter
|
|
58
|
+
def configuration(self) -> Optional['outputs.AnomalyDetectorConfiguration']:
|
|
59
|
+
"""
|
|
60
|
+
Determines the anomaly detector's algorithm and its configuration.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "configuration")
|
|
63
|
+
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter(name="evaluationIntervalInSeconds")
|
|
66
|
+
def evaluation_interval_in_seconds(self) -> Optional[_builtins.int]:
|
|
67
|
+
"""
|
|
68
|
+
The AnomalyDetector period of detection and metric generation.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "evaluation_interval_in_seconds")
|
|
71
|
+
|
|
72
|
+
@_builtins.property
|
|
73
|
+
@pulumi.getter
|
|
74
|
+
def labels(self) -> Optional[Sequence['outputs.AnomalyDetectorLabel']]:
|
|
75
|
+
"""
|
|
76
|
+
An array of key-value pairs to provide meta-data.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "labels")
|
|
79
|
+
|
|
80
|
+
@_builtins.property
|
|
81
|
+
@pulumi.getter(name="missingDataAction")
|
|
82
|
+
def missing_data_action(self) -> Optional['outputs.AnomalyDetectorMissingDataAction']:
|
|
83
|
+
"""
|
|
84
|
+
The action to perform when running the expression returns no data.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "missing_data_action")
|
|
87
|
+
|
|
88
|
+
@_builtins.property
|
|
89
|
+
@pulumi.getter
|
|
90
|
+
def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
|
|
91
|
+
"""
|
|
92
|
+
An array of key-value pairs to apply to this resource.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "tags")
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
class AwaitableGetAnomalyDetectorResult(GetAnomalyDetectorResult):
|
|
98
|
+
# pylint: disable=using-constant-test
|
|
99
|
+
def __await__(self):
|
|
100
|
+
if False:
|
|
101
|
+
yield self
|
|
102
|
+
return GetAnomalyDetectorResult(
|
|
103
|
+
arn=self.arn,
|
|
104
|
+
configuration=self.configuration,
|
|
105
|
+
evaluation_interval_in_seconds=self.evaluation_interval_in_seconds,
|
|
106
|
+
labels=self.labels,
|
|
107
|
+
missing_data_action=self.missing_data_action,
|
|
108
|
+
tags=self.tags)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
def get_anomaly_detector(arn: Optional[_builtins.str] = None,
|
|
112
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAnomalyDetectorResult:
|
|
113
|
+
"""
|
|
114
|
+
AnomalyDetector schema for cloudformation.
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
:param _builtins.str arn: The AnomalyDetector ARN.
|
|
118
|
+
"""
|
|
119
|
+
__args__ = dict()
|
|
120
|
+
__args__['arn'] = arn
|
|
121
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
122
|
+
__ret__ = pulumi.runtime.invoke('aws-native:aps:getAnomalyDetector', __args__, opts=opts, typ=GetAnomalyDetectorResult).value
|
|
123
|
+
|
|
124
|
+
return AwaitableGetAnomalyDetectorResult(
|
|
125
|
+
arn=pulumi.get(__ret__, 'arn'),
|
|
126
|
+
configuration=pulumi.get(__ret__, 'configuration'),
|
|
127
|
+
evaluation_interval_in_seconds=pulumi.get(__ret__, 'evaluation_interval_in_seconds'),
|
|
128
|
+
labels=pulumi.get(__ret__, 'labels'),
|
|
129
|
+
missing_data_action=pulumi.get(__ret__, 'missing_data_action'),
|
|
130
|
+
tags=pulumi.get(__ret__, 'tags'))
|
|
131
|
+
def get_anomaly_detector_output(arn: Optional[pulumi.Input[_builtins.str]] = None,
|
|
132
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAnomalyDetectorResult]:
|
|
133
|
+
"""
|
|
134
|
+
AnomalyDetector schema for cloudformation.
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
:param _builtins.str arn: The AnomalyDetector ARN.
|
|
138
|
+
"""
|
|
139
|
+
__args__ = dict()
|
|
140
|
+
__args__['arn'] = arn
|
|
141
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
142
|
+
__ret__ = pulumi.runtime.invoke_output('aws-native:aps:getAnomalyDetector', __args__, opts=opts, typ=GetAnomalyDetectorResult)
|
|
143
|
+
return __ret__.apply(lambda __response__: GetAnomalyDetectorResult(
|
|
144
|
+
arn=pulumi.get(__response__, 'arn'),
|
|
145
|
+
configuration=pulumi.get(__response__, 'configuration'),
|
|
146
|
+
evaluation_interval_in_seconds=pulumi.get(__response__, 'evaluation_interval_in_seconds'),
|
|
147
|
+
labels=pulumi.get(__response__, 'labels'),
|
|
148
|
+
missing_data_action=pulumi.get(__response__, 'missing_data_action'),
|
|
149
|
+
tags=pulumi.get(__response__, 'tags')))
|
pulumi_aws_native/aps/outputs.py
CHANGED
|
@@ -17,6 +17,11 @@ from . import outputs
|
|
|
17
17
|
from ._enums import *
|
|
18
18
|
|
|
19
19
|
__all__ = [
|
|
20
|
+
'AnomalyDetectorConfiguration',
|
|
21
|
+
'AnomalyDetectorIgnoreNearExpected',
|
|
22
|
+
'AnomalyDetectorLabel',
|
|
23
|
+
'AnomalyDetectorMissingDataAction',
|
|
24
|
+
'AnomalyDetectorRandomCutForestConfiguration',
|
|
20
25
|
'ScraperCloudWatchLogDestination',
|
|
21
26
|
'ScraperComponent',
|
|
22
27
|
'ScraperComponentConfig',
|
|
@@ -39,6 +44,194 @@ __all__ = [
|
|
|
39
44
|
'WorkspaceQueryLoggingConfiguration',
|
|
40
45
|
]
|
|
41
46
|
|
|
47
|
+
@pulumi.output_type
|
|
48
|
+
class AnomalyDetectorConfiguration(dict):
|
|
49
|
+
@staticmethod
|
|
50
|
+
def __key_warning(key: str):
|
|
51
|
+
suggest = None
|
|
52
|
+
if key == "randomCutForest":
|
|
53
|
+
suggest = "random_cut_forest"
|
|
54
|
+
|
|
55
|
+
if suggest:
|
|
56
|
+
pulumi.log.warn(f"Key '{key}' not found in AnomalyDetectorConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
57
|
+
|
|
58
|
+
def __getitem__(self, key: str) -> Any:
|
|
59
|
+
AnomalyDetectorConfiguration.__key_warning(key)
|
|
60
|
+
return super().__getitem__(key)
|
|
61
|
+
|
|
62
|
+
def get(self, key: str, default = None) -> Any:
|
|
63
|
+
AnomalyDetectorConfiguration.__key_warning(key)
|
|
64
|
+
return super().get(key, default)
|
|
65
|
+
|
|
66
|
+
def __init__(__self__, *,
|
|
67
|
+
random_cut_forest: 'outputs.AnomalyDetectorRandomCutForestConfiguration'):
|
|
68
|
+
pulumi.set(__self__, "random_cut_forest", random_cut_forest)
|
|
69
|
+
|
|
70
|
+
@_builtins.property
|
|
71
|
+
@pulumi.getter(name="randomCutForest")
|
|
72
|
+
def random_cut_forest(self) -> 'outputs.AnomalyDetectorRandomCutForestConfiguration':
|
|
73
|
+
return pulumi.get(self, "random_cut_forest")
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
@pulumi.output_type
|
|
77
|
+
class AnomalyDetectorIgnoreNearExpected(dict):
|
|
78
|
+
def __init__(__self__, *,
|
|
79
|
+
amount: Optional[_builtins.float] = None,
|
|
80
|
+
ratio: Optional[_builtins.float] = None):
|
|
81
|
+
if amount is not None:
|
|
82
|
+
pulumi.set(__self__, "amount", amount)
|
|
83
|
+
if ratio is not None:
|
|
84
|
+
pulumi.set(__self__, "ratio", ratio)
|
|
85
|
+
|
|
86
|
+
@_builtins.property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def amount(self) -> Optional[_builtins.float]:
|
|
89
|
+
return pulumi.get(self, "amount")
|
|
90
|
+
|
|
91
|
+
@_builtins.property
|
|
92
|
+
@pulumi.getter
|
|
93
|
+
def ratio(self) -> Optional[_builtins.float]:
|
|
94
|
+
return pulumi.get(self, "ratio")
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
@pulumi.output_type
|
|
98
|
+
class AnomalyDetectorLabel(dict):
|
|
99
|
+
"""
|
|
100
|
+
A key-value pair to provide meta-data and multi-dimensional data analysis for filtering and aggregation.
|
|
101
|
+
"""
|
|
102
|
+
def __init__(__self__, *,
|
|
103
|
+
key: _builtins.str,
|
|
104
|
+
value: _builtins.str):
|
|
105
|
+
"""
|
|
106
|
+
A key-value pair to provide meta-data and multi-dimensional data analysis for filtering and aggregation.
|
|
107
|
+
:param _builtins.str key: The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
108
|
+
:param _builtins.str value: The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
109
|
+
"""
|
|
110
|
+
pulumi.set(__self__, "key", key)
|
|
111
|
+
pulumi.set(__self__, "value", value)
|
|
112
|
+
|
|
113
|
+
@_builtins.property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def key(self) -> _builtins.str:
|
|
116
|
+
"""
|
|
117
|
+
The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "key")
|
|
120
|
+
|
|
121
|
+
@_builtins.property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def value(self) -> _builtins.str:
|
|
124
|
+
"""
|
|
125
|
+
The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "value")
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
@pulumi.output_type
|
|
131
|
+
class AnomalyDetectorMissingDataAction(dict):
|
|
132
|
+
@staticmethod
|
|
133
|
+
def __key_warning(key: str):
|
|
134
|
+
suggest = None
|
|
135
|
+
if key == "markAsAnomaly":
|
|
136
|
+
suggest = "mark_as_anomaly"
|
|
137
|
+
|
|
138
|
+
if suggest:
|
|
139
|
+
pulumi.log.warn(f"Key '{key}' not found in AnomalyDetectorMissingDataAction. Access the value via the '{suggest}' property getter instead.")
|
|
140
|
+
|
|
141
|
+
def __getitem__(self, key: str) -> Any:
|
|
142
|
+
AnomalyDetectorMissingDataAction.__key_warning(key)
|
|
143
|
+
return super().__getitem__(key)
|
|
144
|
+
|
|
145
|
+
def get(self, key: str, default = None) -> Any:
|
|
146
|
+
AnomalyDetectorMissingDataAction.__key_warning(key)
|
|
147
|
+
return super().get(key, default)
|
|
148
|
+
|
|
149
|
+
def __init__(__self__, *,
|
|
150
|
+
mark_as_anomaly: Optional[_builtins.bool] = None,
|
|
151
|
+
skip: Optional[_builtins.bool] = None):
|
|
152
|
+
if mark_as_anomaly is not None:
|
|
153
|
+
pulumi.set(__self__, "mark_as_anomaly", mark_as_anomaly)
|
|
154
|
+
if skip is not None:
|
|
155
|
+
pulumi.set(__self__, "skip", skip)
|
|
156
|
+
|
|
157
|
+
@_builtins.property
|
|
158
|
+
@pulumi.getter(name="markAsAnomaly")
|
|
159
|
+
def mark_as_anomaly(self) -> Optional[_builtins.bool]:
|
|
160
|
+
return pulumi.get(self, "mark_as_anomaly")
|
|
161
|
+
|
|
162
|
+
@_builtins.property
|
|
163
|
+
@pulumi.getter
|
|
164
|
+
def skip(self) -> Optional[_builtins.bool]:
|
|
165
|
+
return pulumi.get(self, "skip")
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
@pulumi.output_type
|
|
169
|
+
class AnomalyDetectorRandomCutForestConfiguration(dict):
|
|
170
|
+
@staticmethod
|
|
171
|
+
def __key_warning(key: str):
|
|
172
|
+
suggest = None
|
|
173
|
+
if key == "ignoreNearExpectedFromAbove":
|
|
174
|
+
suggest = "ignore_near_expected_from_above"
|
|
175
|
+
elif key == "ignoreNearExpectedFromBelow":
|
|
176
|
+
suggest = "ignore_near_expected_from_below"
|
|
177
|
+
elif key == "sampleSize":
|
|
178
|
+
suggest = "sample_size"
|
|
179
|
+
elif key == "shingleSize":
|
|
180
|
+
suggest = "shingle_size"
|
|
181
|
+
|
|
182
|
+
if suggest:
|
|
183
|
+
pulumi.log.warn(f"Key '{key}' not found in AnomalyDetectorRandomCutForestConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
184
|
+
|
|
185
|
+
def __getitem__(self, key: str) -> Any:
|
|
186
|
+
AnomalyDetectorRandomCutForestConfiguration.__key_warning(key)
|
|
187
|
+
return super().__getitem__(key)
|
|
188
|
+
|
|
189
|
+
def get(self, key: str, default = None) -> Any:
|
|
190
|
+
AnomalyDetectorRandomCutForestConfiguration.__key_warning(key)
|
|
191
|
+
return super().get(key, default)
|
|
192
|
+
|
|
193
|
+
def __init__(__self__, *,
|
|
194
|
+
query: _builtins.str,
|
|
195
|
+
ignore_near_expected_from_above: Optional['outputs.AnomalyDetectorIgnoreNearExpected'] = None,
|
|
196
|
+
ignore_near_expected_from_below: Optional['outputs.AnomalyDetectorIgnoreNearExpected'] = None,
|
|
197
|
+
sample_size: Optional[_builtins.int] = None,
|
|
198
|
+
shingle_size: Optional[_builtins.int] = None):
|
|
199
|
+
pulumi.set(__self__, "query", query)
|
|
200
|
+
if ignore_near_expected_from_above is not None:
|
|
201
|
+
pulumi.set(__self__, "ignore_near_expected_from_above", ignore_near_expected_from_above)
|
|
202
|
+
if ignore_near_expected_from_below is not None:
|
|
203
|
+
pulumi.set(__self__, "ignore_near_expected_from_below", ignore_near_expected_from_below)
|
|
204
|
+
if sample_size is not None:
|
|
205
|
+
pulumi.set(__self__, "sample_size", sample_size)
|
|
206
|
+
if shingle_size is not None:
|
|
207
|
+
pulumi.set(__self__, "shingle_size", shingle_size)
|
|
208
|
+
|
|
209
|
+
@_builtins.property
|
|
210
|
+
@pulumi.getter
|
|
211
|
+
def query(self) -> _builtins.str:
|
|
212
|
+
return pulumi.get(self, "query")
|
|
213
|
+
|
|
214
|
+
@_builtins.property
|
|
215
|
+
@pulumi.getter(name="ignoreNearExpectedFromAbove")
|
|
216
|
+
def ignore_near_expected_from_above(self) -> Optional['outputs.AnomalyDetectorIgnoreNearExpected']:
|
|
217
|
+
return pulumi.get(self, "ignore_near_expected_from_above")
|
|
218
|
+
|
|
219
|
+
@_builtins.property
|
|
220
|
+
@pulumi.getter(name="ignoreNearExpectedFromBelow")
|
|
221
|
+
def ignore_near_expected_from_below(self) -> Optional['outputs.AnomalyDetectorIgnoreNearExpected']:
|
|
222
|
+
return pulumi.get(self, "ignore_near_expected_from_below")
|
|
223
|
+
|
|
224
|
+
@_builtins.property
|
|
225
|
+
@pulumi.getter(name="sampleSize")
|
|
226
|
+
def sample_size(self) -> Optional[_builtins.int]:
|
|
227
|
+
return pulumi.get(self, "sample_size")
|
|
228
|
+
|
|
229
|
+
@_builtins.property
|
|
230
|
+
@pulumi.getter(name="shingleSize")
|
|
231
|
+
def shingle_size(self) -> Optional[_builtins.int]:
|
|
232
|
+
return pulumi.get(self, "shingle_size")
|
|
233
|
+
|
|
234
|
+
|
|
42
235
|
@pulumi.output_type
|
|
43
236
|
class ScraperCloudWatchLogDestination(dict):
|
|
44
237
|
"""
|
|
@@ -5545,6 +5545,7 @@ if not MYPY:
|
|
|
5545
5545
|
Specifies how long, in seconds, CloudFront waits for a response from the origin. This is also known as the *origin response timeout*. The minimum timeout is 1 second, the maximum is 120 seconds, and the default (if you don't specify otherwise) is 30 seconds.
|
|
5546
5546
|
For more information, see [Response timeout](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/DownloadDistValuesOrigin.html#DownloadDistValuesOriginResponseTimeout) in the *Amazon CloudFront Developer Guide*.
|
|
5547
5547
|
"""
|
|
5548
|
+
owner_account_id: NotRequired[pulumi.Input[_builtins.str]]
|
|
5548
5549
|
elif False:
|
|
5549
5550
|
DistributionVpcOriginConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
5550
5551
|
|
|
@@ -5553,7 +5554,8 @@ class DistributionVpcOriginConfigArgs:
|
|
|
5553
5554
|
def __init__(__self__, *,
|
|
5554
5555
|
vpc_origin_id: pulumi.Input[_builtins.str],
|
|
5555
5556
|
origin_keepalive_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
5556
|
-
origin_read_timeout: Optional[pulumi.Input[_builtins.int]] = None
|
|
5557
|
+
origin_read_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
|
5558
|
+
owner_account_id: Optional[pulumi.Input[_builtins.str]] = None):
|
|
5557
5559
|
"""
|
|
5558
5560
|
An Amazon CloudFront VPC origin configuration.
|
|
5559
5561
|
:param pulumi.Input[_builtins.str] vpc_origin_id: The VPC origin ID.
|
|
@@ -5567,6 +5569,8 @@ class DistributionVpcOriginConfigArgs:
|
|
|
5567
5569
|
pulumi.set(__self__, "origin_keepalive_timeout", origin_keepalive_timeout)
|
|
5568
5570
|
if origin_read_timeout is not None:
|
|
5569
5571
|
pulumi.set(__self__, "origin_read_timeout", origin_read_timeout)
|
|
5572
|
+
if owner_account_id is not None:
|
|
5573
|
+
pulumi.set(__self__, "owner_account_id", owner_account_id)
|
|
5570
5574
|
|
|
5571
5575
|
@_builtins.property
|
|
5572
5576
|
@pulumi.getter(name="vpcOriginId")
|
|
@@ -5606,6 +5610,15 @@ class DistributionVpcOriginConfigArgs:
|
|
|
5606
5610
|
def origin_read_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
|
5607
5611
|
pulumi.set(self, "origin_read_timeout", value)
|
|
5608
5612
|
|
|
5613
|
+
@_builtins.property
|
|
5614
|
+
@pulumi.getter(name="ownerAccountId")
|
|
5615
|
+
def owner_account_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
5616
|
+
return pulumi.get(self, "owner_account_id")
|
|
5617
|
+
|
|
5618
|
+
@owner_account_id.setter
|
|
5619
|
+
def owner_account_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
5620
|
+
pulumi.set(self, "owner_account_id", value)
|
|
5621
|
+
|
|
5609
5622
|
|
|
5610
5623
|
if not MYPY:
|
|
5611
5624
|
class FunctionConfigArgsDict(TypedDict):
|
|
@@ -25,7 +25,10 @@ __all__ = [
|
|
|
25
25
|
|
|
26
26
|
@pulumi.output_type
|
|
27
27
|
class GetVpcOriginResult:
|
|
28
|
-
def __init__(__self__, arn=None, created_time=None, id=None, last_modified_time=None, status=None, tags=None, vpc_origin_endpoint_config=None):
|
|
28
|
+
def __init__(__self__, account_id=None, arn=None, created_time=None, id=None, last_modified_time=None, status=None, tags=None, vpc_origin_endpoint_config=None):
|
|
29
|
+
if account_id and not isinstance(account_id, str):
|
|
30
|
+
raise TypeError("Expected argument 'account_id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "account_id", account_id)
|
|
29
32
|
if arn and not isinstance(arn, str):
|
|
30
33
|
raise TypeError("Expected argument 'arn' to be a str")
|
|
31
34
|
pulumi.set(__self__, "arn", arn)
|
|
@@ -48,6 +51,11 @@ class GetVpcOriginResult:
|
|
|
48
51
|
raise TypeError("Expected argument 'vpc_origin_endpoint_config' to be a dict")
|
|
49
52
|
pulumi.set(__self__, "vpc_origin_endpoint_config", vpc_origin_endpoint_config)
|
|
50
53
|
|
|
54
|
+
@_builtins.property
|
|
55
|
+
@pulumi.getter(name="accountId")
|
|
56
|
+
def account_id(self) -> Optional[_builtins.str]:
|
|
57
|
+
return pulumi.get(self, "account_id")
|
|
58
|
+
|
|
51
59
|
@_builtins.property
|
|
52
60
|
@pulumi.getter
|
|
53
61
|
def arn(self) -> Optional[_builtins.str]:
|
|
@@ -111,6 +119,7 @@ class AwaitableGetVpcOriginResult(GetVpcOriginResult):
|
|
|
111
119
|
if False:
|
|
112
120
|
yield self
|
|
113
121
|
return GetVpcOriginResult(
|
|
122
|
+
account_id=self.account_id,
|
|
114
123
|
arn=self.arn,
|
|
115
124
|
created_time=self.created_time,
|
|
116
125
|
id=self.id,
|
|
@@ -134,6 +143,7 @@ def get_vpc_origin(id: Optional[_builtins.str] = None,
|
|
|
134
143
|
__ret__ = pulumi.runtime.invoke('aws-native:cloudfront:getVpcOrigin', __args__, opts=opts, typ=GetVpcOriginResult).value
|
|
135
144
|
|
|
136
145
|
return AwaitableGetVpcOriginResult(
|
|
146
|
+
account_id=pulumi.get(__ret__, 'account_id'),
|
|
137
147
|
arn=pulumi.get(__ret__, 'arn'),
|
|
138
148
|
created_time=pulumi.get(__ret__, 'created_time'),
|
|
139
149
|
id=pulumi.get(__ret__, 'id'),
|
|
@@ -154,6 +164,7 @@ def get_vpc_origin_output(id: Optional[pulumi.Input[_builtins.str]] = None,
|
|
|
154
164
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
155
165
|
__ret__ = pulumi.runtime.invoke_output('aws-native:cloudfront:getVpcOrigin', __args__, opts=opts, typ=GetVpcOriginResult)
|
|
156
166
|
return __ret__.apply(lambda __response__: GetVpcOriginResult(
|
|
167
|
+
account_id=pulumi.get(__response__, 'account_id'),
|
|
157
168
|
arn=pulumi.get(__response__, 'arn'),
|
|
158
169
|
created_time=pulumi.get(__response__, 'created_time'),
|
|
159
170
|
id=pulumi.get(__response__, 'id'),
|
|
@@ -4347,6 +4347,8 @@ class DistributionVpcOriginConfig(dict):
|
|
|
4347
4347
|
suggest = "origin_keepalive_timeout"
|
|
4348
4348
|
elif key == "originReadTimeout":
|
|
4349
4349
|
suggest = "origin_read_timeout"
|
|
4350
|
+
elif key == "ownerAccountId":
|
|
4351
|
+
suggest = "owner_account_id"
|
|
4350
4352
|
|
|
4351
4353
|
if suggest:
|
|
4352
4354
|
pulumi.log.warn(f"Key '{key}' not found in DistributionVpcOriginConfig. Access the value via the '{suggest}' property getter instead.")
|
|
@@ -4362,7 +4364,8 @@ class DistributionVpcOriginConfig(dict):
|
|
|
4362
4364
|
def __init__(__self__, *,
|
|
4363
4365
|
vpc_origin_id: _builtins.str,
|
|
4364
4366
|
origin_keepalive_timeout: Optional[_builtins.int] = None,
|
|
4365
|
-
origin_read_timeout: Optional[_builtins.int] = None
|
|
4367
|
+
origin_read_timeout: Optional[_builtins.int] = None,
|
|
4368
|
+
owner_account_id: Optional[_builtins.str] = None):
|
|
4366
4369
|
"""
|
|
4367
4370
|
An Amazon CloudFront VPC origin configuration.
|
|
4368
4371
|
:param _builtins.str vpc_origin_id: The VPC origin ID.
|
|
@@ -4376,6 +4379,8 @@ class DistributionVpcOriginConfig(dict):
|
|
|
4376
4379
|
pulumi.set(__self__, "origin_keepalive_timeout", origin_keepalive_timeout)
|
|
4377
4380
|
if origin_read_timeout is not None:
|
|
4378
4381
|
pulumi.set(__self__, "origin_read_timeout", origin_read_timeout)
|
|
4382
|
+
if owner_account_id is not None:
|
|
4383
|
+
pulumi.set(__self__, "owner_account_id", owner_account_id)
|
|
4379
4384
|
|
|
4380
4385
|
@_builtins.property
|
|
4381
4386
|
@pulumi.getter(name="vpcOriginId")
|
|
@@ -4403,6 +4408,11 @@ class DistributionVpcOriginConfig(dict):
|
|
|
4403
4408
|
"""
|
|
4404
4409
|
return pulumi.get(self, "origin_read_timeout")
|
|
4405
4410
|
|
|
4411
|
+
@_builtins.property
|
|
4412
|
+
@pulumi.getter(name="ownerAccountId")
|
|
4413
|
+
def owner_account_id(self) -> Optional[_builtins.str]:
|
|
4414
|
+
return pulumi.get(self, "owner_account_id")
|
|
4415
|
+
|
|
4406
4416
|
|
|
4407
4417
|
@pulumi.output_type
|
|
4408
4418
|
class FunctionConfig(dict):
|
|
@@ -115,6 +115,7 @@ class VpcOrigin(pulumi.CustomResource):
|
|
|
115
115
|
if vpc_origin_endpoint_config is None and not opts.urn:
|
|
116
116
|
raise TypeError("Missing required property 'vpc_origin_endpoint_config'")
|
|
117
117
|
__props__.__dict__["vpc_origin_endpoint_config"] = vpc_origin_endpoint_config
|
|
118
|
+
__props__.__dict__["account_id"] = None
|
|
118
119
|
__props__.__dict__["arn"] = None
|
|
119
120
|
__props__.__dict__["aws_id"] = None
|
|
120
121
|
__props__.__dict__["created_time"] = None
|
|
@@ -142,6 +143,7 @@ class VpcOrigin(pulumi.CustomResource):
|
|
|
142
143
|
|
|
143
144
|
__props__ = VpcOriginArgs.__new__(VpcOriginArgs)
|
|
144
145
|
|
|
146
|
+
__props__.__dict__["account_id"] = None
|
|
145
147
|
__props__.__dict__["arn"] = None
|
|
146
148
|
__props__.__dict__["aws_id"] = None
|
|
147
149
|
__props__.__dict__["created_time"] = None
|
|
@@ -151,6 +153,11 @@ class VpcOrigin(pulumi.CustomResource):
|
|
|
151
153
|
__props__.__dict__["vpc_origin_endpoint_config"] = None
|
|
152
154
|
return VpcOrigin(resource_name, opts=opts, __props__=__props__)
|
|
153
155
|
|
|
156
|
+
@_builtins.property
|
|
157
|
+
@pulumi.getter(name="accountId")
|
|
158
|
+
def account_id(self) -> pulumi.Output[_builtins.str]:
|
|
159
|
+
return pulumi.get(self, "account_id")
|
|
160
|
+
|
|
154
161
|
@_builtins.property
|
|
155
162
|
@pulumi.getter
|
|
156
163
|
def arn(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -11,7 +11,14 @@ __all__ = [
|
|
|
11
11
|
'AgentStatusType',
|
|
12
12
|
'ContactFlowState',
|
|
13
13
|
'ContactFlowType',
|
|
14
|
+
'EvaluationFormItemEnablementConditionOperator',
|
|
15
|
+
'EvaluationFormItemEnablementConfigurationAction',
|
|
16
|
+
'EvaluationFormItemEnablementConfigurationDefaultAction',
|
|
17
|
+
'EvaluationFormItemEnablementExpressionComparator',
|
|
18
|
+
'EvaluationFormItemEnablementSourceType',
|
|
19
|
+
'EvaluationFormItemEnablementSourceValueType',
|
|
14
20
|
'EvaluationFormNumericQuestionPropertyValueAutomationLabel',
|
|
21
|
+
'EvaluationFormQuestionAutomationAnswerSourceSourceType',
|
|
15
22
|
'EvaluationFormQuestionQuestionType',
|
|
16
23
|
'EvaluationFormScoringStrategyMode',
|
|
17
24
|
'EvaluationFormScoringStrategyStatus',
|
|
@@ -89,6 +96,58 @@ class ContactFlowType(_builtins.str, Enum):
|
|
|
89
96
|
CAMPAIGN = "CAMPAIGN"
|
|
90
97
|
|
|
91
98
|
|
|
99
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormItemEnablementConditionOperator")
|
|
100
|
+
class EvaluationFormItemEnablementConditionOperator(_builtins.str, Enum):
|
|
101
|
+
"""
|
|
102
|
+
The logical operator used to combine multiple operands, determining how the condition is evaluated as a whole.
|
|
103
|
+
"""
|
|
104
|
+
OR_ = "OR"
|
|
105
|
+
AND_ = "AND"
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormItemEnablementConfigurationAction")
|
|
109
|
+
class EvaluationFormItemEnablementConfigurationAction(_builtins.str, Enum):
|
|
110
|
+
"""
|
|
111
|
+
Defines the enablement status to be applied when the specified condition is met.
|
|
112
|
+
"""
|
|
113
|
+
DISABLE = "DISABLE"
|
|
114
|
+
ENABLE = "ENABLE"
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormItemEnablementConfigurationDefaultAction")
|
|
118
|
+
class EvaluationFormItemEnablementConfigurationDefaultAction(_builtins.str, Enum):
|
|
119
|
+
"""
|
|
120
|
+
Specifies the default enablement status to be applied when the condition is not satisfied.
|
|
121
|
+
"""
|
|
122
|
+
DISABLE = "DISABLE"
|
|
123
|
+
ENABLE = "ENABLE"
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormItemEnablementExpressionComparator")
|
|
127
|
+
class EvaluationFormItemEnablementExpressionComparator(_builtins.str, Enum):
|
|
128
|
+
"""
|
|
129
|
+
Specifies the comparison method to determine if the source value matches any of the specified values.
|
|
130
|
+
"""
|
|
131
|
+
IN_ = "IN"
|
|
132
|
+
NOT_IN = "NOT_IN"
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormItemEnablementSourceType")
|
|
136
|
+
class EvaluationFormItemEnablementSourceType(_builtins.str, Enum):
|
|
137
|
+
"""
|
|
138
|
+
The type of the source entity.
|
|
139
|
+
"""
|
|
140
|
+
QUESTION_REF_ID = "QUESTION_REF_ID"
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormItemEnablementSourceValueType")
|
|
144
|
+
class EvaluationFormItemEnablementSourceValueType(_builtins.str, Enum):
|
|
145
|
+
"""
|
|
146
|
+
Type of the source entity value.
|
|
147
|
+
"""
|
|
148
|
+
OPTION_REF_ID = "OPTION_REF_ID"
|
|
149
|
+
|
|
150
|
+
|
|
92
151
|
@pulumi.type_token("aws-native:connect:EvaluationFormNumericQuestionPropertyValueAutomationLabel")
|
|
93
152
|
class EvaluationFormNumericQuestionPropertyValueAutomationLabel(_builtins.str, Enum):
|
|
94
153
|
"""
|
|
@@ -107,6 +166,15 @@ class EvaluationFormNumericQuestionPropertyValueAutomationLabel(_builtins.str, E
|
|
|
107
166
|
AGENT_INTERACTION_AND_HOLD_DURATION = "AGENT_INTERACTION_AND_HOLD_DURATION"
|
|
108
167
|
|
|
109
168
|
|
|
169
|
+
@pulumi.type_token("aws-native:connect:EvaluationFormQuestionAutomationAnswerSourceSourceType")
|
|
170
|
+
class EvaluationFormQuestionAutomationAnswerSourceSourceType(_builtins.str, Enum):
|
|
171
|
+
"""
|
|
172
|
+
The type of the answer sourcr
|
|
173
|
+
"""
|
|
174
|
+
CONTACT_LENS_DATA = "CONTACT_LENS_DATA"
|
|
175
|
+
GEN_AI = "GEN_AI"
|
|
176
|
+
|
|
177
|
+
|
|
110
178
|
@pulumi.type_token("aws-native:connect:EvaluationFormQuestionQuestionType")
|
|
111
179
|
class EvaluationFormQuestionQuestionType(_builtins.str, Enum):
|
|
112
180
|
"""
|