pulumi-aws-native 1.38.0a1761631437__py3-none-any.whl → 1.39.0a1762376209__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.
- pulumi_aws_native/__init__.py +19 -1
- pulumi_aws_native/amazonmq/_enums.py +4 -12
- pulumi_aws_native/amazonmq/_inputs.py +21 -91
- pulumi_aws_native/amazonmq/broker.py +56 -67
- pulumi_aws_native/amazonmq/get_broker.py +6 -13
- pulumi_aws_native/amazonmq/outputs.py +14 -54
- pulumi_aws_native/appstream/get_image_builder.py +0 -4
- pulumi_aws_native/appstream/image_builder.py +0 -16
- pulumi_aws_native/aps/_inputs.py +58 -0
- pulumi_aws_native/aps/outputs.py +36 -0
- pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
- pulumi_aws_native/arcregionswitch/plan.py +0 -3
- pulumi_aws_native/batch/_inputs.py +34 -0
- pulumi_aws_native/batch/job_definition.py +29 -0
- pulumi_aws_native/batch/outputs.py +37 -0
- pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
- pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
- pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
- pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
- pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
- pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
- pulumi_aws_native/ce/_enums.py +3 -0
- pulumi_aws_native/cleanrooms/configured_table.py +4 -4
- pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
- pulumi_aws_native/cognito/__init__.py +2 -0
- pulumi_aws_native/cognito/_enums.py +12 -0
- pulumi_aws_native/cognito/get_terms.py +117 -0
- pulumi_aws_native/cognito/terms.py +236 -0
- pulumi_aws_native/connectcampaignsv2/_inputs.py +28 -0
- pulumi_aws_native/connectcampaignsv2/outputs.py +16 -0
- pulumi_aws_native/datazone/_inputs.py +81 -0
- pulumi_aws_native/datazone/connection.py +83 -26
- pulumi_aws_native/datazone/outputs.py +84 -0
- pulumi_aws_native/ec2/__init__.py +2 -0
- pulumi_aws_native/ec2/_enums.py +19 -0
- pulumi_aws_native/ec2/_inputs.py +15 -12
- pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
- pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
- pulumi_aws_native/ec2/get_volume.py +37 -15
- pulumi_aws_native/ec2/outputs.py +10 -8
- pulumi_aws_native/ec2/volume.py +115 -74
- pulumi_aws_native/ecs/_enums.py +23 -0
- pulumi_aws_native/ecs/_inputs.py +230 -23
- pulumi_aws_native/ecs/outputs.py +195 -15
- pulumi_aws_native/eks/_enums.py +11 -0
- pulumi_aws_native/eks/_inputs.py +199 -1
- pulumi_aws_native/eks/get_nodegroup.py +1 -0
- pulumi_aws_native/eks/nodegroup.py +1 -0
- pulumi_aws_native/eks/outputs.py +169 -1
- pulumi_aws_native/elasticloadbalancingv2/_inputs.py +12 -12
- pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
- pulumi_aws_native/elasticloadbalancingv2/outputs.py +8 -8
- pulumi_aws_native/glue/__init__.py +2 -0
- pulumi_aws_native/glue/_inputs.py +134 -0
- pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
- pulumi_aws_native/glue/integration_resource_property.py +229 -0
- pulumi_aws_native/glue/outputs.py +122 -0
- pulumi_aws_native/imagebuilder/_inputs.py +37 -0
- pulumi_aws_native/imagebuilder/image.py +29 -0
- pulumi_aws_native/imagebuilder/outputs.py +40 -0
- pulumi_aws_native/kendra/_inputs.py +21 -21
- pulumi_aws_native/kendra/outputs.py +14 -14
- pulumi_aws_native/mediapackagev2/_inputs.py +7 -0
- pulumi_aws_native/mediapackagev2/outputs.py +4 -0
- pulumi_aws_native/networkfirewall/_enums.py +2 -0
- pulumi_aws_native/networkfirewall/_inputs.py +20 -0
- pulumi_aws_native/networkfirewall/firewall.py +10 -0
- pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
- pulumi_aws_native/networkfirewall/outputs.py +14 -0
- pulumi_aws_native/pulumi-plugin.json +1 -1
- pulumi_aws_native/qbusiness/_inputs.py +3 -3
- pulumi_aws_native/qbusiness/application.py +4 -4
- pulumi_aws_native/qbusiness/outputs.py +2 -2
- pulumi_aws_native/quicksight/_inputs.py +9 -9
- pulumi_aws_native/quicksight/outputs.py +6 -6
- pulumi_aws_native/rtbfabric/__init__.py +2 -0
- pulumi_aws_native/rtbfabric/_enums.py +44 -0
- pulumi_aws_native/rtbfabric/_inputs.py +330 -0
- pulumi_aws_native/rtbfabric/get_link.py +199 -0
- pulumi_aws_native/rtbfabric/get_requester_gateway.py +15 -0
- pulumi_aws_native/rtbfabric/get_responder_gateway.py +30 -0
- pulumi_aws_native/rtbfabric/link.py +344 -0
- pulumi_aws_native/rtbfabric/outputs.py +306 -0
- pulumi_aws_native/rtbfabric/requester_gateway.py +40 -0
- pulumi_aws_native/rtbfabric/responder_gateway.py +80 -0
- pulumi_aws_native/s3/_enums.py +1 -1
- pulumi_aws_native/s3/_inputs.py +11 -5
- pulumi_aws_native/s3/outputs.py +10 -4
- pulumi_aws_native/s3vectors/__init__.py +17 -0
- pulumi_aws_native/s3vectors/_enums.py +39 -0
- pulumi_aws_native/s3vectors/_inputs.py +138 -0
- pulumi_aws_native/s3vectors/get_index.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
- pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
- pulumi_aws_native/s3vectors/index.py +367 -0
- pulumi_aws_native/s3vectors/outputs.py +129 -0
- pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
- pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
- pulumi_aws_native/sagemaker/_enums.py +2 -171
- pulumi_aws_native/sagemaker/_inputs.py +17 -5
- pulumi_aws_native/sagemaker/outputs.py +11 -3
- pulumi_aws_native/sso/_enums.py +1 -1
- pulumi_aws_native/sso/assignment.py +8 -8
- pulumi_aws_native/transfer/_enums.py +15 -0
- pulumi_aws_native/transfer/_inputs.py +86 -0
- pulumi_aws_native/transfer/connector.py +86 -19
- pulumi_aws_native/transfer/get_connector.py +43 -1
- pulumi_aws_native/transfer/outputs.py +86 -0
- pulumi_aws_native/wafv2/_inputs.py +72 -0
- pulumi_aws_native/wafv2/get_web_acl.py +15 -1
- pulumi_aws_native/wafv2/outputs.py +45 -0
- pulumi_aws_native/wafv2/web_acl.py +29 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/METADATA +1 -1
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/RECORD +116 -96
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/WHEEL +0 -0
- {pulumi_aws_native-1.38.0a1761631437.dist-info → pulumi_aws_native-1.39.0a1762376209.dist-info}/top_level.txt +0 -0
|
@@ -13,13 +13,313 @@ if sys.version_info >= (3, 11):
|
|
|
13
13
|
else:
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from .. import _utilities
|
|
16
|
+
from . import outputs
|
|
16
17
|
from ._enums import *
|
|
17
18
|
|
|
18
19
|
__all__ = [
|
|
20
|
+
'LinkAttributes',
|
|
21
|
+
'LinkLogSettings',
|
|
22
|
+
'LinkLogSettingsApplicationLogsProperties',
|
|
23
|
+
'LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties',
|
|
24
|
+
'LinkModuleConfiguration',
|
|
25
|
+
'LinkModuleParameters',
|
|
26
|
+
'LinkResponderErrorMaskingForHttpCode',
|
|
19
27
|
'ResponderGatewayManagedEndpointConfiguration',
|
|
20
28
|
'ResponderGatewayTrustStoreConfiguration',
|
|
21
29
|
]
|
|
22
30
|
|
|
31
|
+
@pulumi.output_type
|
|
32
|
+
class LinkAttributes(dict):
|
|
33
|
+
@staticmethod
|
|
34
|
+
def __key_warning(key: str):
|
|
35
|
+
suggest = None
|
|
36
|
+
if key == "customerProvidedId":
|
|
37
|
+
suggest = "customer_provided_id"
|
|
38
|
+
elif key == "responderErrorMasking":
|
|
39
|
+
suggest = "responder_error_masking"
|
|
40
|
+
|
|
41
|
+
if suggest:
|
|
42
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkAttributes. Access the value via the '{suggest}' property getter instead.")
|
|
43
|
+
|
|
44
|
+
def __getitem__(self, key: str) -> Any:
|
|
45
|
+
LinkAttributes.__key_warning(key)
|
|
46
|
+
return super().__getitem__(key)
|
|
47
|
+
|
|
48
|
+
def get(self, key: str, default = None) -> Any:
|
|
49
|
+
LinkAttributes.__key_warning(key)
|
|
50
|
+
return super().get(key, default)
|
|
51
|
+
|
|
52
|
+
def __init__(__self__, *,
|
|
53
|
+
customer_provided_id: Optional[_builtins.str] = None,
|
|
54
|
+
responder_error_masking: Optional[Sequence['outputs.LinkResponderErrorMaskingForHttpCode']] = None):
|
|
55
|
+
"""
|
|
56
|
+
:param _builtins.str customer_provided_id: The customer-provided unique identifier of the link.
|
|
57
|
+
:param Sequence['LinkResponderErrorMaskingForHttpCode'] responder_error_masking: Describes the masking for HTTP error codes.
|
|
58
|
+
"""
|
|
59
|
+
if customer_provided_id is not None:
|
|
60
|
+
pulumi.set(__self__, "customer_provided_id", customer_provided_id)
|
|
61
|
+
if responder_error_masking is not None:
|
|
62
|
+
pulumi.set(__self__, "responder_error_masking", responder_error_masking)
|
|
63
|
+
|
|
64
|
+
@_builtins.property
|
|
65
|
+
@pulumi.getter(name="customerProvidedId")
|
|
66
|
+
def customer_provided_id(self) -> Optional[_builtins.str]:
|
|
67
|
+
"""
|
|
68
|
+
The customer-provided unique identifier of the link.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "customer_provided_id")
|
|
71
|
+
|
|
72
|
+
@_builtins.property
|
|
73
|
+
@pulumi.getter(name="responderErrorMasking")
|
|
74
|
+
def responder_error_masking(self) -> Optional[Sequence['outputs.LinkResponderErrorMaskingForHttpCode']]:
|
|
75
|
+
"""
|
|
76
|
+
Describes the masking for HTTP error codes.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "responder_error_masking")
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
@pulumi.output_type
|
|
82
|
+
class LinkLogSettings(dict):
|
|
83
|
+
@staticmethod
|
|
84
|
+
def __key_warning(key: str):
|
|
85
|
+
suggest = None
|
|
86
|
+
if key == "applicationLogs":
|
|
87
|
+
suggest = "application_logs"
|
|
88
|
+
|
|
89
|
+
if suggest:
|
|
90
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkLogSettings. Access the value via the '{suggest}' property getter instead.")
|
|
91
|
+
|
|
92
|
+
def __getitem__(self, key: str) -> Any:
|
|
93
|
+
LinkLogSettings.__key_warning(key)
|
|
94
|
+
return super().__getitem__(key)
|
|
95
|
+
|
|
96
|
+
def get(self, key: str, default = None) -> Any:
|
|
97
|
+
LinkLogSettings.__key_warning(key)
|
|
98
|
+
return super().get(key, default)
|
|
99
|
+
|
|
100
|
+
def __init__(__self__, *,
|
|
101
|
+
application_logs: 'outputs.LinkLogSettingsApplicationLogsProperties'):
|
|
102
|
+
"""
|
|
103
|
+
:param 'LinkLogSettingsApplicationLogsProperties' application_logs: Describes the configuration of a link application log.
|
|
104
|
+
"""
|
|
105
|
+
pulumi.set(__self__, "application_logs", application_logs)
|
|
106
|
+
|
|
107
|
+
@_builtins.property
|
|
108
|
+
@pulumi.getter(name="applicationLogs")
|
|
109
|
+
def application_logs(self) -> 'outputs.LinkLogSettingsApplicationLogsProperties':
|
|
110
|
+
"""
|
|
111
|
+
Describes the configuration of a link application log.
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "application_logs")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
@pulumi.output_type
|
|
117
|
+
class LinkLogSettingsApplicationLogsProperties(dict):
|
|
118
|
+
"""
|
|
119
|
+
Describes the configuration of a link application log.
|
|
120
|
+
"""
|
|
121
|
+
@staticmethod
|
|
122
|
+
def __key_warning(key: str):
|
|
123
|
+
suggest = None
|
|
124
|
+
if key == "linkApplicationLogSampling":
|
|
125
|
+
suggest = "link_application_log_sampling"
|
|
126
|
+
|
|
127
|
+
if suggest:
|
|
128
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkLogSettingsApplicationLogsProperties. Access the value via the '{suggest}' property getter instead.")
|
|
129
|
+
|
|
130
|
+
def __getitem__(self, key: str) -> Any:
|
|
131
|
+
LinkLogSettingsApplicationLogsProperties.__key_warning(key)
|
|
132
|
+
return super().__getitem__(key)
|
|
133
|
+
|
|
134
|
+
def get(self, key: str, default = None) -> Any:
|
|
135
|
+
LinkLogSettingsApplicationLogsProperties.__key_warning(key)
|
|
136
|
+
return super().get(key, default)
|
|
137
|
+
|
|
138
|
+
def __init__(__self__, *,
|
|
139
|
+
link_application_log_sampling: 'outputs.LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties'):
|
|
140
|
+
"""
|
|
141
|
+
Describes the configuration of a link application log.
|
|
142
|
+
"""
|
|
143
|
+
pulumi.set(__self__, "link_application_log_sampling", link_application_log_sampling)
|
|
144
|
+
|
|
145
|
+
@_builtins.property
|
|
146
|
+
@pulumi.getter(name="linkApplicationLogSampling")
|
|
147
|
+
def link_application_log_sampling(self) -> 'outputs.LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties':
|
|
148
|
+
return pulumi.get(self, "link_application_log_sampling")
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
@pulumi.output_type
|
|
152
|
+
class LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties(dict):
|
|
153
|
+
@staticmethod
|
|
154
|
+
def __key_warning(key: str):
|
|
155
|
+
suggest = None
|
|
156
|
+
if key == "errorLog":
|
|
157
|
+
suggest = "error_log"
|
|
158
|
+
elif key == "filterLog":
|
|
159
|
+
suggest = "filter_log"
|
|
160
|
+
|
|
161
|
+
if suggest:
|
|
162
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties. Access the value via the '{suggest}' property getter instead.")
|
|
163
|
+
|
|
164
|
+
def __getitem__(self, key: str) -> Any:
|
|
165
|
+
LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties.__key_warning(key)
|
|
166
|
+
return super().__getitem__(key)
|
|
167
|
+
|
|
168
|
+
def get(self, key: str, default = None) -> Any:
|
|
169
|
+
LinkLogSettingsApplicationLogsPropertiesLinkApplicationLogSamplingProperties.__key_warning(key)
|
|
170
|
+
return super().get(key, default)
|
|
171
|
+
|
|
172
|
+
def __init__(__self__, *,
|
|
173
|
+
error_log: _builtins.float,
|
|
174
|
+
filter_log: _builtins.float):
|
|
175
|
+
pulumi.set(__self__, "error_log", error_log)
|
|
176
|
+
pulumi.set(__self__, "filter_log", filter_log)
|
|
177
|
+
|
|
178
|
+
@_builtins.property
|
|
179
|
+
@pulumi.getter(name="errorLog")
|
|
180
|
+
def error_log(self) -> _builtins.float:
|
|
181
|
+
return pulumi.get(self, "error_log")
|
|
182
|
+
|
|
183
|
+
@_builtins.property
|
|
184
|
+
@pulumi.getter(name="filterLog")
|
|
185
|
+
def filter_log(self) -> _builtins.float:
|
|
186
|
+
return pulumi.get(self, "filter_log")
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
@pulumi.output_type
|
|
190
|
+
class LinkModuleConfiguration(dict):
|
|
191
|
+
@staticmethod
|
|
192
|
+
def __key_warning(key: str):
|
|
193
|
+
suggest = None
|
|
194
|
+
if key == "dependsOn":
|
|
195
|
+
suggest = "depends_on"
|
|
196
|
+
elif key == "moduleParameters":
|
|
197
|
+
suggest = "module_parameters"
|
|
198
|
+
|
|
199
|
+
if suggest:
|
|
200
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkModuleConfiguration. Access the value via the '{suggest}' property getter instead.")
|
|
201
|
+
|
|
202
|
+
def __getitem__(self, key: str) -> Any:
|
|
203
|
+
LinkModuleConfiguration.__key_warning(key)
|
|
204
|
+
return super().__getitem__(key)
|
|
205
|
+
|
|
206
|
+
def get(self, key: str, default = None) -> Any:
|
|
207
|
+
LinkModuleConfiguration.__key_warning(key)
|
|
208
|
+
return super().get(key, default)
|
|
209
|
+
|
|
210
|
+
def __init__(__self__, *,
|
|
211
|
+
name: _builtins.str,
|
|
212
|
+
depends_on: Optional[Sequence[_builtins.str]] = None,
|
|
213
|
+
module_parameters: Optional['outputs.LinkModuleParameters'] = None,
|
|
214
|
+
version: Optional[_builtins.str] = None):
|
|
215
|
+
pulumi.set(__self__, "name", name)
|
|
216
|
+
if depends_on is not None:
|
|
217
|
+
pulumi.set(__self__, "depends_on", depends_on)
|
|
218
|
+
if module_parameters is not None:
|
|
219
|
+
pulumi.set(__self__, "module_parameters", module_parameters)
|
|
220
|
+
if version is not None:
|
|
221
|
+
pulumi.set(__self__, "version", version)
|
|
222
|
+
|
|
223
|
+
@_builtins.property
|
|
224
|
+
@pulumi.getter
|
|
225
|
+
def name(self) -> _builtins.str:
|
|
226
|
+
return pulumi.get(self, "name")
|
|
227
|
+
|
|
228
|
+
@_builtins.property
|
|
229
|
+
@pulumi.getter(name="dependsOn")
|
|
230
|
+
def depends_on(self) -> Optional[Sequence[_builtins.str]]:
|
|
231
|
+
return pulumi.get(self, "depends_on")
|
|
232
|
+
|
|
233
|
+
@_builtins.property
|
|
234
|
+
@pulumi.getter(name="moduleParameters")
|
|
235
|
+
def module_parameters(self) -> Optional['outputs.LinkModuleParameters']:
|
|
236
|
+
return pulumi.get(self, "module_parameters")
|
|
237
|
+
|
|
238
|
+
@_builtins.property
|
|
239
|
+
@pulumi.getter
|
|
240
|
+
def version(self) -> Optional[_builtins.str]:
|
|
241
|
+
return pulumi.get(self, "version")
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
@pulumi.output_type
|
|
245
|
+
class LinkModuleParameters(dict):
|
|
246
|
+
def __init__(__self__):
|
|
247
|
+
pass
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
@pulumi.output_type
|
|
251
|
+
class LinkResponderErrorMaskingForHttpCode(dict):
|
|
252
|
+
@staticmethod
|
|
253
|
+
def __key_warning(key: str):
|
|
254
|
+
suggest = None
|
|
255
|
+
if key == "httpCode":
|
|
256
|
+
suggest = "http_code"
|
|
257
|
+
elif key == "loggingTypes":
|
|
258
|
+
suggest = "logging_types"
|
|
259
|
+
elif key == "responseLoggingPercentage":
|
|
260
|
+
suggest = "response_logging_percentage"
|
|
261
|
+
|
|
262
|
+
if suggest:
|
|
263
|
+
pulumi.log.warn(f"Key '{key}' not found in LinkResponderErrorMaskingForHttpCode. Access the value via the '{suggest}' property getter instead.")
|
|
264
|
+
|
|
265
|
+
def __getitem__(self, key: str) -> Any:
|
|
266
|
+
LinkResponderErrorMaskingForHttpCode.__key_warning(key)
|
|
267
|
+
return super().__getitem__(key)
|
|
268
|
+
|
|
269
|
+
def get(self, key: str, default = None) -> Any:
|
|
270
|
+
LinkResponderErrorMaskingForHttpCode.__key_warning(key)
|
|
271
|
+
return super().get(key, default)
|
|
272
|
+
|
|
273
|
+
def __init__(__self__, *,
|
|
274
|
+
action: 'LinkResponderErrorMaskingForHttpCodeAction',
|
|
275
|
+
http_code: _builtins.str,
|
|
276
|
+
logging_types: Sequence['LinkResponderErrorMaskingLoggingType'],
|
|
277
|
+
response_logging_percentage: Optional[_builtins.float] = None):
|
|
278
|
+
"""
|
|
279
|
+
:param 'LinkResponderErrorMaskingForHttpCodeAction' action: The action for the error..
|
|
280
|
+
:param _builtins.str http_code: The HTTP error code.
|
|
281
|
+
:param Sequence['LinkResponderErrorMaskingLoggingType'] logging_types: The error log type.
|
|
282
|
+
:param _builtins.float response_logging_percentage: The percentage of response logging.
|
|
283
|
+
"""
|
|
284
|
+
pulumi.set(__self__, "action", action)
|
|
285
|
+
pulumi.set(__self__, "http_code", http_code)
|
|
286
|
+
pulumi.set(__self__, "logging_types", logging_types)
|
|
287
|
+
if response_logging_percentage is not None:
|
|
288
|
+
pulumi.set(__self__, "response_logging_percentage", response_logging_percentage)
|
|
289
|
+
|
|
290
|
+
@_builtins.property
|
|
291
|
+
@pulumi.getter
|
|
292
|
+
def action(self) -> 'LinkResponderErrorMaskingForHttpCodeAction':
|
|
293
|
+
"""
|
|
294
|
+
The action for the error..
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "action")
|
|
297
|
+
|
|
298
|
+
@_builtins.property
|
|
299
|
+
@pulumi.getter(name="httpCode")
|
|
300
|
+
def http_code(self) -> _builtins.str:
|
|
301
|
+
"""
|
|
302
|
+
The HTTP error code.
|
|
303
|
+
"""
|
|
304
|
+
return pulumi.get(self, "http_code")
|
|
305
|
+
|
|
306
|
+
@_builtins.property
|
|
307
|
+
@pulumi.getter(name="loggingTypes")
|
|
308
|
+
def logging_types(self) -> Sequence['LinkResponderErrorMaskingLoggingType']:
|
|
309
|
+
"""
|
|
310
|
+
The error log type.
|
|
311
|
+
"""
|
|
312
|
+
return pulumi.get(self, "logging_types")
|
|
313
|
+
|
|
314
|
+
@_builtins.property
|
|
315
|
+
@pulumi.getter(name="responseLoggingPercentage")
|
|
316
|
+
def response_logging_percentage(self) -> Optional[_builtins.float]:
|
|
317
|
+
"""
|
|
318
|
+
The percentage of response logging.
|
|
319
|
+
"""
|
|
320
|
+
return pulumi.get(self, "response_logging_percentage")
|
|
321
|
+
|
|
322
|
+
|
|
23
323
|
@pulumi.output_type
|
|
24
324
|
class ResponderGatewayManagedEndpointConfiguration(dict):
|
|
25
325
|
def __init__(__self__):
|
|
@@ -47,11 +347,17 @@ class ResponderGatewayTrustStoreConfiguration(dict):
|
|
|
47
347
|
|
|
48
348
|
def __init__(__self__, *,
|
|
49
349
|
certificate_authority_certificates: Sequence[_builtins.str]):
|
|
350
|
+
"""
|
|
351
|
+
:param Sequence[_builtins.str] certificate_authority_certificates: The certificate authority certificate.
|
|
352
|
+
"""
|
|
50
353
|
pulumi.set(__self__, "certificate_authority_certificates", certificate_authority_certificates)
|
|
51
354
|
|
|
52
355
|
@_builtins.property
|
|
53
356
|
@pulumi.getter(name="certificateAuthorityCertificates")
|
|
54
357
|
def certificate_authority_certificates(self) -> Sequence[_builtins.str]:
|
|
358
|
+
"""
|
|
359
|
+
The certificate authority certificate.
|
|
360
|
+
"""
|
|
55
361
|
return pulumi.get(self, "certificate_authority_certificates")
|
|
56
362
|
|
|
57
363
|
|
|
@@ -29,6 +29,11 @@ class RequesterGatewayArgs:
|
|
|
29
29
|
tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
|
|
30
30
|
"""
|
|
31
31
|
The set of arguments for constructing a RequesterGateway resource.
|
|
32
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The unique identifiers of the security groups.
|
|
33
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: The unique identifiers of the subnets.
|
|
34
|
+
:param pulumi.Input[_builtins.str] vpc_id: The unique identifier of the Virtual Private Cloud (VPC).
|
|
35
|
+
:param pulumi.Input[_builtins.str] description: An optional description for the requester gateway.
|
|
36
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
32
37
|
"""
|
|
33
38
|
pulumi.set(__self__, "security_group_ids", security_group_ids)
|
|
34
39
|
pulumi.set(__self__, "subnet_ids", subnet_ids)
|
|
@@ -41,6 +46,9 @@ class RequesterGatewayArgs:
|
|
|
41
46
|
@_builtins.property
|
|
42
47
|
@pulumi.getter(name="securityGroupIds")
|
|
43
48
|
def security_group_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
49
|
+
"""
|
|
50
|
+
The unique identifiers of the security groups.
|
|
51
|
+
"""
|
|
44
52
|
return pulumi.get(self, "security_group_ids")
|
|
45
53
|
|
|
46
54
|
@security_group_ids.setter
|
|
@@ -50,6 +58,9 @@ class RequesterGatewayArgs:
|
|
|
50
58
|
@_builtins.property
|
|
51
59
|
@pulumi.getter(name="subnetIds")
|
|
52
60
|
def subnet_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
61
|
+
"""
|
|
62
|
+
The unique identifiers of the subnets.
|
|
63
|
+
"""
|
|
53
64
|
return pulumi.get(self, "subnet_ids")
|
|
54
65
|
|
|
55
66
|
@subnet_ids.setter
|
|
@@ -59,6 +70,9 @@ class RequesterGatewayArgs:
|
|
|
59
70
|
@_builtins.property
|
|
60
71
|
@pulumi.getter(name="vpcId")
|
|
61
72
|
def vpc_id(self) -> pulumi.Input[_builtins.str]:
|
|
73
|
+
"""
|
|
74
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
75
|
+
"""
|
|
62
76
|
return pulumi.get(self, "vpc_id")
|
|
63
77
|
|
|
64
78
|
@vpc_id.setter
|
|
@@ -68,6 +82,9 @@ class RequesterGatewayArgs:
|
|
|
68
82
|
@_builtins.property
|
|
69
83
|
@pulumi.getter
|
|
70
84
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
85
|
+
"""
|
|
86
|
+
An optional description for the requester gateway.
|
|
87
|
+
"""
|
|
71
88
|
return pulumi.get(self, "description")
|
|
72
89
|
|
|
73
90
|
@description.setter
|
|
@@ -77,6 +94,9 @@ class RequesterGatewayArgs:
|
|
|
77
94
|
@_builtins.property
|
|
78
95
|
@pulumi.getter
|
|
79
96
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
97
|
+
"""
|
|
98
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
99
|
+
"""
|
|
80
100
|
return pulumi.get(self, "tags")
|
|
81
101
|
|
|
82
102
|
@tags.setter
|
|
@@ -101,6 +121,11 @@ class RequesterGateway(pulumi.CustomResource):
|
|
|
101
121
|
|
|
102
122
|
:param str resource_name: The name of the resource.
|
|
103
123
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
124
|
+
:param pulumi.Input[_builtins.str] description: An optional description for the requester gateway.
|
|
125
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The unique identifiers of the security groups.
|
|
126
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: The unique identifiers of the subnets.
|
|
127
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
128
|
+
:param pulumi.Input[_builtins.str] vpc_id: The unique identifier of the Virtual Private Cloud (VPC).
|
|
104
129
|
"""
|
|
105
130
|
...
|
|
106
131
|
@overload
|
|
@@ -214,6 +239,9 @@ class RequesterGateway(pulumi.CustomResource):
|
|
|
214
239
|
@_builtins.property
|
|
215
240
|
@pulumi.getter
|
|
216
241
|
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
242
|
+
"""
|
|
243
|
+
An optional description for the requester gateway.
|
|
244
|
+
"""
|
|
217
245
|
return pulumi.get(self, "description")
|
|
218
246
|
|
|
219
247
|
@_builtins.property
|
|
@@ -234,16 +262,25 @@ class RequesterGateway(pulumi.CustomResource):
|
|
|
234
262
|
@_builtins.property
|
|
235
263
|
@pulumi.getter(name="securityGroupIds")
|
|
236
264
|
def security_group_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
265
|
+
"""
|
|
266
|
+
The unique identifiers of the security groups.
|
|
267
|
+
"""
|
|
237
268
|
return pulumi.get(self, "security_group_ids")
|
|
238
269
|
|
|
239
270
|
@_builtins.property
|
|
240
271
|
@pulumi.getter(name="subnetIds")
|
|
241
272
|
def subnet_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
273
|
+
"""
|
|
274
|
+
The unique identifiers of the subnets.
|
|
275
|
+
"""
|
|
242
276
|
return pulumi.get(self, "subnet_ids")
|
|
243
277
|
|
|
244
278
|
@_builtins.property
|
|
245
279
|
@pulumi.getter
|
|
246
280
|
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
281
|
+
"""
|
|
282
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
283
|
+
"""
|
|
247
284
|
return pulumi.get(self, "tags")
|
|
248
285
|
|
|
249
286
|
@_builtins.property
|
|
@@ -259,5 +296,8 @@ class RequesterGateway(pulumi.CustomResource):
|
|
|
259
296
|
@_builtins.property
|
|
260
297
|
@pulumi.getter(name="vpcId")
|
|
261
298
|
def vpc_id(self) -> pulumi.Output[_builtins.str]:
|
|
299
|
+
"""
|
|
300
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
301
|
+
"""
|
|
262
302
|
return pulumi.get(self, "vpc_id")
|
|
263
303
|
|
|
@@ -36,6 +36,16 @@ class ResponderGatewayArgs:
|
|
|
36
36
|
trust_store_configuration: Optional[pulumi.Input['ResponderGatewayTrustStoreConfigurationArgs']] = None):
|
|
37
37
|
"""
|
|
38
38
|
The set of arguments for constructing a ResponderGateway resource.
|
|
39
|
+
:param pulumi.Input[_builtins.int] port: The networking port to use.
|
|
40
|
+
:param pulumi.Input['ResponderGatewayProtocol'] protocol: The networking protocol to use.
|
|
41
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The unique identifiers of the security groups.
|
|
42
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: The unique identifiers of the subnets.
|
|
43
|
+
:param pulumi.Input[_builtins.str] vpc_id: The unique identifier of the Virtual Private Cloud (VPC).
|
|
44
|
+
:param pulumi.Input[_builtins.str] description: An optional description for the responder gateway.
|
|
45
|
+
:param pulumi.Input[_builtins.str] domain_name: The domain name for the responder gateway.
|
|
46
|
+
:param pulumi.Input['ResponderGatewayManagedEndpointConfigurationArgs'] managed_endpoint_configuration: The configuration for the managed endpoint.
|
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
48
|
+
:param pulumi.Input['ResponderGatewayTrustStoreConfigurationArgs'] trust_store_configuration: The configuration of the trust store.
|
|
39
49
|
"""
|
|
40
50
|
pulumi.set(__self__, "port", port)
|
|
41
51
|
pulumi.set(__self__, "protocol", protocol)
|
|
@@ -56,6 +66,9 @@ class ResponderGatewayArgs:
|
|
|
56
66
|
@_builtins.property
|
|
57
67
|
@pulumi.getter
|
|
58
68
|
def port(self) -> pulumi.Input[_builtins.int]:
|
|
69
|
+
"""
|
|
70
|
+
The networking port to use.
|
|
71
|
+
"""
|
|
59
72
|
return pulumi.get(self, "port")
|
|
60
73
|
|
|
61
74
|
@port.setter
|
|
@@ -65,6 +78,9 @@ class ResponderGatewayArgs:
|
|
|
65
78
|
@_builtins.property
|
|
66
79
|
@pulumi.getter
|
|
67
80
|
def protocol(self) -> pulumi.Input['ResponderGatewayProtocol']:
|
|
81
|
+
"""
|
|
82
|
+
The networking protocol to use.
|
|
83
|
+
"""
|
|
68
84
|
return pulumi.get(self, "protocol")
|
|
69
85
|
|
|
70
86
|
@protocol.setter
|
|
@@ -74,6 +90,9 @@ class ResponderGatewayArgs:
|
|
|
74
90
|
@_builtins.property
|
|
75
91
|
@pulumi.getter(name="securityGroupIds")
|
|
76
92
|
def security_group_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
93
|
+
"""
|
|
94
|
+
The unique identifiers of the security groups.
|
|
95
|
+
"""
|
|
77
96
|
return pulumi.get(self, "security_group_ids")
|
|
78
97
|
|
|
79
98
|
@security_group_ids.setter
|
|
@@ -83,6 +102,9 @@ class ResponderGatewayArgs:
|
|
|
83
102
|
@_builtins.property
|
|
84
103
|
@pulumi.getter(name="subnetIds")
|
|
85
104
|
def subnet_ids(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
|
105
|
+
"""
|
|
106
|
+
The unique identifiers of the subnets.
|
|
107
|
+
"""
|
|
86
108
|
return pulumi.get(self, "subnet_ids")
|
|
87
109
|
|
|
88
110
|
@subnet_ids.setter
|
|
@@ -92,6 +114,9 @@ class ResponderGatewayArgs:
|
|
|
92
114
|
@_builtins.property
|
|
93
115
|
@pulumi.getter(name="vpcId")
|
|
94
116
|
def vpc_id(self) -> pulumi.Input[_builtins.str]:
|
|
117
|
+
"""
|
|
118
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
119
|
+
"""
|
|
95
120
|
return pulumi.get(self, "vpc_id")
|
|
96
121
|
|
|
97
122
|
@vpc_id.setter
|
|
@@ -101,6 +126,9 @@ class ResponderGatewayArgs:
|
|
|
101
126
|
@_builtins.property
|
|
102
127
|
@pulumi.getter
|
|
103
128
|
def description(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
129
|
+
"""
|
|
130
|
+
An optional description for the responder gateway.
|
|
131
|
+
"""
|
|
104
132
|
return pulumi.get(self, "description")
|
|
105
133
|
|
|
106
134
|
@description.setter
|
|
@@ -110,6 +138,9 @@ class ResponderGatewayArgs:
|
|
|
110
138
|
@_builtins.property
|
|
111
139
|
@pulumi.getter(name="domainName")
|
|
112
140
|
def domain_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
141
|
+
"""
|
|
142
|
+
The domain name for the responder gateway.
|
|
143
|
+
"""
|
|
113
144
|
return pulumi.get(self, "domain_name")
|
|
114
145
|
|
|
115
146
|
@domain_name.setter
|
|
@@ -119,6 +150,9 @@ class ResponderGatewayArgs:
|
|
|
119
150
|
@_builtins.property
|
|
120
151
|
@pulumi.getter(name="managedEndpointConfiguration")
|
|
121
152
|
def managed_endpoint_configuration(self) -> Optional[pulumi.Input['ResponderGatewayManagedEndpointConfigurationArgs']]:
|
|
153
|
+
"""
|
|
154
|
+
The configuration for the managed endpoint.
|
|
155
|
+
"""
|
|
122
156
|
return pulumi.get(self, "managed_endpoint_configuration")
|
|
123
157
|
|
|
124
158
|
@managed_endpoint_configuration.setter
|
|
@@ -128,6 +162,9 @@ class ResponderGatewayArgs:
|
|
|
128
162
|
@_builtins.property
|
|
129
163
|
@pulumi.getter
|
|
130
164
|
def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
|
|
165
|
+
"""
|
|
166
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
167
|
+
"""
|
|
131
168
|
return pulumi.get(self, "tags")
|
|
132
169
|
|
|
133
170
|
@tags.setter
|
|
@@ -137,6 +174,9 @@ class ResponderGatewayArgs:
|
|
|
137
174
|
@_builtins.property
|
|
138
175
|
@pulumi.getter(name="trustStoreConfiguration")
|
|
139
176
|
def trust_store_configuration(self) -> Optional[pulumi.Input['ResponderGatewayTrustStoreConfigurationArgs']]:
|
|
177
|
+
"""
|
|
178
|
+
The configuration of the trust store.
|
|
179
|
+
"""
|
|
140
180
|
return pulumi.get(self, "trust_store_configuration")
|
|
141
181
|
|
|
142
182
|
@trust_store_configuration.setter
|
|
@@ -166,6 +206,16 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
166
206
|
|
|
167
207
|
:param str resource_name: The name of the resource.
|
|
168
208
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
209
|
+
:param pulumi.Input[_builtins.str] description: An optional description for the responder gateway.
|
|
210
|
+
:param pulumi.Input[_builtins.str] domain_name: The domain name for the responder gateway.
|
|
211
|
+
:param pulumi.Input[Union['ResponderGatewayManagedEndpointConfigurationArgs', 'ResponderGatewayManagedEndpointConfigurationArgsDict']] managed_endpoint_configuration: The configuration for the managed endpoint.
|
|
212
|
+
:param pulumi.Input[_builtins.int] port: The networking port to use.
|
|
213
|
+
:param pulumi.Input['ResponderGatewayProtocol'] protocol: The networking protocol to use.
|
|
214
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] security_group_ids: The unique identifiers of the security groups.
|
|
215
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnet_ids: The unique identifiers of the subnets.
|
|
216
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
217
|
+
:param pulumi.Input[Union['ResponderGatewayTrustStoreConfigurationArgs', 'ResponderGatewayTrustStoreConfigurationArgsDict']] trust_store_configuration: The configuration of the trust store.
|
|
218
|
+
:param pulumi.Input[_builtins.str] vpc_id: The unique identifier of the Virtual Private Cloud (VPC).
|
|
169
219
|
"""
|
|
170
220
|
...
|
|
171
221
|
@overload
|
|
@@ -287,11 +337,17 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
287
337
|
@_builtins.property
|
|
288
338
|
@pulumi.getter
|
|
289
339
|
def description(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
340
|
+
"""
|
|
341
|
+
An optional description for the responder gateway.
|
|
342
|
+
"""
|
|
290
343
|
return pulumi.get(self, "description")
|
|
291
344
|
|
|
292
345
|
@_builtins.property
|
|
293
346
|
@pulumi.getter(name="domainName")
|
|
294
347
|
def domain_name(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
348
|
+
"""
|
|
349
|
+
The domain name for the responder gateway.
|
|
350
|
+
"""
|
|
295
351
|
return pulumi.get(self, "domain_name")
|
|
296
352
|
|
|
297
353
|
@_builtins.property
|
|
@@ -302,16 +358,25 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
302
358
|
@_builtins.property
|
|
303
359
|
@pulumi.getter(name="managedEndpointConfiguration")
|
|
304
360
|
def managed_endpoint_configuration(self) -> pulumi.Output[Optional['outputs.ResponderGatewayManagedEndpointConfiguration']]:
|
|
361
|
+
"""
|
|
362
|
+
The configuration for the managed endpoint.
|
|
363
|
+
"""
|
|
305
364
|
return pulumi.get(self, "managed_endpoint_configuration")
|
|
306
365
|
|
|
307
366
|
@_builtins.property
|
|
308
367
|
@pulumi.getter
|
|
309
368
|
def port(self) -> pulumi.Output[_builtins.int]:
|
|
369
|
+
"""
|
|
370
|
+
The networking port to use.
|
|
371
|
+
"""
|
|
310
372
|
return pulumi.get(self, "port")
|
|
311
373
|
|
|
312
374
|
@_builtins.property
|
|
313
375
|
@pulumi.getter
|
|
314
376
|
def protocol(self) -> pulumi.Output['ResponderGatewayProtocol']:
|
|
377
|
+
"""
|
|
378
|
+
The networking protocol to use.
|
|
379
|
+
"""
|
|
315
380
|
return pulumi.get(self, "protocol")
|
|
316
381
|
|
|
317
382
|
@_builtins.property
|
|
@@ -322,21 +387,33 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
322
387
|
@_builtins.property
|
|
323
388
|
@pulumi.getter(name="securityGroupIds")
|
|
324
389
|
def security_group_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
390
|
+
"""
|
|
391
|
+
The unique identifiers of the security groups.
|
|
392
|
+
"""
|
|
325
393
|
return pulumi.get(self, "security_group_ids")
|
|
326
394
|
|
|
327
395
|
@_builtins.property
|
|
328
396
|
@pulumi.getter(name="subnetIds")
|
|
329
397
|
def subnet_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
|
398
|
+
"""
|
|
399
|
+
The unique identifiers of the subnets.
|
|
400
|
+
"""
|
|
330
401
|
return pulumi.get(self, "subnet_ids")
|
|
331
402
|
|
|
332
403
|
@_builtins.property
|
|
333
404
|
@pulumi.getter
|
|
334
405
|
def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
|
|
406
|
+
"""
|
|
407
|
+
A map of the key-value pairs of the tag or tags to assign to the resource.
|
|
408
|
+
"""
|
|
335
409
|
return pulumi.get(self, "tags")
|
|
336
410
|
|
|
337
411
|
@_builtins.property
|
|
338
412
|
@pulumi.getter(name="trustStoreConfiguration")
|
|
339
413
|
def trust_store_configuration(self) -> pulumi.Output[Optional['outputs.ResponderGatewayTrustStoreConfiguration']]:
|
|
414
|
+
"""
|
|
415
|
+
The configuration of the trust store.
|
|
416
|
+
"""
|
|
340
417
|
return pulumi.get(self, "trust_store_configuration")
|
|
341
418
|
|
|
342
419
|
@_builtins.property
|
|
@@ -347,5 +424,8 @@ class ResponderGateway(pulumi.CustomResource):
|
|
|
347
424
|
@_builtins.property
|
|
348
425
|
@pulumi.getter(name="vpcId")
|
|
349
426
|
def vpc_id(self) -> pulumi.Output[_builtins.str]:
|
|
427
|
+
"""
|
|
428
|
+
The unique identifier of the Virtual Private Cloud (VPC).
|
|
429
|
+
"""
|
|
350
430
|
return pulumi.get(self, "vpc_id")
|
|
351
431
|
|
pulumi_aws_native/s3/_enums.py
CHANGED
|
@@ -132,7 +132,7 @@ class BucketDefaultRetentionMode(_builtins.str, Enum):
|
|
|
132
132
|
@pulumi.type_token("aws-native:s3:BucketDeleteMarkerReplicationStatus")
|
|
133
133
|
class BucketDeleteMarkerReplicationStatus(_builtins.str, Enum):
|
|
134
134
|
"""
|
|
135
|
-
Indicates whether to replicate delete markers.
|
|
135
|
+
Indicates whether to replicate delete markers.
|
|
136
136
|
"""
|
|
137
137
|
DISABLED = "Disabled"
|
|
138
138
|
ENABLED = "Enabled"
|