pulumi-aws 7.11.1__py3-none-any.whl → 7.12.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_aws/__init__.py +57 -0
- pulumi_aws/acm/certificate.py +20 -20
- pulumi_aws/acmpca/certificate.py +8 -8
- pulumi_aws/apigateway/account.py +0 -4
- pulumi_aws/appflow/_inputs.py +33 -0
- pulumi_aws/appflow/outputs.py +22 -0
- pulumi_aws/appsync/graph_ql_api.py +84 -0
- pulumi_aws/bedrock/_inputs.py +97 -21
- pulumi_aws/bedrock/agent_agent_alias.py +94 -0
- pulumi_aws/bedrock/agentcore_agent_runtime.py +4 -4
- pulumi_aws/bedrock/agentcore_browser.py +42 -0
- pulumi_aws/bedrock/agentcore_gateway_target.py +217 -7
- pulumi_aws/bedrock/agentcore_memory.py +37 -9
- pulumi_aws/bedrock/agentcore_oauth2_credential_provider.py +38 -0
- pulumi_aws/bedrock/outputs.py +64 -17
- pulumi_aws/cloudfront/_inputs.py +15 -14
- pulumi_aws/cloudfront/distribution.py +28 -0
- pulumi_aws/cloudfront/outputs.py +10 -9
- pulumi_aws/cloudhsmv2/cluster.py +64 -0
- pulumi_aws/cloudwatch/_inputs.py +9 -8
- pulumi_aws/cloudwatch/contributor_managed_insight_rule.py +20 -0
- pulumi_aws/cloudwatch/log_delivery_destination.py +53 -12
- pulumi_aws/cloudwatch/outputs.py +6 -5
- pulumi_aws/codebuild/webhook.py +16 -16
- pulumi_aws/codepipeline/webhook.py +16 -16
- pulumi_aws/connect/_inputs.py +50 -4
- pulumi_aws/connect/outputs.py +95 -4
- pulumi_aws/connect/routing_profile.py +42 -18
- pulumi_aws/datasync/location_fsx_ontap_file_system.py +34 -0
- pulumi_aws/datazone/project.py +24 -0
- pulumi_aws/detective/organization_configuration.py +20 -0
- pulumi_aws/dms/_inputs.py +3 -3
- pulumi_aws/dms/outputs.py +2 -2
- pulumi_aws/ec2/__init__.py +1 -0
- pulumi_aws/ec2/_inputs.py +182 -0
- pulumi_aws/ec2/allowed_images_settings.py +338 -0
- pulumi_aws/ec2/get_coip_pools.py +24 -0
- pulumi_aws/ec2/image_block_public_access.py +48 -1
- pulumi_aws/ec2/outputs.py +167 -0
- pulumi_aws/ec2/security_group.py +6 -6
- pulumi_aws/ec2/serial_console_access.py +50 -3
- pulumi_aws/ec2/vpc_endpoint.py +92 -0
- pulumi_aws/ec2clientvpn/authorization_rule.py +7 -7
- pulumi_aws/ec2clientvpn/route.py +7 -7
- pulumi_aws/ec2transitgateway/instance_connect_endpoint.py +47 -0
- pulumi_aws/ecrpublic/get_images.py +24 -0
- pulumi_aws/ecs/_inputs.py +172 -33
- pulumi_aws/ecs/get_service.py +318 -7
- pulumi_aws/ecs/outputs.py +957 -86
- pulumi_aws/ecs/service.py +76 -0
- pulumi_aws/eks/_inputs.py +195 -5
- pulumi_aws/eks/outputs.py +164 -4
- pulumi_aws/elasticache/_inputs.py +154 -0
- pulumi_aws/elasticache/get_replication_group.py +23 -9
- pulumi_aws/elasticache/outputs.py +204 -0
- pulumi_aws/elasticache/replication_group.py +115 -0
- pulumi_aws/elasticache/reserved_cache_node.py +28 -0
- pulumi_aws/finspace/kx_cluster.py +76 -0
- pulumi_aws/fis/__init__.py +1 -0
- pulumi_aws/fis/target_account_configuration.py +401 -0
- pulumi_aws/glue/job.py +7 -7
- pulumi_aws/guardduty/malware_protection_plan.py +50 -0
- pulumi_aws/guardduty/member_detector_feature.py +42 -0
- pulumi_aws/invoicing/__init__.py +11 -0
- pulumi_aws/invoicing/_inputs.py +128 -0
- pulumi_aws/invoicing/invoice_unit.py +620 -0
- pulumi_aws/invoicing/outputs.py +99 -0
- pulumi_aws/iot/ca_certificate.py +32 -32
- pulumi_aws/iot/get_registration_code.py +8 -8
- pulumi_aws/ivschat/logging_configuration.py +28 -0
- pulumi_aws/kinesis/get_stream.py +15 -1
- pulumi_aws/kinesis/stream.py +47 -0
- pulumi_aws/kms/key.py +7 -7
- pulumi_aws/licensemanager/license_grant.py +36 -0
- pulumi_aws/m2/environment.py +150 -0
- pulumi_aws/networkfirewall/tls_inspection_configuration.py +84 -0
- pulumi_aws/networkflowmonitor/__init__.py +12 -0
- pulumi_aws/networkflowmonitor/_inputs.py +412 -0
- pulumi_aws/networkflowmonitor/monitor.py +568 -0
- pulumi_aws/networkflowmonitor/outputs.py +302 -0
- pulumi_aws/networkflowmonitor/scope.py +443 -0
- pulumi_aws/observabilityadmin/__init__.py +11 -0
- pulumi_aws/observabilityadmin/_inputs.py +506 -0
- pulumi_aws/observabilityadmin/centralization_rule_for_organization.py +637 -0
- pulumi_aws/observabilityadmin/outputs.py +415 -0
- pulumi_aws/opensearch/_inputs.py +92 -133
- pulumi_aws/opensearch/authorize_vpc_endpoint_access.py +4 -4
- pulumi_aws/opensearch/domain.py +60 -0
- pulumi_aws/opensearch/get_domain.py +16 -9
- pulumi_aws/opensearch/outputs.py +131 -2
- pulumi_aws/organizations/get_policies.py +2 -2
- pulumi_aws/organizations/get_policies_for_target.py +2 -2
- pulumi_aws/organizations/get_policy.py +1 -1
- pulumi_aws/organizations/organization.py +7 -7
- pulumi_aws/organizations/policy.py +35 -7
- pulumi_aws/pulumi-plugin.json +1 -1
- pulumi_aws/quicksight/analysis.py +108 -0
- pulumi_aws/quicksight/dashboard.py +110 -0
- pulumi_aws/quicksight/template.py +126 -0
- pulumi_aws/redshift/cluster_snapshot.py +28 -0
- pulumi_aws/redshift/get_cluster.py +52 -0
- pulumi_aws/redshift/snapshot_copy_grant.py +22 -0
- pulumi_aws/route53/profiles_association.py +30 -0
- pulumi_aws/route53/profiles_resource_association.py +34 -0
- pulumi_aws/s3control/multi_region_access_point_policy.py +76 -0
- pulumi_aws/s3tables/table.py +76 -1
- pulumi_aws/s3tables/table_bucket.py +78 -3
- pulumi_aws/sagemaker/_inputs.py +225 -232
- pulumi_aws/sagemaker/endpoint_configuration.py +111 -64
- pulumi_aws/sagemaker/outputs.py +154 -158
- pulumi_aws/ssmincidents/get_response_plan.py +14 -0
- pulumi_aws/ssoadmin/account_assignment.py +4 -4
- pulumi_aws/transfer/profile.py +20 -0
- pulumi_aws/transfer/server.py +7 -0
- pulumi_aws/transfer/ssh_key.py +6 -6
- pulumi_aws/wafv2/rule_group.py +440 -0
- pulumi_aws/workspacesweb/session_logger_association.py +80 -0
- pulumi_aws/workspacesweb/trust_store_association.py +24 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/METADATA +1 -1
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/RECORD +122 -107
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/WHEEL +0 -0
- {pulumi_aws-7.11.1.dist-info → pulumi_aws-7.12.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,302 @@
|
|
|
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
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'MonitorLocalResource',
|
|
20
|
+
'MonitorRemoteResource',
|
|
21
|
+
'MonitorTimeouts',
|
|
22
|
+
'ScopeTarget',
|
|
23
|
+
'ScopeTargetTargetIdentifier',
|
|
24
|
+
'ScopeTargetTargetIdentifierTargetId',
|
|
25
|
+
'ScopeTimeouts',
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
@pulumi.output_type
|
|
29
|
+
class MonitorLocalResource(dict):
|
|
30
|
+
def __init__(__self__, *,
|
|
31
|
+
identifier: _builtins.str,
|
|
32
|
+
type: _builtins.str):
|
|
33
|
+
"""
|
|
34
|
+
:param _builtins.str identifier: The identifier of the resource. For VPC resources, this is the VPC ARN.
|
|
35
|
+
:param _builtins.str type: The type of the resource. Valid values are `AWS::EC2::VPC`, `AWS::EC2::Subnet`, `AWS::EC2::AvailabilityZone`, `AWS::EC2::Region`.
|
|
36
|
+
"""
|
|
37
|
+
pulumi.set(__self__, "identifier", identifier)
|
|
38
|
+
pulumi.set(__self__, "type", type)
|
|
39
|
+
|
|
40
|
+
@_builtins.property
|
|
41
|
+
@pulumi.getter
|
|
42
|
+
def identifier(self) -> _builtins.str:
|
|
43
|
+
"""
|
|
44
|
+
The identifier of the resource. For VPC resources, this is the VPC ARN.
|
|
45
|
+
"""
|
|
46
|
+
return pulumi.get(self, "identifier")
|
|
47
|
+
|
|
48
|
+
@_builtins.property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def type(self) -> _builtins.str:
|
|
51
|
+
"""
|
|
52
|
+
The type of the resource. Valid values are `AWS::EC2::VPC`, `AWS::EC2::Subnet`, `AWS::EC2::AvailabilityZone`, `AWS::EC2::Region`.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "type")
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@pulumi.output_type
|
|
58
|
+
class MonitorRemoteResource(dict):
|
|
59
|
+
def __init__(__self__, *,
|
|
60
|
+
identifier: _builtins.str,
|
|
61
|
+
type: _builtins.str):
|
|
62
|
+
"""
|
|
63
|
+
:param _builtins.str identifier: The identifier of the resource. For VPC resources, this is the VPC ARN.
|
|
64
|
+
:param _builtins.str type: The type of the resource. Valid values are `AWS::EC2::VPC`, `AWS::EC2::Subnet`, `AWS::EC2::AvailabilityZone`, `AWS::EC2::Region`.
|
|
65
|
+
"""
|
|
66
|
+
pulumi.set(__self__, "identifier", identifier)
|
|
67
|
+
pulumi.set(__self__, "type", type)
|
|
68
|
+
|
|
69
|
+
@_builtins.property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def identifier(self) -> _builtins.str:
|
|
72
|
+
"""
|
|
73
|
+
The identifier of the resource. For VPC resources, this is the VPC ARN.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "identifier")
|
|
76
|
+
|
|
77
|
+
@_builtins.property
|
|
78
|
+
@pulumi.getter
|
|
79
|
+
def type(self) -> _builtins.str:
|
|
80
|
+
"""
|
|
81
|
+
The type of the resource. Valid values are `AWS::EC2::VPC`, `AWS::EC2::Subnet`, `AWS::EC2::AvailabilityZone`, `AWS::EC2::Region`.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "type")
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
@pulumi.output_type
|
|
87
|
+
class MonitorTimeouts(dict):
|
|
88
|
+
def __init__(__self__, *,
|
|
89
|
+
create: Optional[_builtins.str] = None,
|
|
90
|
+
delete: Optional[_builtins.str] = None,
|
|
91
|
+
update: Optional[_builtins.str] = None):
|
|
92
|
+
"""
|
|
93
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
94
|
+
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
95
|
+
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
96
|
+
"""
|
|
97
|
+
if create is not None:
|
|
98
|
+
pulumi.set(__self__, "create", create)
|
|
99
|
+
if delete is not None:
|
|
100
|
+
pulumi.set(__self__, "delete", delete)
|
|
101
|
+
if update is not None:
|
|
102
|
+
pulumi.set(__self__, "update", update)
|
|
103
|
+
|
|
104
|
+
@_builtins.property
|
|
105
|
+
@pulumi.getter
|
|
106
|
+
def create(self) -> Optional[_builtins.str]:
|
|
107
|
+
"""
|
|
108
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "create")
|
|
111
|
+
|
|
112
|
+
@_builtins.property
|
|
113
|
+
@pulumi.getter
|
|
114
|
+
def delete(self) -> Optional[_builtins.str]:
|
|
115
|
+
"""
|
|
116
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "delete")
|
|
119
|
+
|
|
120
|
+
@_builtins.property
|
|
121
|
+
@pulumi.getter
|
|
122
|
+
def update(self) -> Optional[_builtins.str]:
|
|
123
|
+
"""
|
|
124
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "update")
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
@pulumi.output_type
|
|
130
|
+
class ScopeTarget(dict):
|
|
131
|
+
@staticmethod
|
|
132
|
+
def __key_warning(key: str):
|
|
133
|
+
suggest = None
|
|
134
|
+
if key == "targetIdentifier":
|
|
135
|
+
suggest = "target_identifier"
|
|
136
|
+
|
|
137
|
+
if suggest:
|
|
138
|
+
pulumi.log.warn(f"Key '{key}' not found in ScopeTarget. Access the value via the '{suggest}' property getter instead.")
|
|
139
|
+
|
|
140
|
+
def __getitem__(self, key: str) -> Any:
|
|
141
|
+
ScopeTarget.__key_warning(key)
|
|
142
|
+
return super().__getitem__(key)
|
|
143
|
+
|
|
144
|
+
def get(self, key: str, default = None) -> Any:
|
|
145
|
+
ScopeTarget.__key_warning(key)
|
|
146
|
+
return super().get(key, default)
|
|
147
|
+
|
|
148
|
+
def __init__(__self__, *,
|
|
149
|
+
region: _builtins.str,
|
|
150
|
+
target_identifier: Optional['outputs.ScopeTargetTargetIdentifier'] = None):
|
|
151
|
+
"""
|
|
152
|
+
:param _builtins.str region: Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
153
|
+
:param 'ScopeTargetTargetIdentifierArgs' target_identifier: A target identifier is a pair of identifying information for a scope.
|
|
154
|
+
"""
|
|
155
|
+
pulumi.set(__self__, "region", region)
|
|
156
|
+
if target_identifier is not None:
|
|
157
|
+
pulumi.set(__self__, "target_identifier", target_identifier)
|
|
158
|
+
|
|
159
|
+
@_builtins.property
|
|
160
|
+
@pulumi.getter
|
|
161
|
+
def region(self) -> _builtins.str:
|
|
162
|
+
"""
|
|
163
|
+
Region where this resource will be [managed](https://docs.aws.amazon.com/general/latest/gr/rande.html#regional-endpoints). Defaults to the Region set in the provider configuration.
|
|
164
|
+
"""
|
|
165
|
+
return pulumi.get(self, "region")
|
|
166
|
+
|
|
167
|
+
@_builtins.property
|
|
168
|
+
@pulumi.getter(name="targetIdentifier")
|
|
169
|
+
def target_identifier(self) -> Optional['outputs.ScopeTargetTargetIdentifier']:
|
|
170
|
+
"""
|
|
171
|
+
A target identifier is a pair of identifying information for a scope.
|
|
172
|
+
"""
|
|
173
|
+
return pulumi.get(self, "target_identifier")
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
@pulumi.output_type
|
|
177
|
+
class ScopeTargetTargetIdentifier(dict):
|
|
178
|
+
@staticmethod
|
|
179
|
+
def __key_warning(key: str):
|
|
180
|
+
suggest = None
|
|
181
|
+
if key == "targetType":
|
|
182
|
+
suggest = "target_type"
|
|
183
|
+
elif key == "targetId":
|
|
184
|
+
suggest = "target_id"
|
|
185
|
+
|
|
186
|
+
if suggest:
|
|
187
|
+
pulumi.log.warn(f"Key '{key}' not found in ScopeTargetTargetIdentifier. Access the value via the '{suggest}' property getter instead.")
|
|
188
|
+
|
|
189
|
+
def __getitem__(self, key: str) -> Any:
|
|
190
|
+
ScopeTargetTargetIdentifier.__key_warning(key)
|
|
191
|
+
return super().__getitem__(key)
|
|
192
|
+
|
|
193
|
+
def get(self, key: str, default = None) -> Any:
|
|
194
|
+
ScopeTargetTargetIdentifier.__key_warning(key)
|
|
195
|
+
return super().get(key, default)
|
|
196
|
+
|
|
197
|
+
def __init__(__self__, *,
|
|
198
|
+
target_type: _builtins.str,
|
|
199
|
+
target_id: Optional['outputs.ScopeTargetTargetIdentifierTargetId'] = None):
|
|
200
|
+
"""
|
|
201
|
+
:param _builtins.str target_type: The type of a target. A target type is currently always `ACCOUNT`.
|
|
202
|
+
:param 'ScopeTargetTargetIdentifierTargetIdArgs' target_id: The identifier for a target, which is currently always an account ID.
|
|
203
|
+
"""
|
|
204
|
+
pulumi.set(__self__, "target_type", target_type)
|
|
205
|
+
if target_id is not None:
|
|
206
|
+
pulumi.set(__self__, "target_id", target_id)
|
|
207
|
+
|
|
208
|
+
@_builtins.property
|
|
209
|
+
@pulumi.getter(name="targetType")
|
|
210
|
+
def target_type(self) -> _builtins.str:
|
|
211
|
+
"""
|
|
212
|
+
The type of a target. A target type is currently always `ACCOUNT`.
|
|
213
|
+
"""
|
|
214
|
+
return pulumi.get(self, "target_type")
|
|
215
|
+
|
|
216
|
+
@_builtins.property
|
|
217
|
+
@pulumi.getter(name="targetId")
|
|
218
|
+
def target_id(self) -> Optional['outputs.ScopeTargetTargetIdentifierTargetId']:
|
|
219
|
+
"""
|
|
220
|
+
The identifier for a target, which is currently always an account ID.
|
|
221
|
+
"""
|
|
222
|
+
return pulumi.get(self, "target_id")
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
@pulumi.output_type
|
|
226
|
+
class ScopeTargetTargetIdentifierTargetId(dict):
|
|
227
|
+
@staticmethod
|
|
228
|
+
def __key_warning(key: str):
|
|
229
|
+
suggest = None
|
|
230
|
+
if key == "accountId":
|
|
231
|
+
suggest = "account_id"
|
|
232
|
+
|
|
233
|
+
if suggest:
|
|
234
|
+
pulumi.log.warn(f"Key '{key}' not found in ScopeTargetTargetIdentifierTargetId. Access the value via the '{suggest}' property getter instead.")
|
|
235
|
+
|
|
236
|
+
def __getitem__(self, key: str) -> Any:
|
|
237
|
+
ScopeTargetTargetIdentifierTargetId.__key_warning(key)
|
|
238
|
+
return super().__getitem__(key)
|
|
239
|
+
|
|
240
|
+
def get(self, key: str, default = None) -> Any:
|
|
241
|
+
ScopeTargetTargetIdentifierTargetId.__key_warning(key)
|
|
242
|
+
return super().get(key, default)
|
|
243
|
+
|
|
244
|
+
def __init__(__self__, *,
|
|
245
|
+
account_id: _builtins.str):
|
|
246
|
+
"""
|
|
247
|
+
:param _builtins.str account_id: AWS account ID.
|
|
248
|
+
"""
|
|
249
|
+
pulumi.set(__self__, "account_id", account_id)
|
|
250
|
+
|
|
251
|
+
@_builtins.property
|
|
252
|
+
@pulumi.getter(name="accountId")
|
|
253
|
+
def account_id(self) -> _builtins.str:
|
|
254
|
+
"""
|
|
255
|
+
AWS account ID.
|
|
256
|
+
"""
|
|
257
|
+
return pulumi.get(self, "account_id")
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
@pulumi.output_type
|
|
261
|
+
class ScopeTimeouts(dict):
|
|
262
|
+
def __init__(__self__, *,
|
|
263
|
+
create: Optional[_builtins.str] = None,
|
|
264
|
+
delete: Optional[_builtins.str] = None,
|
|
265
|
+
update: Optional[_builtins.str] = None):
|
|
266
|
+
"""
|
|
267
|
+
:param _builtins.str create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
268
|
+
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
269
|
+
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
270
|
+
"""
|
|
271
|
+
if create is not None:
|
|
272
|
+
pulumi.set(__self__, "create", create)
|
|
273
|
+
if delete is not None:
|
|
274
|
+
pulumi.set(__self__, "delete", delete)
|
|
275
|
+
if update is not None:
|
|
276
|
+
pulumi.set(__self__, "update", update)
|
|
277
|
+
|
|
278
|
+
@_builtins.property
|
|
279
|
+
@pulumi.getter
|
|
280
|
+
def create(self) -> Optional[_builtins.str]:
|
|
281
|
+
"""
|
|
282
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
283
|
+
"""
|
|
284
|
+
return pulumi.get(self, "create")
|
|
285
|
+
|
|
286
|
+
@_builtins.property
|
|
287
|
+
@pulumi.getter
|
|
288
|
+
def delete(self) -> Optional[_builtins.str]:
|
|
289
|
+
"""
|
|
290
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
291
|
+
"""
|
|
292
|
+
return pulumi.get(self, "delete")
|
|
293
|
+
|
|
294
|
+
@_builtins.property
|
|
295
|
+
@pulumi.getter
|
|
296
|
+
def update(self) -> Optional[_builtins.str]:
|
|
297
|
+
"""
|
|
298
|
+
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
299
|
+
"""
|
|
300
|
+
return pulumi.get(self, "update")
|
|
301
|
+
|
|
302
|
+
|