pulumi-aws-native 1.39.0a1762385303__py3-none-any.whl → 1.39.0a1762580459__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.
Files changed (65) hide show
  1. pulumi_aws_native/__init__.py +2 -0
  2. pulumi_aws_native/backup/get_logically_air_gapped_backup_vault.py +12 -1
  3. pulumi_aws_native/backup/logically_air_gapped_backup_vault.py +21 -0
  4. pulumi_aws_native/cassandra/_enums.py +3 -0
  5. pulumi_aws_native/cleanrooms/_enums.py +98 -0
  6. pulumi_aws_native/cleanrooms/_inputs.py +138 -12
  7. pulumi_aws_native/cleanrooms/collaboration.py +30 -1
  8. pulumi_aws_native/cleanrooms/get_privacy_budget_template.py +1 -0
  9. pulumi_aws_native/cleanrooms/outputs.py +106 -9
  10. pulumi_aws_native/cloudfront/_inputs.py +7 -0
  11. pulumi_aws_native/cloudfront/get_vpc_origin.py +3 -0
  12. pulumi_aws_native/cloudfront/outputs.py +4 -0
  13. pulumi_aws_native/cloudfront/vpc_origin.py +3 -0
  14. pulumi_aws_native/connect/_enums.py +9 -0
  15. pulumi_aws_native/connect/_inputs.py +168 -0
  16. pulumi_aws_native/connect/get_security_profile.py +13 -1
  17. pulumi_aws_native/connect/outputs.py +172 -0
  18. pulumi_aws_native/connect/security_profile.py +22 -0
  19. pulumi_aws_native/datazone/_enums.py +10 -0
  20. pulumi_aws_native/datazone/_inputs.py +99 -4
  21. pulumi_aws_native/datazone/connection.py +37 -8
  22. pulumi_aws_native/datazone/outputs.py +101 -6
  23. pulumi_aws_native/dynamodb/_inputs.py +6 -5
  24. pulumi_aws_native/dynamodb/outputs.py +4 -3
  25. pulumi_aws_native/ecr/_inputs.py +2 -2
  26. pulumi_aws_native/ecr/get_repository_creation_template.py +1 -1
  27. pulumi_aws_native/ecr/outputs.py +2 -2
  28. pulumi_aws_native/ecr/repository_creation_template.py +4 -4
  29. pulumi_aws_native/ecs/_inputs.py +6 -6
  30. pulumi_aws_native/ecs/outputs.py +4 -4
  31. pulumi_aws_native/ecs/task_definition.py +8 -8
  32. pulumi_aws_native/elasticloadbalancingv2/_inputs.py +23 -3
  33. pulumi_aws_native/elasticloadbalancingv2/outputs.py +16 -2
  34. pulumi_aws_native/gamelift/_enums.py +1 -0
  35. pulumi_aws_native/kinesis/get_stream.py +15 -1
  36. pulumi_aws_native/kinesis/stream.py +29 -0
  37. pulumi_aws_native/kms/_enums.py +1 -0
  38. pulumi_aws_native/lambda_/permission.py +4 -4
  39. pulumi_aws_native/location/_inputs.py +86 -0
  40. pulumi_aws_native/location/outputs.py +88 -0
  41. pulumi_aws_native/opensearchserverless/collection.py +11 -1
  42. pulumi_aws_native/opensearchserverless/get_collection.py +11 -12
  43. pulumi_aws_native/pulumi-plugin.json +1 -1
  44. pulumi_aws_native/quicksight/_enums.py +62 -0
  45. pulumi_aws_native/quicksight/_inputs.py +2571 -260
  46. pulumi_aws_native/quicksight/data_set.py +42 -24
  47. pulumi_aws_native/quicksight/get_data_set.py +23 -10
  48. pulumi_aws_native/quicksight/outputs.py +2247 -94
  49. pulumi_aws_native/servicecatalog/__init__.py +2 -0
  50. pulumi_aws_native/servicecatalog/_enums.py +28 -0
  51. pulumi_aws_native/servicecatalog/_inputs.py +364 -0
  52. pulumi_aws_native/servicecatalog/cloud_formation_product.py +519 -0
  53. pulumi_aws_native/servicecatalog/get_cloud_formation_product.py +276 -0
  54. pulumi_aws_native/servicecatalog/outputs.py +311 -0
  55. pulumi_aws_native/ses/__init__.py +2 -0
  56. pulumi_aws_native/ses/_inputs.py +54 -0
  57. pulumi_aws_native/ses/get_multi_region_endpoint.py +78 -0
  58. pulumi_aws_native/ses/multi_region_endpoint.py +190 -0
  59. pulumi_aws_native/ses/outputs.py +49 -0
  60. pulumi_aws_native/wafv2/_inputs.py +7 -0
  61. pulumi_aws_native/wafv2/outputs.py +4 -0
  62. {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/METADATA +1 -1
  63. {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/RECORD +65 -61
  64. {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/WHEEL +0 -0
  65. {pulumi_aws_native-1.39.0a1762385303.dist-info → pulumi_aws_native-1.39.0a1762580459.dist-info}/top_level.txt +0 -0
@@ -7,7 +7,9 @@ from .. import _utilities
7
7
  import typing
8
8
  # Export this package's modules as members:
9
9
  from ._enums import *
10
+ from .cloud_formation_product import *
10
11
  from .cloud_formation_provisioned_product import *
12
+ from .get_cloud_formation_product import *
11
13
  from .get_cloud_formation_provisioned_product import *
12
14
  from .get_launch_notification_constraint import *
13
15
  from .get_launch_template_constraint import *
@@ -7,6 +7,8 @@ import pulumi
7
7
  from enum import Enum
8
8
 
9
9
  __all__ = [
10
+ 'CloudFormationProductProductType',
11
+ 'CloudFormationProductProvisioningArtifactPropertiesType',
10
12
  'CloudFormationProvisionedProductAcceptLanguage',
11
13
  'CloudFormationProvisionedProductProvisioningPreferencesStackSetOperationType',
12
14
  'ServiceActionAcceptLanguage',
@@ -14,6 +16,32 @@ __all__ = [
14
16
  ]
15
17
 
16
18
 
19
+ @pulumi.type_token("aws-native:servicecatalog:CloudFormationProductProductType")
20
+ class CloudFormationProductProductType(_builtins.str, Enum):
21
+ """
22
+ The type of product.
23
+ """
24
+ CLOUD_FORMATION_TEMPLATE = "CLOUD_FORMATION_TEMPLATE"
25
+ MARKETPLACE_AMI = "MARKETPLACE_AMI"
26
+ MARKETPLACE_CAR = "MARKETPLACE_CAR"
27
+ TERRAFORM_OPEN_SOURCE = "TERRAFORM_OPEN_SOURCE"
28
+ TERRAFORM_CLOUD = "TERRAFORM_CLOUD"
29
+ EXTERNAL = "EXTERNAL"
30
+
31
+
32
+ @pulumi.type_token("aws-native:servicecatalog:CloudFormationProductProvisioningArtifactPropertiesType")
33
+ class CloudFormationProductProvisioningArtifactPropertiesType(_builtins.str, Enum):
34
+ """
35
+ The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
36
+ """
37
+ CLOUD_FORMATION_TEMPLATE = "CLOUD_FORMATION_TEMPLATE"
38
+ MARKETPLACE_AMI = "MARKETPLACE_AMI"
39
+ MARKETPLACE_CAR = "MARKETPLACE_CAR"
40
+ TERRAFORM_OPEN_SOURCE = "TERRAFORM_OPEN_SOURCE"
41
+ TERRAFORM_CLOUD = "TERRAFORM_CLOUD"
42
+ EXTERNAL = "EXTERNAL"
43
+
44
+
17
45
  @pulumi.type_token("aws-native:servicecatalog:CloudFormationProvisionedProductAcceptLanguage")
18
46
  class CloudFormationProvisionedProductAcceptLanguage(_builtins.str, Enum):
19
47
  """
@@ -16,6 +16,16 @@ from .. import _utilities
16
16
  from ._enums import *
17
17
 
18
18
  __all__ = [
19
+ 'CloudFormationProductCodeStarParametersArgs',
20
+ 'CloudFormationProductCodeStarParametersArgsDict',
21
+ 'CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgs',
22
+ 'CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgsDict',
23
+ 'CloudFormationProductProvisioningArtifactPropertiesArgs',
24
+ 'CloudFormationProductProvisioningArtifactPropertiesArgsDict',
25
+ 'CloudFormationProductSourceConnectionConnectionParametersPropertiesArgs',
26
+ 'CloudFormationProductSourceConnectionConnectionParametersPropertiesArgsDict',
27
+ 'CloudFormationProductSourceConnectionArgs',
28
+ 'CloudFormationProductSourceConnectionArgsDict',
19
29
  'CloudFormationProvisionedProductProvisioningParameterArgs',
20
30
  'CloudFormationProvisionedProductProvisioningParameterArgsDict',
21
31
  'CloudFormationProvisionedProductProvisioningPreferencesArgs',
@@ -26,6 +36,360 @@ __all__ = [
26
36
 
27
37
  MYPY = False
28
38
 
39
+ if not MYPY:
40
+ class CloudFormationProductCodeStarParametersArgsDict(TypedDict):
41
+ artifact_path: pulumi.Input[_builtins.str]
42
+ """
43
+ The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
44
+ """
45
+ branch: pulumi.Input[_builtins.str]
46
+ """
47
+ The specific branch where the artifact resides.
48
+ """
49
+ connection_arn: pulumi.Input[_builtins.str]
50
+ """
51
+ The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
52
+ """
53
+ repository: pulumi.Input[_builtins.str]
54
+ """
55
+ The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
56
+ """
57
+ elif False:
58
+ CloudFormationProductCodeStarParametersArgsDict: TypeAlias = Mapping[str, Any]
59
+
60
+ @pulumi.input_type
61
+ class CloudFormationProductCodeStarParametersArgs:
62
+ def __init__(__self__, *,
63
+ artifact_path: pulumi.Input[_builtins.str],
64
+ branch: pulumi.Input[_builtins.str],
65
+ connection_arn: pulumi.Input[_builtins.str],
66
+ repository: pulumi.Input[_builtins.str]):
67
+ """
68
+ :param pulumi.Input[_builtins.str] artifact_path: The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
69
+ :param pulumi.Input[_builtins.str] branch: The specific branch where the artifact resides.
70
+ :param pulumi.Input[_builtins.str] connection_arn: The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
71
+ :param pulumi.Input[_builtins.str] repository: The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
72
+ """
73
+ pulumi.set(__self__, "artifact_path", artifact_path)
74
+ pulumi.set(__self__, "branch", branch)
75
+ pulumi.set(__self__, "connection_arn", connection_arn)
76
+ pulumi.set(__self__, "repository", repository)
77
+
78
+ @_builtins.property
79
+ @pulumi.getter(name="artifactPath")
80
+ def artifact_path(self) -> pulumi.Input[_builtins.str]:
81
+ """
82
+ The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
83
+ """
84
+ return pulumi.get(self, "artifact_path")
85
+
86
+ @artifact_path.setter
87
+ def artifact_path(self, value: pulumi.Input[_builtins.str]):
88
+ pulumi.set(self, "artifact_path", value)
89
+
90
+ @_builtins.property
91
+ @pulumi.getter
92
+ def branch(self) -> pulumi.Input[_builtins.str]:
93
+ """
94
+ The specific branch where the artifact resides.
95
+ """
96
+ return pulumi.get(self, "branch")
97
+
98
+ @branch.setter
99
+ def branch(self, value: pulumi.Input[_builtins.str]):
100
+ pulumi.set(self, "branch", value)
101
+
102
+ @_builtins.property
103
+ @pulumi.getter(name="connectionArn")
104
+ def connection_arn(self) -> pulumi.Input[_builtins.str]:
105
+ """
106
+ The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
107
+ """
108
+ return pulumi.get(self, "connection_arn")
109
+
110
+ @connection_arn.setter
111
+ def connection_arn(self, value: pulumi.Input[_builtins.str]):
112
+ pulumi.set(self, "connection_arn", value)
113
+
114
+ @_builtins.property
115
+ @pulumi.getter
116
+ def repository(self) -> pulumi.Input[_builtins.str]:
117
+ """
118
+ The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
119
+ """
120
+ return pulumi.get(self, "repository")
121
+
122
+ @repository.setter
123
+ def repository(self, value: pulumi.Input[_builtins.str]):
124
+ pulumi.set(self, "repository", value)
125
+
126
+
127
+ if not MYPY:
128
+ class CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgsDict(TypedDict):
129
+ """
130
+ Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
131
+
132
+ "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
133
+
134
+ ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
135
+ """
136
+ import_from_physical_id: NotRequired[pulumi.Input[_builtins.str]]
137
+ """
138
+ The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
139
+ """
140
+ load_template_from_url: NotRequired[pulumi.Input[_builtins.str]]
141
+ """
142
+ The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
143
+ """
144
+ elif False:
145
+ CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgsDict: TypeAlias = Mapping[str, Any]
146
+
147
+ @pulumi.input_type
148
+ class CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgs:
149
+ def __init__(__self__, *,
150
+ import_from_physical_id: Optional[pulumi.Input[_builtins.str]] = None,
151
+ load_template_from_url: Optional[pulumi.Input[_builtins.str]] = None):
152
+ """
153
+ Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
154
+
155
+ "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
156
+
157
+ ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
158
+ :param pulumi.Input[_builtins.str] import_from_physical_id: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
159
+ :param pulumi.Input[_builtins.str] load_template_from_url: The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
160
+ """
161
+ if import_from_physical_id is not None:
162
+ pulumi.set(__self__, "import_from_physical_id", import_from_physical_id)
163
+ if load_template_from_url is not None:
164
+ pulumi.set(__self__, "load_template_from_url", load_template_from_url)
165
+
166
+ @_builtins.property
167
+ @pulumi.getter(name="importFromPhysicalId")
168
+ def import_from_physical_id(self) -> Optional[pulumi.Input[_builtins.str]]:
169
+ """
170
+ The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
171
+ """
172
+ return pulumi.get(self, "import_from_physical_id")
173
+
174
+ @import_from_physical_id.setter
175
+ def import_from_physical_id(self, value: Optional[pulumi.Input[_builtins.str]]):
176
+ pulumi.set(self, "import_from_physical_id", value)
177
+
178
+ @_builtins.property
179
+ @pulumi.getter(name="loadTemplateFromUrl")
180
+ def load_template_from_url(self) -> Optional[pulumi.Input[_builtins.str]]:
181
+ """
182
+ The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
183
+ """
184
+ return pulumi.get(self, "load_template_from_url")
185
+
186
+ @load_template_from_url.setter
187
+ def load_template_from_url(self, value: Optional[pulumi.Input[_builtins.str]]):
188
+ pulumi.set(self, "load_template_from_url", value)
189
+
190
+
191
+ if not MYPY:
192
+ class CloudFormationProductProvisioningArtifactPropertiesArgsDict(TypedDict):
193
+ info: pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgsDict']
194
+ """
195
+ Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
196
+
197
+ "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
198
+
199
+ ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
200
+ """
201
+ description: NotRequired[pulumi.Input[_builtins.str]]
202
+ """
203
+ The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
204
+ """
205
+ disable_template_validation: NotRequired[pulumi.Input[_builtins.bool]]
206
+ """
207
+ If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
208
+ """
209
+ name: NotRequired[pulumi.Input[_builtins.str]]
210
+ """
211
+ The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
212
+ """
213
+ type: NotRequired[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesType']]
214
+ """
215
+ The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
216
+ """
217
+ elif False:
218
+ CloudFormationProductProvisioningArtifactPropertiesArgsDict: TypeAlias = Mapping[str, Any]
219
+
220
+ @pulumi.input_type
221
+ class CloudFormationProductProvisioningArtifactPropertiesArgs:
222
+ def __init__(__self__, *,
223
+ info: pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgs'],
224
+ description: Optional[pulumi.Input[_builtins.str]] = None,
225
+ disable_template_validation: Optional[pulumi.Input[_builtins.bool]] = None,
226
+ name: Optional[pulumi.Input[_builtins.str]] = None,
227
+ type: Optional[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesType']] = None):
228
+ """
229
+ :param pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgs'] info: Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
230
+
231
+ "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
232
+
233
+ ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
234
+ :param pulumi.Input[_builtins.str] description: The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
235
+ :param pulumi.Input[_builtins.bool] disable_template_validation: If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
236
+ :param pulumi.Input[_builtins.str] name: The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
237
+ :param pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesType'] type: The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
238
+ """
239
+ pulumi.set(__self__, "info", info)
240
+ if description is not None:
241
+ pulumi.set(__self__, "description", description)
242
+ if disable_template_validation is not None:
243
+ pulumi.set(__self__, "disable_template_validation", disable_template_validation)
244
+ if name is not None:
245
+ pulumi.set(__self__, "name", name)
246
+ if type is not None:
247
+ pulumi.set(__self__, "type", type)
248
+
249
+ @_builtins.property
250
+ @pulumi.getter
251
+ def info(self) -> pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgs']:
252
+ """
253
+ Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
254
+
255
+ "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
256
+
257
+ ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
258
+ """
259
+ return pulumi.get(self, "info")
260
+
261
+ @info.setter
262
+ def info(self, value: pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesInfoPropertiesArgs']):
263
+ pulumi.set(self, "info", value)
264
+
265
+ @_builtins.property
266
+ @pulumi.getter
267
+ def description(self) -> Optional[pulumi.Input[_builtins.str]]:
268
+ """
269
+ The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
270
+ """
271
+ return pulumi.get(self, "description")
272
+
273
+ @description.setter
274
+ def description(self, value: Optional[pulumi.Input[_builtins.str]]):
275
+ pulumi.set(self, "description", value)
276
+
277
+ @_builtins.property
278
+ @pulumi.getter(name="disableTemplateValidation")
279
+ def disable_template_validation(self) -> Optional[pulumi.Input[_builtins.bool]]:
280
+ """
281
+ If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
282
+ """
283
+ return pulumi.get(self, "disable_template_validation")
284
+
285
+ @disable_template_validation.setter
286
+ def disable_template_validation(self, value: Optional[pulumi.Input[_builtins.bool]]):
287
+ pulumi.set(self, "disable_template_validation", value)
288
+
289
+ @_builtins.property
290
+ @pulumi.getter
291
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
292
+ """
293
+ The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
294
+ """
295
+ return pulumi.get(self, "name")
296
+
297
+ @name.setter
298
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
299
+ pulumi.set(self, "name", value)
300
+
301
+ @_builtins.property
302
+ @pulumi.getter
303
+ def type(self) -> Optional[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesType']]:
304
+ """
305
+ The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
306
+ """
307
+ return pulumi.get(self, "type")
308
+
309
+ @type.setter
310
+ def type(self, value: Optional[pulumi.Input['CloudFormationProductProvisioningArtifactPropertiesType']]):
311
+ pulumi.set(self, "type", value)
312
+
313
+
314
+ if not MYPY:
315
+ class CloudFormationProductSourceConnectionConnectionParametersPropertiesArgsDict(TypedDict):
316
+ """
317
+ The connection details based on the connection Type.
318
+ """
319
+ code_star: NotRequired[pulumi.Input['CloudFormationProductCodeStarParametersArgsDict']]
320
+ elif False:
321
+ CloudFormationProductSourceConnectionConnectionParametersPropertiesArgsDict: TypeAlias = Mapping[str, Any]
322
+
323
+ @pulumi.input_type
324
+ class CloudFormationProductSourceConnectionConnectionParametersPropertiesArgs:
325
+ def __init__(__self__, *,
326
+ code_star: Optional[pulumi.Input['CloudFormationProductCodeStarParametersArgs']] = None):
327
+ """
328
+ The connection details based on the connection Type.
329
+ """
330
+ if code_star is not None:
331
+ pulumi.set(__self__, "code_star", code_star)
332
+
333
+ @_builtins.property
334
+ @pulumi.getter(name="codeStar")
335
+ def code_star(self) -> Optional[pulumi.Input['CloudFormationProductCodeStarParametersArgs']]:
336
+ return pulumi.get(self, "code_star")
337
+
338
+ @code_star.setter
339
+ def code_star(self, value: Optional[pulumi.Input['CloudFormationProductCodeStarParametersArgs']]):
340
+ pulumi.set(self, "code_star", value)
341
+
342
+
343
+ if not MYPY:
344
+ class CloudFormationProductSourceConnectionArgsDict(TypedDict):
345
+ connection_parameters: pulumi.Input['CloudFormationProductSourceConnectionConnectionParametersPropertiesArgsDict']
346
+ """
347
+ The connection details based on the connection Type.
348
+ """
349
+ type: pulumi.Input[_builtins.str]
350
+ """
351
+ The only supported SourceConnection type is Codestar.
352
+ """
353
+ elif False:
354
+ CloudFormationProductSourceConnectionArgsDict: TypeAlias = Mapping[str, Any]
355
+
356
+ @pulumi.input_type
357
+ class CloudFormationProductSourceConnectionArgs:
358
+ def __init__(__self__, *,
359
+ connection_parameters: pulumi.Input['CloudFormationProductSourceConnectionConnectionParametersPropertiesArgs'],
360
+ type: pulumi.Input[_builtins.str]):
361
+ """
362
+ :param pulumi.Input['CloudFormationProductSourceConnectionConnectionParametersPropertiesArgs'] connection_parameters: The connection details based on the connection Type.
363
+ :param pulumi.Input[_builtins.str] type: The only supported SourceConnection type is Codestar.
364
+ """
365
+ pulumi.set(__self__, "connection_parameters", connection_parameters)
366
+ pulumi.set(__self__, "type", type)
367
+
368
+ @_builtins.property
369
+ @pulumi.getter(name="connectionParameters")
370
+ def connection_parameters(self) -> pulumi.Input['CloudFormationProductSourceConnectionConnectionParametersPropertiesArgs']:
371
+ """
372
+ The connection details based on the connection Type.
373
+ """
374
+ return pulumi.get(self, "connection_parameters")
375
+
376
+ @connection_parameters.setter
377
+ def connection_parameters(self, value: pulumi.Input['CloudFormationProductSourceConnectionConnectionParametersPropertiesArgs']):
378
+ pulumi.set(self, "connection_parameters", value)
379
+
380
+ @_builtins.property
381
+ @pulumi.getter
382
+ def type(self) -> pulumi.Input[_builtins.str]:
383
+ """
384
+ The only supported SourceConnection type is Codestar.
385
+ """
386
+ return pulumi.get(self, "type")
387
+
388
+ @type.setter
389
+ def type(self, value: pulumi.Input[_builtins.str]):
390
+ pulumi.set(self, "type", value)
391
+
392
+
29
393
  if not MYPY:
30
394
  class CloudFormationProvisionedProductProvisioningParameterArgsDict(TypedDict):
31
395
  key: pulumi.Input[_builtins.str]