pulumi-aws-native 1.38.0a1760940079__py3-none-any.whl → 1.38.0a1762272920__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.

Files changed (187) hide show
  1. pulumi_aws_native/__init__.py +33 -1
  2. pulumi_aws_native/_enums.py +4 -0
  3. pulumi_aws_native/amazonmq/_enums.py +4 -12
  4. pulumi_aws_native/amazonmq/_inputs.py +21 -91
  5. pulumi_aws_native/amazonmq/broker.py +56 -67
  6. pulumi_aws_native/amazonmq/get_broker.py +6 -13
  7. pulumi_aws_native/amazonmq/outputs.py +14 -54
  8. pulumi_aws_native/applicationsignals/get_grouping_configuration.py +9 -0
  9. pulumi_aws_native/applicationsignals/grouping_configuration.py +3 -0
  10. pulumi_aws_native/appstream/get_image_builder.py +0 -4
  11. pulumi_aws_native/appstream/image_builder.py +0 -16
  12. pulumi_aws_native/aps/__init__.py +2 -0
  13. pulumi_aws_native/aps/_inputs.py +290 -0
  14. pulumi_aws_native/aps/anomaly_detector.py +318 -0
  15. pulumi_aws_native/aps/get_anomaly_detector.py +149 -0
  16. pulumi_aws_native/aps/outputs.py +229 -0
  17. pulumi_aws_native/arcregionswitch/get_plan.py +0 -3
  18. pulumi_aws_native/arcregionswitch/plan.py +0 -3
  19. pulumi_aws_native/batch/_inputs.py +34 -0
  20. pulumi_aws_native/batch/job_definition.py +29 -0
  21. pulumi_aws_native/batch/outputs.py +37 -0
  22. pulumi_aws_native/bedrock/automated_reasoning_policy.py +51 -0
  23. pulumi_aws_native/bedrock/get_automated_reasoning_policy.py +12 -1
  24. pulumi_aws_native/bedrockagentcore/__init__.py +2 -0
  25. pulumi_aws_native/bedrockagentcore/_enums.py +1 -0
  26. pulumi_aws_native/bedrockagentcore/get_workload_identity.py +134 -0
  27. pulumi_aws_native/bedrockagentcore/workload_identity.py +217 -0
  28. pulumi_aws_native/ce/_enums.py +3 -0
  29. pulumi_aws_native/cleanrooms/configured_table.py +4 -4
  30. pulumi_aws_native/cleanrooms/get_configured_table.py +1 -1
  31. pulumi_aws_native/cloudfront/_inputs.py +14 -1
  32. pulumi_aws_native/cloudfront/get_vpc_origin.py +12 -1
  33. pulumi_aws_native/cloudfront/outputs.py +11 -1
  34. pulumi_aws_native/cloudfront/vpc_origin.py +7 -0
  35. pulumi_aws_native/cognito/__init__.py +2 -0
  36. pulumi_aws_native/cognito/_enums.py +12 -0
  37. pulumi_aws_native/cognito/get_terms.py +117 -0
  38. pulumi_aws_native/cognito/terms.py +236 -0
  39. pulumi_aws_native/connect/_enums.py +68 -0
  40. pulumi_aws_native/connect/_inputs.py +581 -1
  41. pulumi_aws_native/connect/email_address.py +31 -0
  42. pulumi_aws_native/connect/get_email_address.py +16 -1
  43. pulumi_aws_native/connect/outputs.py +473 -3
  44. pulumi_aws_native/connectcampaignsv2/_enums.py +9 -0
  45. pulumi_aws_native/connectcampaignsv2/_inputs.py +127 -0
  46. pulumi_aws_native/connectcampaignsv2/outputs.py +118 -0
  47. pulumi_aws_native/datazone/_inputs.py +81 -0
  48. pulumi_aws_native/datazone/connection.py +83 -26
  49. pulumi_aws_native/datazone/outputs.py +84 -0
  50. pulumi_aws_native/ec2/__init__.py +2 -0
  51. pulumi_aws_native/ec2/_enums.py +19 -0
  52. pulumi_aws_native/ec2/_inputs.py +15 -12
  53. pulumi_aws_native/ec2/capacity_manager_data_export.py +259 -0
  54. pulumi_aws_native/ec2/capacity_reservation.py +6 -6
  55. pulumi_aws_native/ec2/get_capacity_manager_data_export.py +92 -0
  56. pulumi_aws_native/ec2/get_capacity_reservation.py +2 -2
  57. pulumi_aws_native/ec2/get_nat_gateway.py +3 -0
  58. pulumi_aws_native/ec2/get_volume.py +37 -15
  59. pulumi_aws_native/ec2/nat_gateway.py +11 -0
  60. pulumi_aws_native/ec2/outputs.py +10 -8
  61. pulumi_aws_native/ec2/volume.py +115 -74
  62. pulumi_aws_native/ecr/_inputs.py +2 -2
  63. pulumi_aws_native/ecr/get_repository.py +3 -2
  64. pulumi_aws_native/ecr/outputs.py +2 -2
  65. pulumi_aws_native/ecr/repository.py +12 -8
  66. pulumi_aws_native/ecs/_enums.py +24 -0
  67. pulumi_aws_native/ecs/_inputs.py +230 -23
  68. pulumi_aws_native/ecs/outputs.py +195 -15
  69. pulumi_aws_native/ecs/service.py +4 -0
  70. pulumi_aws_native/eks/_enums.py +11 -0
  71. pulumi_aws_native/eks/_inputs.py +199 -1
  72. pulumi_aws_native/eks/get_nodegroup.py +1 -0
  73. pulumi_aws_native/eks/nodegroup.py +1 -0
  74. pulumi_aws_native/eks/outputs.py +169 -1
  75. pulumi_aws_native/elasticloadbalancingv2/_inputs.py +213 -34
  76. pulumi_aws_native/elasticloadbalancingv2/get_listener_rule.py +15 -4
  77. pulumi_aws_native/elasticloadbalancingv2/listener_rule.py +22 -1
  78. pulumi_aws_native/elasticloadbalancingv2/load_balancer.py +4 -4
  79. pulumi_aws_native/elasticloadbalancingv2/outputs.py +187 -24
  80. pulumi_aws_native/events/__init__.py +2 -0
  81. pulumi_aws_native/events/_inputs.py +78 -0
  82. pulumi_aws_native/events/event_bus_policy.py +275 -0
  83. pulumi_aws_native/events/get_event_bus_policy.py +85 -0
  84. pulumi_aws_native/events/outputs.py +48 -0
  85. pulumi_aws_native/gameliftstreams/application.py +4 -4
  86. pulumi_aws_native/glue/__init__.py +2 -0
  87. pulumi_aws_native/glue/_inputs.py +134 -0
  88. pulumi_aws_native/glue/get_integration_resource_property.py +127 -0
  89. pulumi_aws_native/glue/integration_resource_property.py +229 -0
  90. pulumi_aws_native/glue/outputs.py +122 -0
  91. pulumi_aws_native/imagebuilder/_inputs.py +95 -0
  92. pulumi_aws_native/imagebuilder/get_image_pipeline.py +15 -1
  93. pulumi_aws_native/imagebuilder/image.py +58 -0
  94. pulumi_aws_native/imagebuilder/image_pipeline.py +10 -0
  95. pulumi_aws_native/imagebuilder/outputs.py +95 -0
  96. pulumi_aws_native/kendra/_inputs.py +21 -21
  97. pulumi_aws_native/kendra/outputs.py +14 -14
  98. pulumi_aws_native/lambda_/permission.py +4 -4
  99. pulumi_aws_native/mediapackagev2/_enums.py +15 -0
  100. pulumi_aws_native/mediapackagev2/_inputs.py +103 -0
  101. pulumi_aws_native/mediapackagev2/get_origin_endpoint.py +26 -1
  102. pulumi_aws_native/mediapackagev2/origin_endpoint.py +36 -0
  103. pulumi_aws_native/mediapackagev2/outputs.py +88 -0
  104. pulumi_aws_native/neptune/db_instance.py +29 -0
  105. pulumi_aws_native/neptune/get_db_instance.py +15 -1
  106. pulumi_aws_native/networkfirewall/_enums.py +2 -0
  107. pulumi_aws_native/networkfirewall/_inputs.py +20 -0
  108. pulumi_aws_native/networkfirewall/firewall.py +10 -0
  109. pulumi_aws_native/networkfirewall/get_firewall.py +15 -1
  110. pulumi_aws_native/networkfirewall/outputs.py +14 -0
  111. pulumi_aws_native/observabilityadmin/_enums.py +9 -0
  112. pulumi_aws_native/observabilityadmin/_inputs.py +252 -0
  113. pulumi_aws_native/observabilityadmin/get_organization_centralization_rule.py +9 -0
  114. pulumi_aws_native/observabilityadmin/get_organization_telemetry_rule.py +3 -0
  115. pulumi_aws_native/observabilityadmin/get_telemetry_rule.py +3 -0
  116. pulumi_aws_native/observabilityadmin/organization_centralization_rule.py +11 -0
  117. pulumi_aws_native/observabilityadmin/organization_telemetry_rule.py +8 -0
  118. pulumi_aws_native/observabilityadmin/outputs.py +150 -0
  119. pulumi_aws_native/observabilityadmin/telemetry_rule.py +8 -0
  120. pulumi_aws_native/organizations/_enums.py +13 -0
  121. pulumi_aws_native/organizations/account.py +10 -0
  122. pulumi_aws_native/organizations/get_account.py +15 -1
  123. pulumi_aws_native/osis/_inputs.py +24 -0
  124. pulumi_aws_native/osis/get_pipeline.py +26 -1
  125. pulumi_aws_native/osis/outputs.py +13 -0
  126. pulumi_aws_native/osis/pipeline.py +50 -0
  127. pulumi_aws_native/pulumi-plugin.json +1 -1
  128. pulumi_aws_native/qbusiness/_inputs.py +3 -3
  129. pulumi_aws_native/qbusiness/application.py +4 -4
  130. pulumi_aws_native/qbusiness/outputs.py +2 -2
  131. pulumi_aws_native/quicksight/_enums.py +1 -1
  132. pulumi_aws_native/quicksight/_inputs.py +12 -12
  133. pulumi_aws_native/quicksight/outputs.py +8 -8
  134. pulumi_aws_native/rds/db_cluster.py +24 -40
  135. pulumi_aws_native/route53/_inputs.py +21 -3
  136. pulumi_aws_native/route53/outputs.py +14 -2
  137. pulumi_aws_native/rtbfabric/__init__.py +17 -0
  138. pulumi_aws_native/rtbfabric/_enums.py +89 -0
  139. pulumi_aws_native/rtbfabric/_inputs.py +390 -0
  140. pulumi_aws_native/rtbfabric/get_link.py +199 -0
  141. pulumi_aws_native/rtbfabric/get_requester_gateway.py +217 -0
  142. pulumi_aws_native/rtbfabric/get_responder_gateway.py +255 -0
  143. pulumi_aws_native/rtbfabric/link.py +344 -0
  144. pulumi_aws_native/rtbfabric/outputs.py +363 -0
  145. pulumi_aws_native/rtbfabric/requester_gateway.py +303 -0
  146. pulumi_aws_native/rtbfabric/responder_gateway.py +431 -0
  147. pulumi_aws_native/s3/_enums.py +1 -1
  148. pulumi_aws_native/s3/_inputs.py +11 -5
  149. pulumi_aws_native/s3/access_grants_location.py +15 -13
  150. pulumi_aws_native/s3/outputs.py +10 -4
  151. pulumi_aws_native/s3vectors/__init__.py +17 -0
  152. pulumi_aws_native/s3vectors/_enums.py +39 -0
  153. pulumi_aws_native/s3vectors/_inputs.py +138 -0
  154. pulumi_aws_native/s3vectors/get_index.py +99 -0
  155. pulumi_aws_native/s3vectors/get_vector_bucket.py +99 -0
  156. pulumi_aws_native/s3vectors/get_vector_bucket_policy.py +78 -0
  157. pulumi_aws_native/s3vectors/index.py +367 -0
  158. pulumi_aws_native/s3vectors/outputs.py +129 -0
  159. pulumi_aws_native/s3vectors/vector_bucket.py +199 -0
  160. pulumi_aws_native/s3vectors/vector_bucket_policy.py +188 -0
  161. pulumi_aws_native/sagemaker/_enums.py +12 -171
  162. pulumi_aws_native/sagemaker/_inputs.py +81 -5
  163. pulumi_aws_native/sagemaker/cluster.py +21 -0
  164. pulumi_aws_native/sagemaker/get_cluster.py +15 -4
  165. pulumi_aws_native/sagemaker/outputs.py +67 -3
  166. pulumi_aws_native/ssm/_inputs.py +15 -3
  167. pulumi_aws_native/ssm/outputs.py +10 -2
  168. pulumi_aws_native/ssmquicksetup/get_lifecycle_automation.py +6 -0
  169. pulumi_aws_native/ssmquicksetup/lifecycle_automation.py +16 -0
  170. pulumi_aws_native/sso/_enums.py +1 -1
  171. pulumi_aws_native/sso/assignment.py +8 -8
  172. pulumi_aws_native/synthetics/_inputs.py +52 -12
  173. pulumi_aws_native/synthetics/outputs.py +35 -8
  174. pulumi_aws_native/transfer/_enums.py +15 -0
  175. pulumi_aws_native/transfer/_inputs.py +95 -3
  176. pulumi_aws_native/transfer/connector.py +86 -19
  177. pulumi_aws_native/transfer/get_connector.py +43 -1
  178. pulumi_aws_native/transfer/outputs.py +92 -2
  179. pulumi_aws_native/wafv2/_inputs.py +72 -0
  180. pulumi_aws_native/wafv2/get_web_acl.py +15 -1
  181. pulumi_aws_native/wafv2/outputs.py +45 -0
  182. pulumi_aws_native/wafv2/web_acl.py +29 -0
  183. pulumi_aws_native/wisdom/_enums.py +4 -0
  184. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/METADATA +1 -1
  185. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/RECORD +187 -155
  186. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/WHEEL +0 -0
  187. {pulumi_aws_native-1.38.0a1760940079.dist-info → pulumi_aws_native-1.38.0a1762272920.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,134 @@
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 as _root_outputs
17
+
18
+ __all__ = [
19
+ 'GetWorkloadIdentityResult',
20
+ 'AwaitableGetWorkloadIdentityResult',
21
+ 'get_workload_identity',
22
+ 'get_workload_identity_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetWorkloadIdentityResult:
27
+ def __init__(__self__, allowed_resource_oauth2_return_urls=None, created_time=None, last_updated_time=None, tags=None, workload_identity_arn=None):
28
+ if allowed_resource_oauth2_return_urls and not isinstance(allowed_resource_oauth2_return_urls, list):
29
+ raise TypeError("Expected argument 'allowed_resource_oauth2_return_urls' to be a list")
30
+ pulumi.set(__self__, "allowed_resource_oauth2_return_urls", allowed_resource_oauth2_return_urls)
31
+ if created_time and not isinstance(created_time, float):
32
+ raise TypeError("Expected argument 'created_time' to be a float")
33
+ pulumi.set(__self__, "created_time", created_time)
34
+ if last_updated_time and not isinstance(last_updated_time, float):
35
+ raise TypeError("Expected argument 'last_updated_time' to be a float")
36
+ pulumi.set(__self__, "last_updated_time", last_updated_time)
37
+ if tags and not isinstance(tags, list):
38
+ raise TypeError("Expected argument 'tags' to be a list")
39
+ pulumi.set(__self__, "tags", tags)
40
+ if workload_identity_arn and not isinstance(workload_identity_arn, str):
41
+ raise TypeError("Expected argument 'workload_identity_arn' to be a str")
42
+ pulumi.set(__self__, "workload_identity_arn", workload_identity_arn)
43
+
44
+ @_builtins.property
45
+ @pulumi.getter(name="allowedResourceOauth2ReturnUrls")
46
+ def allowed_resource_oauth2_return_urls(self) -> Optional[Sequence[_builtins.str]]:
47
+ """
48
+ The list of allowed OAuth2 return URLs for resources associated with this workload identity.
49
+ """
50
+ return pulumi.get(self, "allowed_resource_oauth2_return_urls")
51
+
52
+ @_builtins.property
53
+ @pulumi.getter(name="createdTime")
54
+ def created_time(self) -> Optional[_builtins.float]:
55
+ """
56
+ The timestamp when the workload identity was created.
57
+ """
58
+ return pulumi.get(self, "created_time")
59
+
60
+ @_builtins.property
61
+ @pulumi.getter(name="lastUpdatedTime")
62
+ def last_updated_time(self) -> Optional[_builtins.float]:
63
+ """
64
+ The timestamp when the workload identity was last updated.
65
+ """
66
+ return pulumi.get(self, "last_updated_time")
67
+
68
+ @_builtins.property
69
+ @pulumi.getter
70
+ def tags(self) -> Optional[Sequence['_root_outputs.Tag']]:
71
+ """
72
+ An array of key-value pairs to apply to this resource.
73
+ """
74
+ return pulumi.get(self, "tags")
75
+
76
+ @_builtins.property
77
+ @pulumi.getter(name="workloadIdentityArn")
78
+ def workload_identity_arn(self) -> Optional[_builtins.str]:
79
+ """
80
+ The Amazon Resource Name (ARN) of the workload identity.
81
+ """
82
+ return pulumi.get(self, "workload_identity_arn")
83
+
84
+
85
+ class AwaitableGetWorkloadIdentityResult(GetWorkloadIdentityResult):
86
+ # pylint: disable=using-constant-test
87
+ def __await__(self):
88
+ if False:
89
+ yield self
90
+ return GetWorkloadIdentityResult(
91
+ allowed_resource_oauth2_return_urls=self.allowed_resource_oauth2_return_urls,
92
+ created_time=self.created_time,
93
+ last_updated_time=self.last_updated_time,
94
+ tags=self.tags,
95
+ workload_identity_arn=self.workload_identity_arn)
96
+
97
+
98
+ def get_workload_identity(name: Optional[_builtins.str] = None,
99
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetWorkloadIdentityResult:
100
+ """
101
+ Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
102
+
103
+
104
+ :param _builtins.str name: The name of the workload identity. The name must be unique within your account.
105
+ """
106
+ __args__ = dict()
107
+ __args__['name'] = name
108
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
109
+ __ret__ = pulumi.runtime.invoke('aws-native:bedrockagentcore:getWorkloadIdentity', __args__, opts=opts, typ=GetWorkloadIdentityResult).value
110
+
111
+ return AwaitableGetWorkloadIdentityResult(
112
+ allowed_resource_oauth2_return_urls=pulumi.get(__ret__, 'allowed_resource_oauth2_return_urls'),
113
+ created_time=pulumi.get(__ret__, 'created_time'),
114
+ last_updated_time=pulumi.get(__ret__, 'last_updated_time'),
115
+ tags=pulumi.get(__ret__, 'tags'),
116
+ workload_identity_arn=pulumi.get(__ret__, 'workload_identity_arn'))
117
+ def get_workload_identity_output(name: Optional[pulumi.Input[_builtins.str]] = None,
118
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetWorkloadIdentityResult]:
119
+ """
120
+ Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
121
+
122
+
123
+ :param _builtins.str name: The name of the workload identity. The name must be unique within your account.
124
+ """
125
+ __args__ = dict()
126
+ __args__['name'] = name
127
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
128
+ __ret__ = pulumi.runtime.invoke_output('aws-native:bedrockagentcore:getWorkloadIdentity', __args__, opts=opts, typ=GetWorkloadIdentityResult)
129
+ return __ret__.apply(lambda __response__: GetWorkloadIdentityResult(
130
+ allowed_resource_oauth2_return_urls=pulumi.get(__response__, 'allowed_resource_oauth2_return_urls'),
131
+ created_time=pulumi.get(__response__, 'created_time'),
132
+ last_updated_time=pulumi.get(__response__, 'last_updated_time'),
133
+ tags=pulumi.get(__response__, 'tags'),
134
+ workload_identity_arn=pulumi.get(__response__, 'workload_identity_arn')))
@@ -0,0 +1,217 @@
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 _inputs as _root_inputs
17
+ from .. import outputs as _root_outputs
18
+
19
+ __all__ = ['WorkloadIdentityArgs', 'WorkloadIdentity']
20
+
21
+ @pulumi.input_type
22
+ class WorkloadIdentityArgs:
23
+ def __init__(__self__, *,
24
+ allowed_resource_oauth2_return_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
25
+ name: Optional[pulumi.Input[_builtins.str]] = None,
26
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
27
+ """
28
+ The set of arguments for constructing a WorkloadIdentity resource.
29
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_resource_oauth2_return_urls: The list of allowed OAuth2 return URLs for resources associated with this workload identity.
30
+ :param pulumi.Input[_builtins.str] name: The name of the workload identity. The name must be unique within your account.
31
+ :param pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]] tags: An array of key-value pairs to apply to this resource.
32
+ """
33
+ if allowed_resource_oauth2_return_urls is not None:
34
+ pulumi.set(__self__, "allowed_resource_oauth2_return_urls", allowed_resource_oauth2_return_urls)
35
+ if name is not None:
36
+ pulumi.set(__self__, "name", name)
37
+ if tags is not None:
38
+ pulumi.set(__self__, "tags", tags)
39
+
40
+ @_builtins.property
41
+ @pulumi.getter(name="allowedResourceOauth2ReturnUrls")
42
+ def allowed_resource_oauth2_return_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
43
+ """
44
+ The list of allowed OAuth2 return URLs for resources associated with this workload identity.
45
+ """
46
+ return pulumi.get(self, "allowed_resource_oauth2_return_urls")
47
+
48
+ @allowed_resource_oauth2_return_urls.setter
49
+ def allowed_resource_oauth2_return_urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
50
+ pulumi.set(self, "allowed_resource_oauth2_return_urls", value)
51
+
52
+ @_builtins.property
53
+ @pulumi.getter
54
+ def name(self) -> Optional[pulumi.Input[_builtins.str]]:
55
+ """
56
+ The name of the workload identity. The name must be unique within your account.
57
+ """
58
+ return pulumi.get(self, "name")
59
+
60
+ @name.setter
61
+ def name(self, value: Optional[pulumi.Input[_builtins.str]]):
62
+ pulumi.set(self, "name", value)
63
+
64
+ @_builtins.property
65
+ @pulumi.getter
66
+ def tags(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]:
67
+ """
68
+ An array of key-value pairs to apply to this resource.
69
+ """
70
+ return pulumi.get(self, "tags")
71
+
72
+ @tags.setter
73
+ def tags(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]]):
74
+ pulumi.set(self, "tags", value)
75
+
76
+
77
+ @pulumi.type_token("aws-native:bedrockagentcore:WorkloadIdentity")
78
+ class WorkloadIdentity(pulumi.CustomResource):
79
+ @overload
80
+ def __init__(__self__,
81
+ resource_name: str,
82
+ opts: Optional[pulumi.ResourceOptions] = None,
83
+ allowed_resource_oauth2_return_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
84
+ name: Optional[pulumi.Input[_builtins.str]] = None,
85
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
86
+ __props__=None):
87
+ """
88
+ Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
89
+
90
+ :param str resource_name: The name of the resource.
91
+ :param pulumi.ResourceOptions opts: Options for the resource.
92
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_resource_oauth2_return_urls: The list of allowed OAuth2 return URLs for resources associated with this workload identity.
93
+ :param pulumi.Input[_builtins.str] name: The name of the workload identity. The name must be unique within your account.
94
+ :param pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]] tags: An array of key-value pairs to apply to this resource.
95
+ """
96
+ ...
97
+ @overload
98
+ def __init__(__self__,
99
+ resource_name: str,
100
+ args: Optional[WorkloadIdentityArgs] = None,
101
+ opts: Optional[pulumi.ResourceOptions] = None):
102
+ """
103
+ Definition of AWS::BedrockAgentCore::WorkloadIdentity Resource Type
104
+
105
+ :param str resource_name: The name of the resource.
106
+ :param WorkloadIdentityArgs args: The arguments to use to populate this resource's properties.
107
+ :param pulumi.ResourceOptions opts: Options for the resource.
108
+ """
109
+ ...
110
+ def __init__(__self__, resource_name: str, *args, **kwargs):
111
+ resource_args, opts = _utilities.get_resource_args_opts(WorkloadIdentityArgs, pulumi.ResourceOptions, *args, **kwargs)
112
+ if resource_args is not None:
113
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
114
+ else:
115
+ __self__._internal_init(resource_name, *args, **kwargs)
116
+
117
+ def _internal_init(__self__,
118
+ resource_name: str,
119
+ opts: Optional[pulumi.ResourceOptions] = None,
120
+ allowed_resource_oauth2_return_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
121
+ name: Optional[pulumi.Input[_builtins.str]] = None,
122
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['_root_inputs.TagArgs', '_root_inputs.TagArgsDict']]]]] = None,
123
+ __props__=None):
124
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
125
+ if not isinstance(opts, pulumi.ResourceOptions):
126
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
127
+ if opts.id is None:
128
+ if __props__ is not None:
129
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
130
+ __props__ = WorkloadIdentityArgs.__new__(WorkloadIdentityArgs)
131
+
132
+ __props__.__dict__["allowed_resource_oauth2_return_urls"] = allowed_resource_oauth2_return_urls
133
+ __props__.__dict__["name"] = name
134
+ __props__.__dict__["tags"] = tags
135
+ __props__.__dict__["created_time"] = None
136
+ __props__.__dict__["last_updated_time"] = None
137
+ __props__.__dict__["workload_identity_arn"] = None
138
+ replace_on_changes = pulumi.ResourceOptions(replace_on_changes=["name"])
139
+ opts = pulumi.ResourceOptions.merge(opts, replace_on_changes)
140
+ super(WorkloadIdentity, __self__).__init__(
141
+ 'aws-native:bedrockagentcore:WorkloadIdentity',
142
+ resource_name,
143
+ __props__,
144
+ opts)
145
+
146
+ @staticmethod
147
+ def get(resource_name: str,
148
+ id: pulumi.Input[str],
149
+ opts: Optional[pulumi.ResourceOptions] = None) -> 'WorkloadIdentity':
150
+ """
151
+ Get an existing WorkloadIdentity resource's state with the given name, id, and optional extra
152
+ properties used to qualify the lookup.
153
+
154
+ :param str resource_name: The unique name of the resulting resource.
155
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
156
+ :param pulumi.ResourceOptions opts: Options for the resource.
157
+ """
158
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
159
+
160
+ __props__ = WorkloadIdentityArgs.__new__(WorkloadIdentityArgs)
161
+
162
+ __props__.__dict__["allowed_resource_oauth2_return_urls"] = None
163
+ __props__.__dict__["created_time"] = None
164
+ __props__.__dict__["last_updated_time"] = None
165
+ __props__.__dict__["name"] = None
166
+ __props__.__dict__["tags"] = None
167
+ __props__.__dict__["workload_identity_arn"] = None
168
+ return WorkloadIdentity(resource_name, opts=opts, __props__=__props__)
169
+
170
+ @_builtins.property
171
+ @pulumi.getter(name="allowedResourceOauth2ReturnUrls")
172
+ def allowed_resource_oauth2_return_urls(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
173
+ """
174
+ The list of allowed OAuth2 return URLs for resources associated with this workload identity.
175
+ """
176
+ return pulumi.get(self, "allowed_resource_oauth2_return_urls")
177
+
178
+ @_builtins.property
179
+ @pulumi.getter(name="createdTime")
180
+ def created_time(self) -> pulumi.Output[_builtins.float]:
181
+ """
182
+ The timestamp when the workload identity was created.
183
+ """
184
+ return pulumi.get(self, "created_time")
185
+
186
+ @_builtins.property
187
+ @pulumi.getter(name="lastUpdatedTime")
188
+ def last_updated_time(self) -> pulumi.Output[_builtins.float]:
189
+ """
190
+ The timestamp when the workload identity was last updated.
191
+ """
192
+ return pulumi.get(self, "last_updated_time")
193
+
194
+ @_builtins.property
195
+ @pulumi.getter
196
+ def name(self) -> pulumi.Output[_builtins.str]:
197
+ """
198
+ The name of the workload identity. The name must be unique within your account.
199
+ """
200
+ return pulumi.get(self, "name")
201
+
202
+ @_builtins.property
203
+ @pulumi.getter
204
+ def tags(self) -> pulumi.Output[Optional[Sequence['_root_outputs.Tag']]]:
205
+ """
206
+ An array of key-value pairs to apply to this resource.
207
+ """
208
+ return pulumi.get(self, "tags")
209
+
210
+ @_builtins.property
211
+ @pulumi.getter(name="workloadIdentityArn")
212
+ def workload_identity_arn(self) -> pulumi.Output[_builtins.str]:
213
+ """
214
+ The Amazon Resource Name (ARN) of the workload identity.
215
+ """
216
+ return pulumi.get(self, "workload_identity_arn")
217
+
@@ -22,6 +22,9 @@ class AnomalyMonitorMonitorDimension(_builtins.str, Enum):
22
22
  The dimensions to evaluate
23
23
  """
24
24
  SERVICE = "SERVICE"
25
+ LINKED_ACCOUNT = "LINKED_ACCOUNT"
26
+ TAG = "TAG"
27
+ COST_CATEGORY = "COST_CATEGORY"
25
28
 
26
29
 
27
30
  @pulumi.type_token("aws-native:ce:AnomalyMonitorMonitorType")
@@ -34,7 +34,7 @@ class ConfiguredTableArgs:
34
34
  tags: Optional[pulumi.Input[Sequence[pulumi.Input['_root_inputs.TagArgs']]]] = None):
35
35
  """
36
36
  The set of arguments for constructing a ConfiguredTable resource.
37
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_columns: The columns within the underlying AWS Glue table that can be utilized within collaborations.
37
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_columns: The columns within the underlying AWS Glue table that can be used within collaborations.
38
38
  :param pulumi.Input['ConfiguredTableAnalysisMethod'] analysis_method: The analysis method for the configured table.
39
39
 
40
40
  `DIRECT_QUERY` allows SQL queries to be run directly on this table.
@@ -67,7 +67,7 @@ class ConfiguredTableArgs:
67
67
  @pulumi.getter(name="allowedColumns")
68
68
  def allowed_columns(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
69
69
  """
70
- The columns within the underlying AWS Glue table that can be utilized within collaborations.
70
+ The columns within the underlying AWS Glue table that can be used within collaborations.
71
71
  """
72
72
  return pulumi.get(self, "allowed_columns")
73
73
 
@@ -186,7 +186,7 @@ class ConfiguredTable(pulumi.CustomResource):
186
186
 
187
187
  :param str resource_name: The name of the resource.
188
188
  :param pulumi.ResourceOptions opts: Options for the resource.
189
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_columns: The columns within the underlying AWS Glue table that can be utilized within collaborations.
189
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_columns: The columns within the underlying AWS Glue table that can be used within collaborations.
190
190
  :param pulumi.Input['ConfiguredTableAnalysisMethod'] analysis_method: The analysis method for the configured table.
191
191
 
192
192
  `DIRECT_QUERY` allows SQL queries to be run directly on this table.
@@ -296,7 +296,7 @@ class ConfiguredTable(pulumi.CustomResource):
296
296
  @pulumi.getter(name="allowedColumns")
297
297
  def allowed_columns(self) -> pulumi.Output[Sequence[_builtins.str]]:
298
298
  """
299
- The columns within the underlying AWS Glue table that can be utilized within collaborations.
299
+ The columns within the underlying AWS Glue table that can be used within collaborations.
300
300
  """
301
301
  return pulumi.get(self, "allowed_columns")
302
302
 
@@ -62,7 +62,7 @@ class GetConfiguredTableResult:
62
62
  @pulumi.getter(name="allowedColumns")
63
63
  def allowed_columns(self) -> Optional[Sequence[_builtins.str]]:
64
64
  """
65
- The columns within the underlying AWS Glue table that can be utilized within collaborations.
65
+ The columns within the underlying AWS Glue table that can be used within collaborations.
66
66
  """
67
67
  return pulumi.get(self, "allowed_columns")
68
68
 
@@ -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]:
@@ -12,6 +12,7 @@ from .get_identity_pool_principal_tag import *
12
12
  from .get_identity_pool_role_attachment import *
13
13
  from .get_log_delivery_configuration import *
14
14
  from .get_managed_login_branding import *
15
+ from .get_terms import *
15
16
  from .get_user_pool import *
16
17
  from .get_user_pool_client import *
17
18
  from .get_user_pool_domain import *
@@ -25,6 +26,7 @@ from .identity_pool_principal_tag import *
25
26
  from .identity_pool_role_attachment import *
26
27
  from .log_delivery_configuration import *
27
28
  from .managed_login_branding import *
29
+ from .terms import *
28
30
  from .user_pool import *
29
31
  from .user_pool_client import *
30
32
  from .user_pool_domain import *
@@ -10,6 +10,8 @@ __all__ = [
10
10
  'ManagedLoginBrandingCategoryType',
11
11
  'ManagedLoginBrandingColorModeType',
12
12
  'ManagedLoginBrandingExtensionType',
13
+ 'TermsEnforcementType',
14
+ 'TermsSourceType',
13
15
  'UserPoolClientRefreshTokenRotationFeature',
14
16
  'UserPoolTier',
15
17
  ]
@@ -50,6 +52,16 @@ class ManagedLoginBrandingExtensionType(_builtins.str, Enum):
50
52
  WEBP = "WEBP"
51
53
 
52
54
 
55
+ @pulumi.type_token("aws-native:cognito:TermsEnforcementType")
56
+ class TermsEnforcementType(_builtins.str, Enum):
57
+ NONE = "NONE"
58
+
59
+
60
+ @pulumi.type_token("aws-native:cognito:TermsSourceType")
61
+ class TermsSourceType(_builtins.str, Enum):
62
+ LINK = "LINK"
63
+
64
+
53
65
  @pulumi.type_token("aws-native:cognito:UserPoolClientRefreshTokenRotationFeature")
54
66
  class UserPoolClientRefreshTokenRotationFeature(_builtins.str, Enum):
55
67
  """